.hams-skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: #fff;
  border-radius: 8px;
}

.hams-skip-link:focus {
  left: 12px;
}

.hams-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(221, 230, 240, 0.72);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.hams-header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 78px;
}

.hams-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--hams-heading);
}

.hams-brand-logo {
  display: block;
  width: 132px;
  height: auto;
}

.hams-brand-logo--dark {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.hams-brand-logo--light,
.hams-brand-logo--dark {
  transition: opacity 0.25s ease;
}

.hams-brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--hams-primary), var(--hams-green));
  color: #fff;
  font-family: var(--hams-font-heading);
  font-weight: 900;
}

.hams-brand-text {
  display: grid;
  line-height: 1.1;
}

.hams-brand-text strong {
  color: var(--hams-heading);
  font-family: var(--hams-font-heading);
  font-size: 18px;
}

.hams-brand-text small {
  color: var(--hams-muted);
  font-size: 14px;
}

.hams-primary-nav {
  margin-left: auto;
}

.hams-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hams-menu a {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--hams-heading);
  font-weight: 700;
}

.hams-menu a:hover {
  background: var(--hams-primary-soft);
  color: var(--hams-primary-dark);
}

.hams-nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--hams-border);
  border-radius: 12px;
  background: #fff;
}

.hams-nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--hams-heading);
}

.hams-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
}

.hams-mobile-menu.is-open {
  pointer-events: auto;
}

.hams-mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 22% 12%,
      rgba(35, 168, 242, 0.2),
      transparent 34%
    ),
    linear-gradient(135deg, rgba(4, 14, 27, 0.9), rgba(8, 31, 58, 0.94));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hams-mobile-menu__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: 100%;
  height: 100%;
  padding: clamp(20px, 6vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(239, 246, 255, 0.94)
    ),
    #fff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.hams-mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hams-mobile-menu__brand img {
  display: block;
  width: 150px;
  height: auto;
}

.hams-mobile-menu__close {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(7, 27, 51, 0.14);
  cursor: pointer;
}

.hams-mobile-menu__close span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #071b33;
}

.hams-mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.hams-mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.hams-mobile-menu__nav {
  display: grid;
  align-content: center;
}

.hams-mobile-menu__nav ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hams-mobile-menu__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(221, 230, 240, 0.88);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: #071b33;
  font-size: clamp(22px, 7vw, 34px);
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 12px 30px rgba(7, 27, 51, 0.06);
}

.hams-mobile-menu__cta {
  width: 100%;
  min-height: 58px;
}

body.hams-mobile-menu-open {
  overflow: hidden;
}

.hams-hero-center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hams-vehicle-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: 46px;
}

.hams-vehicle-hero-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--hams-shadow-md);
}

.hams-card-badges,
.hams-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hams-price {
  color: var(--hams-primary-dark);
  font-family: var(--hams-font-heading);
  font-size: 20px;
  font-weight: 900;
}

.hams-price-large {
  font-size: 28px;
}

.hams-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.hams-spec-row span,
.hams-spec-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--hams-soft-bg);
  color: var(--hams-body);
  font-size: 14px;
  font-weight: 700;
}

.hams-quick-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hams-spec-card {
  padding: 18px;
}

.hams-spec-card span {
  display: block;
  color: var(--hams-muted);
  font-size: 14px;
  font-weight: 700;
}

.hams-spec-card strong {
  color: var(--hams-heading);
  font-family: var(--hams-font-heading);
  font-size: 20px;
}

.hams-check-list {
  margin: 0;
  padding-left: 18px;
}

.hams-spec-table {
  border: 1px solid var(--hams-border);
  border-radius: var(--hams-radius-lg);
  overflow: hidden;
}

.hams-spec-table div {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--hams-border);
}

.hams-spec-table div:last-child {
  border-bottom: 0;
}

.hams-cta-panel {
  padding: clamp(28px, 5vw, 54px);
}

.hams-home-hero {
  padding: clamp(78px, 9vw, 126px) 0 92px;
}

.hams-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(36px, 6vw, 74px);
}

.hams-home-hero__content .hams-section-text {
  font-size: 20px;
}

.hams-hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.hams-hero-stats div {
  padding: 16px;
  border: 1px solid rgba(221, 230, 240, 0.85);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--hams-shadow-sm);
}

.hams-hero-stats strong {
  display: block;
  color: var(--hams-primary-dark);
  font-family: var(--hams-font-heading);
  font-size: 28px;
  line-height: 1;
}

.hams-hero-stats span {
  display: block;
  margin-top: 7px;
  color: var(--hams-muted);
  font-size: 14px;
  font-weight: 700;
}

.hams-home-hero__visual {
  position: relative;
  min-height: 520px;
}

.hams-vehicle-showcase {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
  border: 1px solid rgba(221, 230, 240, 0.85);
  border-radius: 34px;
  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(67, 190, 249, 0.28),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.92),
      rgba(234, 243, 255, 0.84)
    );
  box-shadow: var(--hams-shadow-md);
  overflow: hidden;
}

.hams-vehicle-shape {
  position: relative;
  width: min(88%, 440px);
  height: 220px;
  transform: translateY(20px);
}

.hams-vehicle-body {
  position: absolute;
  inset: 68px 0 38px;
  border-radius: 34px 42px 28px 28px;
  background: linear-gradient(
    135deg,
    var(--hams-primary),
    var(--hams-primary-dark)
  );
  box-shadow: 0 28px 55px rgba(6, 59, 142, 0.28);
}

.hams-vehicle-window {
  position: absolute;
  left: 58px;
  right: 88px;
  top: 34px;
  height: 78px;
  border-radius: 28px 32px 12px 12px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(67, 190, 249, 0.35)
  );
  z-index: 2;
}

.hams-vehicle-wheel {
  position: absolute;
  bottom: 16px;
  width: 58px;
  height: 58px;
  border: 12px solid var(--hams-navy);
  border-radius: 50%;
  background: #fff;
  z-index: 3;
}

.hams-vehicle-wheel--left {
  left: 72px;
}

.hams-vehicle-wheel--right {
  right: 72px;
}

.hams-floating-chip {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--hams-primary-dark);
  font-weight: 800;
  box-shadow: var(--hams-shadow-sm);
}

.hams-floating-chip--one {
  top: 54px;
  left: 44px;
}

.hams-floating-chip--two {
  right: 34px;
  top: 148px;
}

.hams-floating-chip--three {
  left: 78px;
  bottom: 62px;
  color: var(--hams-green-dark);
}

.hams-section-heading {
  margin-bottom: 34px;
}

.hams-section-heading--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.hams-brand-card,
.hams-category-card {
  position: relative;
  display: block;
  min-height: 260px;
  padding: 26px;
  color: var(--hams-body);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hams-brand-card:hover,
.hams-category-card:hover,
.hams-vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hams-shadow-md);
}

.hams-brand-card__mark,
.hams-icon-circle {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--hams-primary), var(--hams-green));
  color: #fff;
  font-family: var(--hams-font-heading);
  font-weight: 900;
}

.hams-brand-card .hams-badge {
  position: absolute;
  top: 24px;
  right: 24px;
}

.hams-brand-card h3,
.hams-benefit-card h3,
.hams-category-card h3,
.hams-service-preview-card h3 {
  font-size: 24px;
}

.hams-badge-soft {
  background: var(--hams-green-soft);
  color: var(--hams-green-dark);
}

.hams-vehicle-card .hams-spec-row span {
  max-width: 100%;
}

.hams-benefit-card,
.hams-service-preview-card,
.hams-testimonial-card,
.hams-milestone-preview {
  padding: 24px;
}

.hams-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
}

.hams-about-visual {
  position: relative;
  min-height: 390px;
  padding: 28px;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 32px;
  box-shadow: var(--hams-shadow-md);
  overflow: hidden;
}

.hams-about-visual__stat {
  position: relative;
  z-index: 2;
  width: min(100%, 260px);
  margin-bottom: 18px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--hams-shadow-sm);
}

.hams-about-visual__stat strong {
  display: block;
  color: var(--hams-primary-dark);
  font-family: var(--hams-font-heading);
  font-size: 42px;
  line-height: 1;
}

.hams-about-visual__line {
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 44px solid rgba(34, 181, 115, 0.18);
  border-radius: 50%;
}

.hams-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hams-category-card {
  min-height: 310px;
}

.hams-category-card__visual {
  display: block;
  width: 100%;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(11, 94, 215, 0.16), rgba(34, 181, 115, 0.18)),
    var(--hams-soft-bg);
}

.hams-card-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--hams-primary);
  font-weight: 800;
}

.hams-service-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.hams-service-preview-card {
  min-height: 250px;
}

.hams-charger-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(221, 230, 240, 0.88);
  border-radius: 32px;
  box-shadow: var(--hams-shadow-md);
}

.hams-charger-map-card {
  padding: 28px;
  border-radius: 28px;
  background: var(--hams-navy);
  color: #fff;
}

.hams-charger-map-card strong {
  display: block;
  font-family: var(--hams-font-heading);
  font-size: 72px;
  line-height: 0.95;
}

.hams-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.hams-benefit-card {
  padding: 28px;
  border-radius: 28px;
  background: #fff;
}

.hams-icon-circle {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--hams-primary-soft);
}

.hams-icon-circle img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.hams-benefit-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.2;
}

.hams-benefit-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .hams-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hams-why-grid {
    grid-template-columns: 1fr;
  }

  .hams-benefit-card {
    padding: 24px;
  }
}

.hams-location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hams-location-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 14px;
  font-weight: 700;
}

.hams-timeline-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hams-milestone-preview span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--hams-primary);
  font-family: var(--hams-font-heading);
  font-size: 24px;
  font-weight: 900;
}

.hams-testimonial-card p {
  color: var(--hams-heading);
  font-size: 18px;
}

.hams-testimonial-card span {
  display: block;
  margin-top: 4px;
  color: var(--hams-muted);
  font-size: 14px;
}

.hams-empty-state {
  padding: 28px;
  color: var(--hams-muted);
  font-weight: 700;
}

.hams-final-cta-card {
  padding: clamp(32px, 6vw, 66px);
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 34px;
  box-shadow: var(--hams-shadow-md);
}

@media (max-width: 980px) {
  .hams-nav-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .hams-primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 82px;
    display: none;
    padding: 12px;
    border: 1px solid var(--hams-border);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--hams-shadow-md);
  }

  .hams-primary-nav.is-open {
    display: block;
  }

  .hams-menu {
    display: grid;
  }

  .hams-header-cta {
    display: none;
  }

  .hams-vehicle-hero {
    grid-template-columns: 1fr;
  }

  .hams-home-hero__grid,
  .hams-split,
  .hams-charger-panel {
    grid-template-columns: 1fr;
  }

  .hams-quick-specs {
    grid-template-columns: 1fr;
  }

  .hams-spec-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hams-hero-stats,
  .hams-grid-4,
  .hams-service-strip,
  .hams-timeline-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hams-section-heading--split {
    display: grid;
  }
}

@media (max-width: 640px) {
  .hams-home-hero {
    padding-top: 56px;
  }

  .hams-home-hero__visual,
  .hams-vehicle-showcase {
    min-height: 360px;
  }

  .hams-vehicle-shape {
    width: 94%;
    transform: scale(0.78);
  }

  .hams-floating-chip {
    position: static;
    margin: 6px;
  }

  .hams-hero-stats,
  .hams-grid-4,
  .hams-service-strip,
  .hams-timeline-preview {
    grid-template-columns: 1fr;
  }

  .hams-charger-panel,
  .hams-final-cta-card,
  .hams-about-visual {
    border-radius: 24px;
  }
}

/* Reference-led HAMs page system */
.hams-theme {
  background: #fff;
  color: #1e2228;
}

.hams-site-header {
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
}

.hams-header-inner {
  min-height: 76px;
}

.hams-brand-mark {
  width: 0;
  height: 0;
  overflow: hidden;
}

.hams-brand-text strong {
  font-size: 17px;
}

.hams-brand-text strong::after {
  content: " Motors";
}

.hams-brand-text small {
  display: none;
}

.hams-menu {
  gap: 26px;
}

.hams-menu a {
  padding: 8px 0;
  background: transparent;
  color: #1e2228;
  font-size: 14px;
}

.hams-header-cta,
.hams-ref-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.18);
}

.hams-header-cta,
.hams-ref-btn--dark {
  background: var(--hams-primary);
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 94, 215, 0.24);
}

.hams-header-cta:hover,
.hams-ref-btn--dark:hover {
  background: var(--hams-primary-dark);
  color: #fff;
}

.hams-ref-section {
  padding: 94px 0;
}

.hams-ref-soft {
  background: #f6f6f6;
}

.hams-ref-center {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hams-ref-heading {
  margin-bottom: 34px;
}

.hams-ref-kicker {
  margin: 0 0 10px;
  color: #7a7d82;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.hams-ref-section h2,
.hams-ref-contact-hero h1,
.hams-ref-page-hero h1,
.hams-ref-hero h1 {
  color: #202124;
  font-family: var(--hams-font-heading);
  font-weight: 900;
  letter-spacing: 0;
}

.hams-ref-section h2 {
  font-size: clamp(34px, 5vw, 54px);
}

.hams-ref-section p,
.hams-ref-contact-hero p,
.hams-ref-page-hero p,
.hams-ref-hero p {
  color: #5f656d;
  font-size: 17px;
  line-height: 1.75;
}

.hams-ref-hero {
  position: relative;
  min-height: 780px;
  padding-top: 92px;
  overflow: hidden;
  background: #bfefff;
}

.hams-ref-hero__media {
  position: absolute;
  inset: 0;
}

.hams-ref-hero__asset,
.hams-ref-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hams-ref-hero__fallback {
  display: grid;
  place-items: end center;
  background:
    linear-gradient(
      180deg,
      rgba(33, 177, 244, 0.92) 0%,
      rgba(222, 247, 255, 0.4) 48%,
      rgba(255, 255, 255, 0.96) 100%
    ),
    linear-gradient(135deg, var(--hams-primary), var(--hams-cyan));
}

.hams-ref-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hams-ref-hero h1 {
  max-width: 620px;
  margin-bottom: 10px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  text-shadow: 0 10px 36px rgba(6, 59, 142, 0.24);
}

.hams-ref-hero p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
}

.hams-ref-hero .hams-ref-kicker {
  color: rgba(255, 255, 255, 0.86);
}

.hams-ref-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.hams-ref-stats span {
  display: grid;
  min-width: 120px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hams-ref-stats strong {
  font-family: var(--hams-font-heading);
  font-size: 24px;
}

.hams-ref-ev {
  position: relative;
  width: min(80vw, 940px);
  height: 330px;
  margin-bottom: 70px;
}

.hams-ref-ev__body {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 54px;
  height: 150px;
  border-radius: 70px 120px 48px 48px;
  background: linear-gradient(135deg, #fff, #dff5ff 42%, var(--hams-primary));
  box-shadow: 0 45px 80px rgba(6, 59, 142, 0.28);
}

.hams-ref-ev__glass {
  position: absolute;
  left: 26%;
  right: 25%;
  bottom: 155px;
  height: 92px;
  border-radius: 80px 90px 18px 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94),
    rgba(67, 190, 249, 0.52)
  );
}

.hams-ref-ev__wheel {
  position: absolute;
  bottom: 24px;
  width: 86px;
  height: 86px;
  border: 18px solid #1f1f1f;
  border-radius: 50%;
  background: #fff;
}

.hams-ref-ev__wheel--left {
  left: 24%;
}

.hams-ref-ev__wheel--right {
  right: 24%;
}

.hams-ref-brand-row {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 7vw, 92px);
  margin-top: 38px;
  color: #a8adb4;
  font-family: var(--hams-font-heading);
  font-weight: 900;
}

.hams-ref-vehicle-grid,
.hams-ref-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.hams-ref-vehicle-grid--archive {
  gap: 32px;
}

.hams-ref-vehicle-card {
  position: relative;
  min-height: 520px;
  border: 8px solid #fff;
  border-radius: 24px;
  background: #111;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.hams-ref-vehicle-card__media {
  position: absolute;
  inset: 0;
  display: block;
}

.hams-ref-vehicle-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hams-ref-vehicle-card__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 35%,
    rgba(0, 0, 0, 0.86) 100%
  );
}

.hams-ref-vehicle-card__content {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
}

.hams-ref-vehicle-card h3 {
  margin: 8px 0 4px;
  font-size: 20px;
}

.hams-ref-vehicle-card h3 a,
.hams-ref-card-link {
  color: #fff;
}

.hams-ref-card-link.hams-btn-light {
  color: var(--hams-heading);
}

.hams-ref-card-link.hams-btn-light:hover {
  color: var(--hams-heading);
}

.hams-ref-price {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.hams-ref-card-badges,
.hams-ref-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hams-ref-card-badges span,
.hams-ref-specs span {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.hams-ref-card-link {
  display: inline-flex;
  margin-top: 14px;
  font-size: 16px;
  font-weight: 900;
}

.hams-ref-card-vehicle-visual {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #dff5ff, #f7fbff 45%, #d9f8e9);
}

.hams-ref-card-vehicle-visual__body {
  position: absolute;
  left: 13%;
  right: 13%;
  top: 42%;
  height: 90px;
  border-radius: 46px 70px 28px 28px;
  background: linear-gradient(135deg, var(--hams-primary), var(--hams-green));
}

.hams-ref-card-vehicle-visual__wheel {
  position: absolute;
  top: calc(42% + 62px);
  width: 46px;
  height: 46px;
  border: 10px solid #111;
  border-radius: 50%;
  background: #fff;
}

.hams-ref-card-vehicle-visual__wheel--left {
  left: 25%;
}

.hams-ref-card-vehicle-visual__wheel--right {
  right: 25%;
}

.hams-ref-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.hams-ref-feature-card,
.hams-ref-mini-card,
.hams-ref-quote-card {
  padding: 24px;
  border: 1px solid #ebedf0;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.06);
}

.hams-ref-feature-card span {
  display: block;
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(11, 94, 215, 0.12),
    rgba(34, 181, 115, 0.15)
  );
}

.hams-ref-service-split,
.hams-ref-emi,
.hams-ref-message__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: start;
}

.hams-ref-service-cards {
  display: grid;
  gap: 16px;
}

.hams-ref-opex {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.hams-ref-opex div {
  padding: 22px 18px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.hams-ref-opex strong,
.hams-ref-opex span {
  display: block;
}

.hams-ref-opex span {
  margin-top: 8px;
  color: #7a7d82;
  font-size: 14px;
}

.hams-ref-emi-card,
.hams-ref-form-card {
  padding: 26px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.hams-ref-emi-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hams-ref-emi-card label,
.hams-ref-contact-form label,
.hams-ref-form-card label {
  display: grid;
  gap: 8px;
  color: #5f656d;
  font-size: 14px;
  font-weight: 800;
}

.hams-ref-emi-card input,
.hams-ref-contact-form input,
.hams-ref-contact-form textarea,
.hams-ref-form-card input,
.hams-ref-form-card textarea {
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #f3f3f4;
  padding: 15px 18px;
}

.hams-ref-emi-result {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-radius: 18px;
  background: #1f1f1f;
  color: #fff;
  font-weight: 800;
}

.hams-ref-emi-result strong {
  font-family: var(--hams-font-heading);
  font-size: 28px;
}

.hams-ref-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.hams-ref-quote-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--hams-green-dark);
  font-weight: 900;
}

.hams-ref-empty {
  padding: 28px;
  border-radius: 18px;
  background: #f6f6f6;
  text-align: center;
  color: #777;
}

.hams-ref-page-hero,
.hams-ref-contact-hero {
  padding: 110px 0 52px;
}

.hams-ref-page-hero h1,
.hams-ref-contact-hero h1 {
  max-width: 860px;
  font-size: clamp(54px, 8vw, 94px);
}

.hams-filter-bar {
  margin-top: 34px;
}

.hams-filter-bar .hams-badge {
  border: 0;
  background: #f4f4f4;
  color: #1f1f1f;
}

.hams-ref-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px 120px;
  max-width: 900px;
  margin-top: 70px;
}

.hams-ref-contact-grid div {
  display: grid;
  gap: 10px;
}

.hams-ref-contact-grid strong {
  color: #1f1f1f;
}

.hams-ref-contact-grid span {
  color: #5f656d;
}

.hams-ref-map {
  position: relative;
  height: 520px;
  margin-top: 70px;
  border: 8px solid #fff;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(11, 94, 215, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(11, 94, 215, 0.08) 1px, transparent 1px), #eef5fb;
  background-size: 70px 70px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.hams-ref-map::before,
.hams-ref-map::after {
  content: "";
  position: absolute;
  inset: 44% -10%;
  height: 28px;
  background: rgba(6, 59, 142, 0.18);
  transform: rotate(-18deg);
}

.hams-ref-map::after {
  inset: 36% -10%;
  transform: rotate(12deg);
}

.hams-ref-map__pin {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-radius: 50% 50% 50% 0;
  background: #e5484d;
  transform: rotate(-45deg);
}

.hams-ref-map__label {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 3;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.hams-ref-contact-form,
.hams-ref-form-card form {
  display: grid;
  gap: 18px;
}

.hams-ref-contact-form .hams-ref-btn {
  width: 100%;
}

.hams-ref-contact-form input[type="submit"],
.hams-ref-form-card input[type="submit"],
.wpcf7-form input[type="submit"],
.wpcf7-submit {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 36px;
  background: var(--hams-primary);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 18px 40px rgba(11, 94, 215, 0.24);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background-color 0.3s ease;
  cursor: pointer;
}

.hams-ref-contact-form input[type="submit"]:hover,
.hams-ref-form-card input[type="submit"]:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: var(--hams-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
}

.hams-ref-help {
  padding: 94px 0 82px;
  background: #f4f4f4;
  text-align: center;
}

.hams-ref-help__inner {
  max-width: 1020px;
  margin: 0 auto;
}

.hams-ref-help h2 {
  max-width: 920px;
  margin: 0 auto 24px;
  color: #1f1f1f;
  font-size: clamp(46px, 5.2vw, 66px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0;
}

.hams-ref-help p {
  max-width: 690px;
  margin: 0 auto;
  color: #46505b;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.85;
  letter-spacing: 0;
  padding-bottom: 16px;
}

.hams-ref-person {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin: 36px 0 28px;
  text-align: left;
}

.hams-ref-person span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #fff;
  background-image: url("../images/hams-logo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 86%;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.18);
  font-size: 0;
  font-weight: 900;
}

.hams-ref-person strong {
  display: block;
  color: #111;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
}

.hams-ref-person small {
  display: block;
  margin-top: 5px;
  color: #4c5560;
  font-size: 21px;
  line-height: 1.2;
}

/* ==================================================
   FOOTER
================================================== */
.hams-ref-footer {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 6vw, 90px) 0 0;
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(35, 168, 242, 0.16),
      transparent 28%
    ),
    linear-gradient(180deg, #071018 0%, #05070a 60%, #040506 100%);
  color: rgba(255, 255, 255, 0.78);
  overflow: hidden;
}

.hams-ref-footer > .hams-container {
  position: relative;
  z-index: 2;
}

.hams-ref-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) minmax(140px, 0.7fr) minmax(
      170px,
      0.82fr
    ) minmax(270px, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(44px, 5vw, 68px);
}

.hams-ref-footer__logo {
  display: inline-flex;
  width: 150px;
  margin-bottom: 26px;
  padding: 8px;
  background: #fff;
}

.hams-ref-footer__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.hams-ref-footer__brand p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.7;
}

.hams-ref-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
}

.hams-ref-footer__social a {
  display: inline-flex;
  width: auto;
  height: auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.hams-ref-footer__social a:hover {
  transform: translateY(-3px);
  opacity: 0.86;
}

.hams-ref-footer__social a img,
.hams-ref-footer__social a svg {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hams-ref-footer h2 {
  position: relative;
  margin: 0 0 28px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.hams-ref-footer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 48px;
  height: 2px;
  border-radius: 999px;
  background: #23a8f2;
}

.hams-ref-footer ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hams-ref-footer a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.22s ease;
}

.hams-ref-footer a:hover {
  color: #43bef9;
}

.hams-ref-footer__nav a,
.hams-ref-footer__contact p {
  font-size: 15px;
  line-height: 1.65;
}

.hams-ref-footer__nav a {
  display: inline-flex;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}

.hams-ref-footer__nav a:hover {
  transform: translateX(4px);
}

.hams-ref-footer__contact {
  display: grid;
  gap: 16px;
}

.hams-ref-footer__contact-item {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  align-items: flex-start;
}

.hams-ref-footer__contact-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(35, 168, 242, 0.14);
}

.hams-ref-footer__contact-icon img,
.hams-ref-footer__contact-icon svg {
  display: block;
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.hams-ref-footer__contact strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}

.hams-ref-footer__contact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

/* Watermark stays above copyright */
.hams-ref-footer__watermark-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(150px, 18vw, 260px);
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.14);
}

.hams-ref-footer__watermark {
  width: 100%;
  color: rgba(86, 88, 89, 0.55);
  font-family: var(--hams-font-heading);
  font-size: clamp(96px, 16vw, 200px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  transform: translateY(0);
  pointer-events: none;
}

/* Copyright is always last */
.hams-ref-footer__bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 17px 0 20px;
  background: rgba(0, 0, 0, 0.18);
}

.hams-ref-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 1024px) {
  .hams-ref-footer {
    padding-top: 72px;
  }

  .hams-ref-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    padding-bottom: 64px;
  }

  .hams-ref-footer__contact {
    max-width: 460px;
  }

  .hams-ref-footer__watermark-wrap {
    min-height: 120px;
  }

  .hams-ref-footer__watermark {
    box-sizing: border-box;
    padding-inline: 24px;
    font-size: clamp(64px, 11vw, 96px);
    letter-spacing: -0.035em;
  }
}

/* Footer mobile overflow fix */
@media (max-width: 768px) {
  .hams-ref-footer {
    width: 100%;
    overflow: hidden;
    padding-top: 56px;
  }

  .hams-ref-footer .hams-container {
    width: min(100% - 32px, var(--hams-container));
    margin-inline: auto;
  }

  .hams-ref-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 42px;
    width: 100%;
    padding-bottom: 48px;
  }

  .hams-ref-footer__brand,
  .hams-ref-footer__nav,
  .hams-ref-footer__contact {
    width: 100%;
    min-width: 0;
  }

  .hams-ref-footer__brand p,
  .hams-ref-footer__nav a,
  .hams-ref-footer__contact p,
  .hams-ref-footer__contact strong {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hams-ref-footer__contact-item {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
  }

  .hams-ref-footer__contact-icon {
    width: 38px;
    height: 38px;
  }

  .hams-ref-footer__nav a,
  .hams-ref-footer__contact p {
    font-size: 16px;
    line-height: 1.65;
  }

  .hams-ref-footer__contact strong {
    font-size: 17px;
  }

  .hams-ref-footer__watermark-wrap {
    width: 100%;
    min-height: 90px;
    overflow: hidden;
  }

  .hams-ref-footer__watermark {
    box-sizing: border-box;
    padding-inline: 12px;
    font-size: clamp(38px, 13vw, 84px);
    letter-spacing: -0.035em;
    line-height: 1;
    white-space: nowrap;
    transform: none;
  }

  .hams-ref-footer__bottom {
    width: 100%;
    padding: 18px 16px;
  }

  .hams-ref-footer__bottom p {
    font-size: 13px;
  }
}

@media (max-width: 980px) {
  .hams-ref-hero {
    min-height: 720px;
  }

  .hams-ref-vehicle-grid,
  .hams-ref-feature-grid,
  .hams-ref-testimonial-grid,
  .hams-ref-blog-grid,
  .hams-ref-service-split,
  .hams-ref-emi,
  .hams-ref-message__grid,
  .hams-ref-opex {
    grid-template-columns: 1fr;
  }

  .hams-ref-contact-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hams-ref-map {
    height: 360px;
  }
}

@media (max-width: 640px) {
  .hams-ref-section {
    padding: 64px 0;
  }

  .hams-ref-hero h1,
  .hams-ref-page-hero h1,
  .hams-ref-contact-hero h1 {
    font-size: 46px;
  }

  .hams-ref-hero {
    min-height: 660px;
  }

  .hams-ref-ev {
    transform: scale(0.72);
  }

  .hams-ref-stats,
  .hams-ref-emi-card {
    grid-template-columns: 1fr;
  }
}

/* Autohaus-inspired landing page */
body {
  font-family: var(--hams-font-body);
  letter-spacing: 0;
}

.hams-reveal,
.hams-stagger > *,
.hams-parallax {
  backface-visibility: hidden;
}

.hams-gsap-ready .hams-reveal,
.hams-gsap-ready .hams-stagger > * {
  will-change: opacity, transform;
}

.hams-parallax {
  --hams-parallax-y: 0px;
  will-change: transform;
}

.hams-landing-hero__media.hams-parallax {
  transform: translate3d(0, var(--hams-parallax-y), 0);
}

.hams-landing-vehicle-card img.hams-parallax,
.hams-landing-feature-card img.hams-parallax {
  height: calc(100% + 36px);
  margin-top: -18px;
  transform: translate3d(0, var(--hams-parallax-y), 0) scale(1.025);
}

.hams-landing-vehicle-card:hover img.hams-parallax {
  transform: translate3d(0, var(--hams-parallax-y), 0) scale(1.065);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hams-reveal,
  .hams-stagger > *,
  .hams-parallax {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    will-change: auto !important;
  }
}

.hams-brand-text strong::after {
  content: none;
}

.hams-brand-text strong sup,
.hams-landing-heading sup,
.hams-story-band h2 sup {
  font-size: 14px;
  line-height: 0;
}

.hams-site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  border-bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.46) 70%,
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hams-header-inner {
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
  min-height: 104px;
}

.hams-brand {
  justify-self: start;
}

.hams-primary-nav {
  position: relative;
  margin: 0;
  justify-self: center;
}

.hams-primary-nav::before {
  content: "";
  position: absolute;
  inset: -22px -48px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.05);
}

.hams-header-cta {
  justify-self: end;
}

.hams-brand-text strong {
  color: #151515;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
}

.hams-menu {
  gap: clamp(22px, 2.7vw, 42px);
}

.hams-menu a {
  color: #151515;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.hams-menu a:hover {
  background: transparent;
  color: #000;
}

.hams-header-cta,
.hams-landing-btn {
  min-height: 56px;
  padding: 0 36px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.hams-header-cta {
  background: var(--hams-primary);
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 94, 215, 0.24);
}

.hams-header-cta:hover {
  background: var(--hams-primary-dark);
  color: #fff;
}

.home .hams-site-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.88),
    rgba(255, 255, 255, 0.46) 70%,
    rgba(255, 255, 255, 0)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home .hams-brand-text strong,
.home .hams-menu a {
  color: #151515;
}

.home .hams-site-main {
  padding-top: 0;
}

/* Landing page hero section start */
.hams-landing-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background-image: url(../images/_IXL6572-optimized.webp);
  background-size: cover;
  background-position: center;
}

.hams-landing-hero__media,
.hams-landing-hero__asset,
.hams-landing-hero__carousel,
.hams-landing-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hams-landing-hero__asset {
  object-fit: cover;
}

.hams-landing-hero__carousel {
  overflow: hidden;
}

.hams-landing-hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1s ease,
    transform 6s ease;
}

.hams-landing-hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hams-landing-hero__fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 68px 68px;
  opacity: 0.34;
}

.hams-landing-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.32) 42%,
      rgba(0, 0, 0, 0.62) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.36) 0%,
      rgba(0, 0, 0, 0.08) 48%,
      rgba(0, 0, 0, 0.38) 100%
    );
}

.hams-landing-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 635px;
  padding-top: 94px;
  text-align: center;
}

.hams-landing-hero h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(56px, 6vw, 104px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.06em;
  white-space: nowrap;
  text-align: center;
  text-shadow: 0 8px 38px rgba(0, 0, 0, 0.38);
}

.hams-landing-hero p {
  max-width: 760px;
  margin: 30px 0 48px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.02em;
  text-align: center;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}
/* Hero section end */

.hams-landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.hams-landing-btn:hover {
  transform: translateY(-1px);
}

.hams-landing-btn--dark {
  background: var(--hams-primary);
  color: #fff;
  box-shadow: 0 18px 40px rgba(11, 94, 215, 0.24);
}

.hams-landing-btn--dark:hover {
  background: var(--hams-primary-dark);
  color: #fff;
}

.hams-landing-btn--small {
  min-height: 56px;
  padding: 0 28px;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.26);
}

.hams-landing-section {
  padding: 70px 0 88px;
  background: #fff;
}

.hams-landing-heading {
  display: grid;
  justify-items: center;
  max-width: 520px;
  margin: 0 auto 48px;
  text-align: center;
}

.hams-landing-heading h2,
.hams-story-band h2 {
  margin: 0;
  color: #101010;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.hams-landing-heading p {
  max-width: 460px;
  margin: 14px 0 28px;
  color: #242424;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}

.hams-featured-vehicles {
  padding-top: 66px;
  padding-bottom: 62px;
}

.hams-landing-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.hams-landing-vehicle-card {
  position: relative;
  display: block;
  height: 520px;
  border: 4px solid #fff;
  border-radius: 14px;
  background: #111;
  color: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.hams-landing-vehicle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.3s ease;
}

.hams-landing-vehicle-card:hover img {
  transform: scale(1.06);
}

.hams-landing-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 45%,
    rgba(0, 0, 0, 0.86) 100%
  );
}

.hams-landing-vehicle-card__content {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 15px;
  z-index: 2;
  display: grid;
  gap: 5px;
  color: #fff;
}

.hams-landing-vehicle-card__content strong {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.hams-landing-vehicle-card__content small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

.hams-home-about {
  padding-top: 82px;
  padding-bottom: 92px;
}

.hams-home-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(34px, 5.8vw, 82px);
}

.hams-home-about__media {
  position: relative;
  min-height: 520px;
  border: 4px solid #fff;
  border-radius: 17px;
  background: #f4f4f4;
  box-shadow: 0 14px 31px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.hams-home-about__media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.01);
}

.hams-home-about__content {
  display: grid;
  justify-items: start;
  max-width: 560px;
}

.hams-home-about__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #777;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.hams-home-about__content h2 {
  margin: 0;
  color: #101010;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0;
}

.hams-home-about__content p {
  max-width: 540px;
  margin: 22px 0 0;
  color: #4e4e4e;
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0;
}

.hams-home-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hams-why-choose {
  padding-top: 76px;
  padding-bottom: 92px;
}

.hams-landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin: 0 auto;
}

.hams-landing-feature-card {
  position: relative;
  height: 310px;
  border: 2px solid #fff;
  border-radius: 17px;
  background: #f4f4f4;
  box-shadow: 0 14px 31px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.hams-landing-feature-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hams-landing-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.66) 31%,
    rgba(255, 255, 255, 0.04) 74%
  );
}

.hams-landing-feature-card--2::after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.96) 72%
  );
}

.hams-landing-feature-card__copy {
  position: relative;
  z-index: 2;
  padding: 21px 18px;
}

.hams-landing-feature-card--2 .hams-landing-feature-card__copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.hams-landing-feature-card h3,
.hams-testimonial-person strong {
  margin: 0;
  color: #242424;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.hams-landing-feature-card p {
  max-width: 220px;
  margin: 10px 0 0;
  color: #4e4e4e;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.hams-story-band {
  display: grid;
  align-items: center;
  min-height: 370px;
  padding: 80px 0;
}

.hams-story-band__inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hams-story-band h2 {
  max-width: 720px;
  margin-bottom: 23px;
  font-size: clamp(34px, 3.8vw, 44px);
}

.hams-testimonials {
  padding-top: 50px;
  padding-bottom: 28px;
  background: #fff;
}

.hams-testimonials .hams-container {
  max-width: var(--hams-container);
}

.hams-testimonials .hams-landing-heading {
  max-width: 520px;
  margin-bottom: 56px;
}

.hams-testimonials .hams-landing-heading h2 {
  color: #101010;
  font-size: clamp(38px, 3.55vw, 45px);
  font-weight: 600;
  line-height: 1.04;
}

.hams-testimonials .hams-landing-heading p {
  max-width: 365px;
  margin-top: 24px;
  margin-bottom: 0;
  color: #242424;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
}

.hams-testimonial-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.hams-testimonial-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hams-testimonial-feature,
.hams-testimonial-card {
  border: 4px solid #f7f7f7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.hams-testimonial-feature__media {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.hams-testimonial-feature > div,
.hams-testimonial-card {
  padding: 17px 18px 18px;
}

.hams-testimonial-card {
  display: grid;
  align-content: start;
  min-height: 239px;
}

.hams-testimonial-feature .hams-rating,
.hams-testimonial-card .hams-rating {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 5px;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff;
  color: #4e4e4e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.hams-rating::before {
  content: "\2605";
  color: #ffc400;
  font-size: 15px;
  line-height: 1;
}

.hams-testimonial-feature p,
.hams-testimonial-card p,
.hams-testimonial-card div:not(.hams-testimonial-person) {
  margin: 0 0 24px;
  color: #525252;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.hams-testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
}

.hams-testimonial-person > span {
  display: grid;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #171717, #cf4d1d);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.hams-testimonial-person img {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.hams-testimonial-person strong {
  display: grid;
  gap: 2px;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
}

.hams-testimonial-person small {
  color: #4f4f4f;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 980px) {
  .hams-mobile-menu {
    display: block;
  }

  .hams-header-inner {
    display: flex;
    min-height: 82px;
  }

  .home .hams-nav-toggle {
    border-color: rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.76);
  }

  .home .hams-nav-toggle span:not(.screen-reader-text) {
    background: #151515;
  }

  .home .hams-primary-nav {
    background: #fff;
  }

  .home .hams-primary-nav .hams-menu a {
    color: #151515;
  }

  .hams-landing-vehicle-grid,
  .hams-landing-feature-grid,
  .hams-testimonial-layout,
  .hams-testimonial-cards,
  .hams-home-about__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hams-landing-vehicle-card,
  .hams-landing-feature-card {
    height: 360px;
  }

  .hams-home-about__media,
  .hams-home-about__media img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .hams-brand-text strong {
    font-size: 20px;
  }

  .hams-landing-hero,
  .hams-landing-hero__content {
    min-height: 640px;
  }

  .hams-landing-hero__content {
    padding-top: 88px;
  }

  .hams-landing-hero h1 {
    max-width: 720px;
    font-size: clamp(42px, 12vw, 64px);
    white-space: normal;
  }

  .hams-landing-hero p {
    max-width: 92%;
    font-size: 16px;
  }

  .hams-landing-section {
    padding: 58px 0 66px;
  }

  .hams-landing-heading {
    margin-bottom: 34px;
  }

  .hams-landing-vehicle-card,
  .hams-landing-feature-card {
    height: 320px;
  }

  .hams-home-about {
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .hams-home-about__media,
  .hams-home-about__media img {
    min-height: 320px;
  }

  .hams-home-about__content h2 {
    font-size: clamp(31px, 9vw, 40px);
  }

  .hams-story-band {
    min-height: 300px;
  }

  .hams-testimonial-feature__media {
    height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hams-reveal,
  .hams-stagger > *,
  .hams-parallax,
  .hams-landing-vehicle-card:hover img,
  .hams-landing-vehicle-card:hover img.hams-parallax {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    will-change: auto !important;
  }
}

/* Container and grid sizing alignment */
.hams-ref-vehicle-grid,
.hams-landing-vehicle-grid,
.hams-landing-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.hams-ref-vehicle-card,
.hams-landing-vehicle-card {
  min-height: 520px;
}

@media (max-width: 980px) {
  .hams-ref-vehicle-grid,
  .hams-landing-vehicle-grid,
  .hams-landing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .hams-ref-vehicle-card,
  .hams-landing-vehicle-card {
    min-height: 440px;
    height: 440px;
  }
}

@media (max-width: 640px) {
  .hams-ref-vehicle-grid,
  .hams-landing-vehicle-grid,
  .hams-landing-feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hams-ref-vehicle-card,
  .hams-landing-vehicle-card {
    min-height: 360px;
    height: 360px;
  }
}

.hams-featured-models-grid .hams-landing-vehicle-card {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

@media (max-width: 640px) {
  .hams-featured-models-grid .hams-landing-vehicle-card {
    aspect-ratio: 16 / 11;
  }
}

/* Homepage polish: container, type, header, and restored sections */
html,
body {
  overflow-x: clip;
}

body {
  font-size: 16px;
  line-height: 1.65;
}

p {
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.7;
}

.hams-container {
  width: min(
    100% - calc(var(--hams-container-padding) * 2),
    var(--hams-container)
  );
  max-width: none;
  margin-inline: auto;
}

.hams-site-header,
.home .hams-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transform: translateY(0);
  will-change: transform;
  transition:
    transform 0.36s ease,
    background-color 0.25s ease,
    backdrop-filter 0.25s ease,
    -webkit-backdrop-filter 0.25s ease;
}

.hams-site-header.is-hidden {
  transform: translateY(-120%);
}

.hams-site-header.is-nav-open {
  transform: translateY(0);
}

.admin-bar .hams-site-header {
  top: 32px;
}

.hams-header-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  min-height: 96px;
  gap: 20px;
}

.hams-brand,
.hams-header-cta {
  position: relative;
  z-index: 2;
}

.hams-brand-logo {
  width: clamp(116px, 10vw, 142px);
}

/* HEADER LOGO STATE */
.hams-site-header.is-over-hero .hams-brand-logo--light,
.hams-site-header:not(.is-scrolled) .hams-brand-logo--light {
  opacity: 1;
}

.hams-site-header.is-over-hero .hams-brand-logo--dark,
.hams-site-header:not(.is-scrolled) .hams-brand-logo--dark {
  opacity: 0;
}

.hams-site-header.is-scrolled:not(.is-over-hero) .hams-brand-logo--light {
  opacity: 0;
}

.hams-site-header.is-scrolled:not(.is-over-hero) .hams-brand-logo--dark {
  opacity: 1;
}

.hams-primary-nav {
  position: relative;
  z-index: 1;
  margin: 0;
  justify-self: center;
}

.hams-primary-nav::before {
  content: "";
  position: absolute;
  inset: -14px -30px;
  z-index: -1;
  border: 1px solid rgba(221, 230, 240, 0.84);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(7, 27, 51, 0.08);
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    inset 0.25s ease;
}

.home .hams-primary-nav::before {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.hams-menu {
  gap: clamp(18px, 2vw, 34px);
}

.hams-menu a {
  color: #132238;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-shadow: none;
}

.home .hams-menu a {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.hams-menu a:hover {
  color: var(--hams-primary-dark);
  background: transparent;
}

.home .hams-menu a:hover {
  color: #fff;
}

body.hams-over-hero .hams-site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.hams-over-hero .hams-primary-nav::before {
  inset: -16px -34px;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(9, 14, 15, 0.2);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(0, 0, 0, 0.14);
}

body.hams-over-hero .hams-menu a {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

body.hams-over-hero .hams-menu a:hover {
  color: #fff;
}

.hams-site-header.is-scrolled .hams-primary-nav::before,
body.is-scrolled .hams-site-header .hams-primary-nav::before {
  inset: -15px -34px;
  border-color: rgba(221, 230, 240, 0.84);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(7, 27, 51, 0.12);
}

.hams-site-header.is-scrolled .hams-menu a,
body.is-scrolled .hams-site-header .hams-menu a,
body.is-scrolled.home .hams-site-header .hams-menu a {
  color: #132238;
  text-shadow: none;
}

.hams-site-header.is-scrolled .hams-menu a:hover,
body.is-scrolled .hams-site-header .hams-menu a:hover {
  color: var(--hams-primary-dark);
}

body.hams-over-hero .hams-site-header.is-scrolled .hams-primary-nav::before,
body.hams-over-hero.is-scrolled .hams-site-header .hams-primary-nav::before {
  inset: -16px -34px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(9, 14, 15, 0.54);
  backdrop-filter: blur(24px) saturate(130%);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2),
    0 18px 44px rgba(0, 0, 0, 0.24);
}

body.hams-over-hero .hams-site-header.is-scrolled .hams-menu a,
body.hams-over-hero.is-scrolled .hams-site-header .hams-menu a {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

body.hams-over-hero .hams-site-header.is-scrolled .hams-menu a:hover,
body.hams-over-hero.is-scrolled .hams-site-header .hams-menu a:hover {
  color: #fff;
}

.hams-header-cta {
  min-height: 52px;
  padding: 0 30px;
  font-size: 15px;
  box-shadow: 0 16px 34px rgba(11, 94, 215, 0.28);
}

/* HEADER CTA STATE */
.hams-site-header.is-over-hero .hams-header-cta,
.hams-site-header:not(.is-scrolled) .hams-header-cta {
  background: #fff;
  color: var(--hams-primary);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.hams-site-header.is-over-hero .hams-header-cta:hover,
.hams-site-header:not(.is-scrolled) .hams-header-cta:hover {
  background: #fff;
  color: var(--hams-primary-dark);
}

.hams-site-header.is-scrolled:not(.is-over-hero) .hams-header-cta {
  background: var(--hams-primary);
  color: #fff;
}

.hams-site-header.is-scrolled:not(.is-over-hero) .hams-header-cta:hover {
  background: var(--hams-primary-dark);
  color: #fff;
}

.hams-site-header.is-over-hero .hams-header-cta .hams-btn-text span,
.hams-site-header:not(.is-scrolled) .hams-header-cta .hams-btn-text span {
  color: var(--hams-primary);
}

.hams-site-header.is-scrolled:not(.is-over-hero) .hams-header-cta .hams-btn-text span {
  color: #fff;
}

.hams-landing-hero__content {
  min-height: 690px;
}

.hams-landing-hero h1 {
  max-width: 900px;
  font-size: clamp(54px, 6.4vw, 92px);
  font-weight: 700;
  line-height: 1.04;
}

.hams-landing-hero p {
  max-width: 760px;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.5;
}

.hams-landing-section,
.hams-ref-section,
.hams-section {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
}

.hams-landing-heading {
  max-width: 720px;
}

.hams-landing-heading h2,
.hams-ref-section h2,
.hams-home-about__content h2,
.hams-testimonials .hams-landing-heading h2,
.hams-section-title {
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
}

.hams-landing-heading p,
.hams-ref-heading p,
.hams-testimonials .hams-landing-heading p {
  max-width: 680px;
  color: #4f5965;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.72;
}

.hams-ref-kicker,
.hams-home-about__eyebrow,
.hams-eyebrow {
  font-size: 14px;
  line-height: 1.35;
}

.hams-featured-vehicles {
  background: #f7fafc;
}

.hams-featured-models-grid .hams-landing-vehicle-card {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 10;
}

.hams-featured-models-grid .hams-landing-vehicle-card img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hams-landing-vehicle-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 2.5vw, 32px);
}

.hams-landing-vehicle-card {
  height: clamp(430px, 36vw, 520px);
  min-height: 430px;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(7, 27, 51, 0.16);
}

.hams-landing-card-shade {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.03) 32%, rgba(0, 0, 0, 0.82) 100%),
    linear-gradient(90deg, rgba(7, 27, 51, 0.28), rgba(7, 27, 51, 0) 52%);
}

.hams-landing-vehicle-card__content {
  left: 24px;
  right: 24px;
  bottom: 24px;
  gap: 8px;
}

.hams-landing-vehicle-card__content strong {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.18;
}

.hams-landing-vehicle-card__content small {
  font-size: 14px;
  line-height: 1.4;
}

.hams-home-about__grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  gap: clamp(40px, 5vw, 76px);
}

.hams-home-about__media {
  border: 0;
  border-radius: 22px;
  box-shadow: 0 22px 54px rgba(7, 27, 51, 0.14);
}

.hams-home-about__content {
  max-width: 620px;
}

.hams-home-about__content p {
  max-width: 600px;
  font-size: clamp(16px, 1.08vw, 18px);
  line-height: 1.78;
}

.hams-why-choose {
  background: #fff;
}

.hams-landing-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.2vw, 30px);
}

.hams-landing-feature-card {
  height: auto;
  min-height: 286px;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 250, 252, 0.96)
    ),
    #fff;
  box-shadow: 0 16px 36px rgba(7, 27, 51, 0.08);
}

.hams-landing-feature-card::after {
  display: none;
}

.hams-landing-feature-card__copy,
.hams-landing-feature-card--2 .hams-landing-feature-card__copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: grid;
  align-content: start;
  height: 100%;
  padding: 28px;
}

.hams-landing-feature-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(11, 94, 215, 0.12),
    rgba(34, 181, 115, 0.16)
  );
  color: var(--hams-primary-dark);
  font-size: 16px;
  font-weight: 900;
}

.hams-landing-feature-card h3 {
  font-size: clamp(20px, 1.5vw, 22px);
  font-weight: 800;
}

.hams-landing-feature-card p {
  max-width: none;
  color: #4f5965;
  font-size: 15px;
  line-height: 1.68;
}

.hams-service-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hams-service-trust-list li {
  padding: 9px 13px;
  border: 1px solid rgba(11, 94, 215, 0.16);
  border-radius: 999px;
  background: rgba(234, 243, 255, 0.78);
  color: var(--hams-primary-dark);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.hams-testimonials {
  padding-top: clamp(72px, 7vw, 104px);
  padding-bottom: clamp(72px, 7vw, 104px);
  background: #f7fafc;
}

.hams-testimonials .hams-container {
  width: min(
    100% - calc(var(--hams-container-padding) * 2),
    var(--hams-container)
  );
  max-width: none;
}

.hams-testimonial-layout {
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
}

.hams-testimonial-cards {
  gap: 24px;
}

.hams-testimonial-feature,
.hams-testimonial-card {
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(7, 27, 51, 0.08);
}

.hams-testimonial-feature p,
.hams-testimonial-card p,
.hams-testimonial-card div:not(.hams-testimonial-person) {
  color: #4f5965;
  font-size: 15px;
  line-height: 1.72;
}

.hams-testimonial-person strong,
.hams-testimonial-person small {
  font-size: 14px;
}

.hams-opex-table {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.08);
}

.hams-opex-table__head,
.hams-opex-table__row {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 0;
}

.hams-opex-table__head {
  background: #071b33;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.hams-opex-table__head span,
.hams-opex-table__row strong,
.hams-opex-table__row span {
  padding: 20px 22px;
  font-size: 15px;
  line-height: 1.55;
}

.hams-opex-table__row + .hams-opex-table__row {
  border-top: 1px solid rgba(221, 230, 240, 0.9);
}

.hams-opex-table__row strong {
  color: #132238;
  font-weight: 900;
}

.hams-opex-table__row span {
  color: #4f5965;
}

.hams-opex-table__ev {
  background: rgba(233, 255, 244, 0.72);
  color: var(--hams-green-dark) !important;
  font-weight: 800;
}

.hams-ref-emi {
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 5vw, 68px);
  align-items: center;
}

.hams-ref-emi-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(221, 230, 240, 0.92);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(7, 27, 51, 0.1);
}

.hams-emi-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.hams-ref-emi-card label {
  color: #132238;
  font-size: 14px;
  line-height: 1.35;
}

.hams-ref-emi-card input {
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: #f4f7fb;
  color: #132238;
  font-size: 16px;
}

.hams-ref-emi-card input:focus {
  outline: 0;
  border-color: rgba(11, 94, 215, 0.46);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

.hams-emi-results {
  display: grid;
  grid-template-columns: minmax(170px, 0.48fr) minmax(0, 0.52fr);
  gap: 22px;
  align-items: center;
}

.hams-emi-chart {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.hams-emi-pie {
  --hams-emi-interest: 0%;
  display: grid;
  aspect-ratio: 1;
  min-height: 180px;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #fff 0 43%, transparent 44%),
    conic-gradient(
      var(--hams-green) 0 calc(100% - var(--hams-emi-interest)),
      var(--hams-primary) calc(100% - var(--hams-emi-interest)) 100%
    );
  box-shadow:
    inset 0 0 0 1px rgba(7, 27, 51, 0.06),
    0 16px 34px rgba(7, 27, 51, 0.1);
}

.hams-emi-pie span {
  color: #132238;
  font-size: 14px;
  font-weight: 900;
}

.hams-emi-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hams-emi-legend li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #596575;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.hams-emi-legend__swatch {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.hams-emi-legend__swatch--principal {
  background: var(--hams-green);
}

.hams-emi-legend__swatch--interest {
  background: var(--hams-primary);
}

.hams-emi-summary {
  display: grid;
  gap: 14px;
}

.hams-ref-emi-result {
  display: grid;
  gap: 6px;
  justify-content: stretch;
  padding: 18px;
  border-radius: 16px;
  background: #071b33;
  font-size: 14px;
  line-height: 1.3;
}

.hams-ref-emi-result strong {
  font-size: clamp(24px, 2.8vw, 36px);
}

.hams-emi-summary dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.hams-emi-summary dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(221, 230, 240, 0.82);
}

.hams-emi-summary dt,
.hams-emi-summary dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.hams-emi-summary dt {
  color: #596575;
}

.hams-emi-summary dd {
  color: #132238;
  font-weight: 900;
  text-align: right;
}

.hams-emi-note,
.hams-emi-error {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.hams-emi-note {
  color: #687386;
}

.hams-emi-error {
  color: #b42318;
  font-weight: 800;
}

.hams-home-news {
  background: #fff;
}

.hams-post-card {
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(7, 27, 51, 0.08);
}

.hams-post-card .hams-card-title {
  font-size: clamp(20px, 1.6vw, 24px);
}

.hams-post-card .hams-card-body p:not(.hams-eyebrow) {
  font-size: 15px;
  line-height: 1.65;
}

.hams-empty-state {
  padding: 30px;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 1120px) {
  .hams-header-inner {
    grid-template-columns: minmax(128px, 1fr) auto minmax(128px, 1fr);
  }

  .hams-menu {
    gap: 16px;
  }

  .hams-menu a {
    font-size: 14px;
  }

  .hams-header-cta {
    padding: 0 22px;
  }
}

@media (max-width: 1024px) {
  .hams-mobile-menu {
    display: block;
  }

  .hams-header-inner {
    display: flex;
    min-height: 82px;
  }

  .hams-primary-nav::before {
    display: none;
  }

  .hams-nav-toggle,
  .home .hams-nav-toggle {
    display: inline-block;
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(7, 27, 51, 0.1);
  }

  .hams-primary-nav,
  .home .hams-primary-nav,
  .hams-primary-nav.is-open {
    display: none;
  }

  .hams-header-cta {
    display: none;
  }

  .hams-landing-vehicle-grid,
  .hams-landing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hams-home-about__grid,
  .hams-testimonial-layout,
  .hams-ref-emi {
    grid-template-columns: 1fr;
  }

  .hams-opex-table {
    overflow-x: auto;
  }

  .hams-opex-table__head,
  .hams-opex-table__row {
    min-width: 760px;
  }

  .hams-ref-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 782px) {
  .admin-bar .hams-site-header {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .hams-landing-hero,
  .hams-landing-hero__content {
    min-height: 670px;
  }

  .hams-landing-hero h1 {
    font-size: clamp(42px, 13vw, 54px);
  }

  .hams-landing-hero p {
    font-size: 17px;
  }

  .hams-landing-vehicle-grid,
  .hams-landing-feature-grid,
  .hams-testimonial-cards,
  .hams-emi-fields,
  .hams-emi-results,
  .hams-ref-footer__grid {
    grid-template-columns: 1fr;
  }

  .hams-landing-vehicle-card {
    height: 360px;
    min-height: 360px;
  }

  .hams-home-about__grid {
    gap: 28px;
  }

  .hams-home-about__media,
  .hams-home-about__media img {
    min-height: 310px;
  }

  .hams-opex-table__head {
    display: none;
  }

  .hams-opex-table {
    gap: 12px;
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .hams-opex-table__row {
    min-width: 0;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid rgba(221, 230, 240, 0.95);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(7, 27, 51, 0.07);
  }

  .hams-opex-table__row + .hams-opex-table__row {
    border-top: 1px solid rgba(221, 230, 240, 0.95);
  }

  .hams-opex-table__row strong,
  .hams-opex-table__row span {
    padding: 15px 18px;
  }

  .hams-opex-table__row span::before {
    display: block;
    margin-bottom: 3px;
    color: #132238;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .hams-opex-table__row span:nth-child(2)::before {
    content: "ICE";
  }

  .hams-opex-table__row span:nth-child(3)::before {
    content: "EV";
  }

  .hams-emi-pie {
    width: min(100%, 240px);
    margin-inline: auto;
  }
}

/* Requested homepage refinements */
.hams-ref-kicker,
.hams-home-about__eyebrow,
.hams-eyebrow {
  color: var(--hams-primary);
}

.hams-landing-feature-card__icon {
  background: rgba(234, 243, 255, 0.85);
  color: var(--hams-primary);
}

.hams-landing-feature-card__icon img {
  position: static;
  inset: auto;
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  transform: none;
}

.hams-opex-table {
  display: none;
}

.hams-opex-chart {
  overflow: hidden;
  border: 1px solid rgba(26, 133, 197, 0.42);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 27, 51, 0.08);
}

.hams-opex-chart__head,
.hams-opex-chart__row {
  display: grid;
  grid-template-columns: minmax(250px, 1.28fr) minmax(140px, 0.5fr) minmax(
      140px,
      0.5fr
    ) minmax(250px, 1.28fr);
}

.hams-opex-chart__head {
  background: #2ba6d8;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
}

.hams-opex-chart__head span,
.hams-opex-chart__row span,
.hams-opex-chart__row strong {
  padding: 13px 14px;
  border-right: 1px solid rgba(137, 168, 196, 0.58);
  border-bottom: 1px solid rgba(137, 168, 196, 0.58);
  font-size: 14px;
  line-height: 1.35;
}

.hams-opex-chart__head span:last-child,
.hams-opex-chart__row span:last-child,
.hams-opex-chart__row strong:last-child {
  border-right: 0;
}

.hams-opex-chart__row:nth-child(odd) {
  background: #f4f8fb;
}

.hams-opex-chart__row strong {
  color: #001327;
  font-weight: 900;
}

.hams-opex-chart__row--summary {
  background: #eef8fd;
}

.hams-opex-chart__row--summary span,
.hams-opex-chart__row--summary strong {
  font-weight: 900;
}

.hams-opex-chart__total {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #2ba6d8;
  color: #fff;
}

.hams-opex-chart__total strong {
  display: grid;
  min-height: 50px;
  place-items: center;
  padding: 13px 16px;
  border-right: 1px solid rgba(0, 106, 166, 0.42);
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
}

.hams-opex-chart__total strong:nth-child(2) {
  font-size: 20px;
  letter-spacing: 0.02em;
}

.hams-opex-chart__total strong:last-child {
  border-right: 0;
}

.hams-emi-results[hidden],
.hams-emi-error[hidden] {
  display: none;
}

.hams-emi-calculate {
  justify-self: start;
}

@media (max-width: 980px) {
  .hams-opex-chart {
    overflow-x: auto;
  }

  .hams-opex-chart__head,
  .hams-opex-chart__row,
  .hams-opex-chart__total {
    min-width: 860px;
  }
}

@media (max-width: 640px) {
  .hams-opex-chart {
    border-radius: 10px;
  }

  .hams-opex-chart__head,
  .hams-opex-chart__row,
  .hams-opex-chart__total {
    min-width: 780px;
  }

  .hams-opex-chart__head span,
  .hams-opex-chart__row span,
  .hams-opex-chart__row strong {
    padding: 12px;
  }
}

/* ==================================================
ABOUT PAGE - HERO
================================================== */
.page-template-page-about .hams-site-main {
  padding-top: 0;
}

.page-template-page-about .hams-site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.page-template-page-about .hams-primary-nav::before {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: none;
}

.page-template-page-about .hams-menu a {
  color: #fff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.page-template-page-about .hams-menu a:hover {
  color: #fff;
}

body:not(.hams-over-hero).page-template-page-about
  .hams-site-header.is-scrolled
  .hams-primary-nav::before,
body:not(.hams-over-hero).is-scrolled.page-template-page-about
  .hams-site-header
  .hams-primary-nav::before {
  border-color: rgba(221, 230, 240, 0.84);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(7, 27, 51, 0.12);
}

body:not(.hams-over-hero).page-template-page-about
  .hams-site-header.is-scrolled
  .hams-menu
  a,
body:not(.hams-over-hero).is-scrolled.page-template-page-about
  .hams-site-header
  .hams-menu
  a {
  color: #132238;
  text-shadow: none;
}

.hams-about-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #071b33, #0b5ed7);
}

.hams-about-hero__media,
.hams-about-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hams-about-hero__media img {
  object-fit: cover;
}

.hams-about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 42%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

.hams-about-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 100vh;
  padding-top: 112px;
  padding-bottom: 72px;
  text-align: center;
}

.hams-about-eyebrow {
  margin: 0 0 14px;
  color: var(--hams-primary);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hams-about-hero .hams-about-eyebrow {
  color: #9bd5ff;
}

.hams-about-hero h1 {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 700;
  line-height: 1.05;
}

.hams-about-hero__content > p:not(.hams-about-eyebrow) {
  max-width: 780px;
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.hams-about-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

/* ==================================================
ABOUT PAGE - SHARED SECTION BASE
================================================== */
.hams-about-section {
  padding: clamp(76px, 7vw, 108px) 0;
  background: #fff;
}

.hams-about-section--soft {
  background: #f7fafc;
}

/* ==================================================
ABOUT PAGE - COMPANY INTRODUCTION
================================================== */
.hams-about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(380px, 1.04fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 82px);
}

.hams-about-intro .hams-about-copy h2,
.hams-about-corp .hams-about-heading h2,
.hams-about-brands .hams-about-heading h2,
.hams-about-cta .hams-about-cta__card h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.08;
}

.hams-about-intro .hams-about-copy > p:not(.hams-about-eyebrow),
.hams-about-corp .hams-about-heading > p:not(.hams-about-eyebrow),
.hams-about-brands .hams-about-heading > p:not(.hams-about-eyebrow),
.hams-about-cta .hams-about-cta__card > p {
  max-width: 720px;
  margin: 22px 0 0;
  color: #4f5965;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.78;
}

.hams-about-heading {
  display: grid;
  justify-items: center;
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.hams-about-image-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 22px;
  background: #eaf3ff;
  box-shadow: 0 22px 54px rgba(7, 27, 51, 0.14);
}

.hams-about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.hams-about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.hams-about-stat-card,
.hams-about-info-card,
.hams-about-brand-card,
.hams-about-mobility__card {
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 36px rgba(7, 27, 51, 0.08);
}

.hams-about-stat-card {
  display: grid;
  min-height: 108px;
  align-content: end;
  padding: 20px;
  background:
    linear-gradient(
      135deg,
      rgba(234, 243, 255, 0.95),
      rgba(233, 255, 244, 0.72)
    ),
    #fff;
}

.hams-about-stat-card strong {
  color: #132238;
  font-size: 16px;
  line-height: 1.25;
}

/* ==================================================
ABOUT PAGE - HAMS CORP GLOBAL
================================================== */

.hams-about-card-grid,
.hams-about-brand-grid {
  display: grid;
  gap: clamp(22px, 2.3vw, 30px);
}

.hams-about-card-grid--3,
.hams-about-brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hams-about-info-card,
.hams-about-brand-card {
  padding: clamp(24px, 2.4vw, 32px);
}

.hams-about-info-card > span,
.hams-about-mobility__number {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 17px;
  background: linear-gradient(
    135deg,
    rgba(11, 94, 215, 0.12),
    rgba(34, 181, 115, 0.16)
  );
  color: var(--hams-primary-dark);
  font-size: 15px;
  font-weight: 900;
}

.hams-about-info-card h3,
.hams-about-brand-card h3,
.hams-about-mobility__card h3 {
  margin: 0;
  color: #132238;
  font-size: clamp(20px, 1.55vw, 24px);
  line-height: 1.2;
}

.hams-about-info-card p,
.hams-about-brand-card p {
  margin: 14px 0 0;
  color: #4f5965;
  font-size: 15px;
  line-height: 1.7;
}

/* ==================================================
ABOUT PAGE - MISSION / VISION / GOALS
================================================== */
.hams-about-mvg {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(11, 94, 215, 0.08),
      transparent 28%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(34, 181, 115, 0.1),
      transparent 28%
    ),
    #fff;
}

.hams-about-mvg__header {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.hams-about-mvg__header h2 {
  margin: 0;
  color: #101820;
  font-family: var(--hams-font-heading);
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
}

.hams-about-mvg__header > p:not(.hams-eyebrow) {
  max-width: 620px;
  margin: 22px auto 0;
  color: #5c6673;
  font-size: clamp(16px, 1.1vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0;
}

.hams-about-mvg__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hams-about-mvg__card {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 32px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(245, 248, 252, 0.92)
    ),
    #fff;
  box-shadow: 0 24px 70px rgba(7, 27, 51, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hams-about-mvg__card::before {
  content: "";
  position: absolute;
  top: -74px;
  right: -74px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.08);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.hams-about-mvg__card:nth-child(2)::before {
  background: rgba(34, 181, 115, 0.1);
}

.hams-about-mvg__card:nth-child(3)::before {
  background: rgba(67, 190, 249, 0.1);
}

.hams-about-mvg__card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 94, 215, 0.24);
  box-shadow: 0 34px 90px rgba(7, 27, 51, 0.16);
}

.hams-about-mvg__card:hover::before {
  transform: scale(1.18);
}

.hams-about-mvg__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
}

.hams-about-mvg__number {
  color: rgba(10, 31, 61, 0.12);
  font-family: var(--hams-font-heading);
  font-size: clamp(64px, 6vw, 104px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0;
}

.hams-about-mvg__label {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px;
  background: #101820;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.hams-about-mvg__card h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0 0 18px;
  color: #101820;
  font-family: var(--hams-font-heading);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hams-about-mvg__card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #586473;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  letter-spacing: 0;
}

@media (max-width: 1024px) {
  .hams-about-mvg {
    padding: 90px 0;
  }

  .hams-about-mvg__grid {
    grid-template-columns: 1fr;
  }

  .hams-about-mvg__card {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hams-about-mvg {
    padding: 70px 0;
  }

  .hams-about-mvg__header {
    margin-bottom: 38px;
  }

  .hams-about-mvg__header h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hams-about-mvg__card {
    min-height: 0;
    padding: 26px;
    border-radius: 26px;
  }

  .hams-about-mvg__number {
    font-size: 72px;
  }

  .hams-about-mvg__card h3 {
    font-size: 30px;
    line-height: 1.05;
  }

  .hams-about-mvg__card p {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ==================================================
ABOUT PAGE - WHY ELECTRIC MOBILITY
================================================== */
.hams-about-mobility__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 1.12fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 82px);
}

.hams-about-mobility__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hams-about-mobility__card {
  min-height: 190px;
  padding: 24px;
}

/* ==================================================
ABOUT PAGE - BRAND PARTNERS
================================================== */

.hams-about-brand-card {
  display: grid;
  align-content: start;
  min-height: 330px;
}

.hams-about-brand-card__badge {
  display: grid;
  width: 64px;
  height: 64px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--hams-primary), var(--hams-green));
  color: #fff;
  font-size: 28px;
  font-weight: 900;
}

.hams-about-small-btn {
  justify-self: start;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  font-size: 14px;
}

/* ==================================================
ABOUT PAGE - CTA
================================================== */

.hams-about-cta {
  padding-top: 0;
}

.hams-about-cta__card {
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 86% 16%,
      rgba(34, 181, 115, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(234, 243, 255, 0.96),
      rgba(255, 255, 255, 0.98)
    );
  box-shadow: 0 22px 54px rgba(7, 27, 51, 0.12);
}

.hams-about-cta__card .hams-about-actions {
  justify-content: flex-start;
}

/* ==================================================
ABOUT PAGE - CUSTOMERS GALLERY
================================================== */

.hams-about-customers {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      180deg,
      rgba(247, 250, 255, 0.94),
      rgba(255, 255, 255, 0.98) 58%
    ),
    radial-gradient(circle at 10% 18%, rgba(0, 93, 231, 0.08), transparent 28%),
    radial-gradient(circle at 88% 74%, rgba(34, 181, 115, 0.1), transparent 30%);
}

.hams-about-customers__heading {
  max-width: 840px;
  margin: 0 auto clamp(34px, 5vw, 58px);
  text-align: center;
}

.hams-about-customers__heading h2 {
  margin: 0;
  color: #071b33;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hams-about-customers__heading > p:not(.hams-about-eyebrow) {
  max-width: 760px;
  margin: 24px auto 0;
  color: #43556b;
  font-size: 18px;
  line-height: 1.75;
}

.hams-customer-carousel {
  position: relative;
  width: min(100vw, 100%);
  margin: 0 auto;
  overflow: hidden;
  padding: 16px 0 34px;
}

.hams-customer-carousel::before,
.hams-customer-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  z-index: 2;
  width: min(140px, 14vw);
  height: 100%;
  pointer-events: none;
}

.hams-customer-carousel::before {
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(249, 251, 255, 1),
    rgba(249, 251, 255, 0)
  );
}

.hams-customer-carousel::after {
  right: 0;
  background: linear-gradient(
    270deg,
    rgba(249, 251, 255, 1),
    rgba(249, 251, 255, 0)
  );
}

.hams-customer-carousel__track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: hams-customer-marquee 34s linear infinite;
  will-change: transform;
}

.hams-customer-carousel:hover .hams-customer-carousel__track {
  animation-play-state: paused;
}

.hams-customer-card {
  flex: 0 0 clamp(270px, 28vw, 430px);
  margin: 0;
}

.hams-customer-card__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 48px rgba(7, 27, 51, 0.12);
  cursor: pointer;
  transform: translateY(0);
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}

.hams-customer-card__button:hover,
.hams-customer-card__button:focus-visible {
  border-color: rgba(0, 93, 231, 0.28);
  box-shadow: 0 28px 64px rgba(7, 27, 51, 0.16);
  transform: translateY(-5px);
}

.hams-customer-card__button:focus-visible {
  outline: 3px solid rgba(0, 93, 231, 0.3);
  outline-offset: 4px;
}

.hams-customer-card__image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #dfe8f2;
}

.hams-customer-card__image::after {
  display: none;
}

.hams-customer-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.32s ease;
}

.hams-customer-card__button:hover .hams-customer-card__image img,
.hams-customer-card__button:focus-visible .hams-customer-card__image img {
  transform: scale(1.05);
}

.hams-customer-card__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: grid;
  gap: 5px;
  color: #ffffff;
  text-align: left;
}

.hams-customer-card__caption strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.hams-customer-card__caption small {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}

.hams-about-customers__ticker {
  margin: 10px 0 0;
  color: rgba(52, 72, 93, 0.68);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.hams-about-customers__placeholder {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 62px);
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 48px rgba(7, 27, 51, 0.08);
  text-align: center;
}

.hams-about-customers__placeholder p {
  margin: 0;
  color: #43556b;
  font-size: 18px;
  line-height: 1.6;
}

.hams-customer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.hams-customer-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.hams-customer-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 14, 27, 0.72);
  backdrop-filter: blur(12px);
}

.hams-customer-modal__dialog {
  position: relative;
  z-index: 1;
  display: block;
  width: min(1060px, 100%);
  max-height: min(84vh, 760px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
  transform: translateY(14px) scale(0.98);
  transition: transform 0.22s ease;
}

.hams-customer-modal.is-open .hams-customer-modal__dialog {
  transform: translateY(0) scale(1);
}

.hams-customer-modal__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: min(84vh, 760px);
  object-fit: cover;
  background: #dfe8f2;
}

.hams-customer-modal__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: clamp(28px, 4vw, 48px);
}

.hams-customer-modal__eyebrow {
  margin: 0 0 14px;
  color: var(--hams-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hams-customer-modal__content h3 {
  margin: 0;
  color: #071b33;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.hams-customer-modal__content p:last-child {
  margin: 18px 0 0;
  color: #43556b;
  font-size: 17px;
  line-height: 1.7;
}

.hams-customer-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #071b33;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(7, 27, 51, 0.2);
  cursor: pointer;
}

.hams-customer-modal__close:focus-visible {
  outline: 3px solid rgba(0, 93, 231, 0.32);
  outline-offset: 3px;
}

body.hams-customer-modal-open {
  overflow: hidden;
}

@keyframes hams-customer-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - 12px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hams-customer-carousel__track {
    animation: none;
  }
}

@media (max-width: 860px) {
  .hams-customer-modal__dialog {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }

  .hams-customer-modal__image {
    min-height: 280px;
    aspect-ratio: 16 / 10;
  }

  .hams-customer-modal__content {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hams-customer-carousel::before,
  .hams-customer-carousel::after {
    width: 48px;
  }

  .hams-customer-card {
    flex-basis: min(82vw, 340px);
  }

  .hams-customer-modal {
    padding: 14px;
  }
}

@media (max-width: 980px) {
  .page-template-page-about .hams-primary-nav,
  .page-template-page-about .home .hams-primary-nav {
    background: rgba(255, 255, 255, 0.96);
  }

  .page-template-page-about .hams-menu a,
  body.is-scrolled.page-template-page-about .hams-site-header .hams-menu a {
    color: #132238;
    text-shadow: none;
  }

  .hams-about-intro__grid,
  .hams-about-mobility__grid {
    grid-template-columns: 1fr;
  }

  .hams-about-card-grid--3,
  .hams-about-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hams-about-hero h1 {
    font-size: clamp(42px, 12vw, 54px);
  }

  .hams-about-hero__content {
    padding-top: 98px;
  }

  .hams-about-actions {
    display: grid;
    width: 100%;
  }

  .hams-about-actions .hams-btn {
    width: 100%;
  }

  .hams-about-stat-grid,
  .hams-about-card-grid--3,
  .hams-about-brand-grid,
  .hams-about-mobility__cards {
    grid-template-columns: 1fr;
  }

  .hams-about-image-card,
  .hams-about-image-card img {
    min-height: 320px;
  }
}

/* ==================================================
SHARED INNER PAGE COMPONENTS
================================================== */
.hams-page-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(67, 190, 249, 0.24),
      transparent 32%
    ),
    linear-gradient(
      110deg,
      var(--hams-navy) 0%,
      var(--hams-primary-dark) 56%,
      var(--hams-primary) 100%
    );
}

.hams-page-hero--short {
  min-height: 100vh;
}

.hams-page-hero--image {
  background: var(--hams-navy);
}

.hams-page-hero__image,
.hams-page-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hams-page-hero__image {
  object-fit: cover;
}

.hams-page-hero__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 42%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

.hams-page-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding: 120px 0 72px;
  text-align: center;
}

.hams-page-hero .hams-page-actions {
  justify-content: center;
}

.hams-generic-hero,
.hams-gradient-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 78% 18%,
      rgba(67, 190, 249, 0.26),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 12%,
      rgba(255, 255, 255, 0.08),
      transparent 24%
    ),
    linear-gradient(115deg, #061a33 0%, #083d86 54%, #1268d8 100%);
}

.hams-generic-hero > .hams-container,
.hams-gradient-hero > .hams-container {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding: 120px 0 72px;
  text-align: center;
}

.hams-generic-hero .hams-page-title,
.hams-generic-hero .hams-section-text,
.hams-generic-hero .hams-eyebrow,
.hams-gradient-hero .hams-hero-title,
.hams-gradient-hero .hams-section-text,
.hams-gradient-hero .hams-eyebrow {
  color: #fff;
}

.hams-generic-hero .hams-section-text,
.hams-gradient-hero .hams-section-text {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
}

.hams-page-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hams-page-hero p:not(.hams-page-eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(17px, 1.3vw, 22px);
  font-weight: 600;
  line-height: 1.6;
}

.hams-page-eyebrow {
  margin: 0 0 14px;
  color: var(--hams-cyan);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hams-page-section {
  padding: clamp(76px, 7vw, 112px) 0;
  background: #fff;
}

.hams-page-section--soft {
  background: var(--hams-soft-bg);
}

.hams-page-section__heading {
  max-width: 820px;
  margin: 0 auto 44px;
  text-align: center;
}

.hams-page-section__heading h2,
.hams-page-split h2,
.hams-two-column-form h2,
.hams-location-panel h2,
.hams-page-cta-card h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hams-page-section__heading p:not(.hams-page-eyebrow),
.hams-page-split p,
.hams-two-column-form p,
.hams-location-panel p,
.hams-page-cta-card p {
  margin-top: 20px;
  color: var(--hams-body);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
}

.hams-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hams-page-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hams-page-card-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hams-page-card-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hams-page-card,
.hams-page-empty-card,
.hams-page-form-card,
.hams-page-cta-card {
  border: 1px solid rgba(221, 230, 240, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 55px rgba(7, 27, 51, 0.09);
}

.hams-page-card {
  padding: clamp(24px, 2.4vw, 34px);
}

.hams-page-card h3,
.hams-page-empty-card h3 {
  margin: 0 0 14px;
  color: var(--hams-heading);
  font-size: clamp(21px, 1.7vw, 28px);
  line-height: 1.16;
}

.hams-page-card p,
.hams-page-empty-card p {
  margin: 0;
  color: var(--hams-body);
  font-size: 16px;
  line-height: 1.72;
}

.hams-page-split,
.hams-two-column-form {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.hams-page-checklist {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hams-page-checklist li {
  position: relative;
  padding: 18px 20px 18px 52px;
  border: 1px solid var(--hams-border);
  border-radius: 18px;
  background: #fff;
  color: var(--hams-heading);
  font-size: 16px;
  font-weight: 800;
  box-shadow: var(--hams-shadow-sm);
}

.hams-page-checklist li::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 22px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--hams-green);
}

.hams-page-form-card {
  padding: clamp(24px, 3vw, 38px);
}

.hams-page-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hams-cf7-form .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hams-page-form label,
.hams-cf7-form .wpcf7-form p {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--hams-heading);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.hams-page-form input,
.hams-page-form select,
.hams-page-form textarea,
.hams-cf7-form input:not([type="submit"]):not([type="checkbox"]),
.hams-cf7-form select,
.hams-cf7-form textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 15px;
  background: #f7fafc;
  color: var(--hams-heading);
  font-size: 16px;
  outline: none;
  padding: 12px 15px;
}

.hams-cf7-form--contact select,
.hams-cf7-form--test_drive select {
  -webkit-appearance: none;
  appearance: none;
  padding-right: 58px;
  background-color: #f7fafc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='38' viewBox='0 0 38 38'%3E%3Crect x='0.5' y='0.5' width='37' height='37' rx='18.5' fill='%23e8f2ff' stroke='%23c9ddfb'/%3E%3Cpath d='m14.5 16.5 4.5 4 4.5-4' fill='none' stroke='%230b5ed7' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 38px 38px;
  cursor: pointer;
}

.hams-cf7-form--contact select:hover,
.hams-cf7-form--test_drive select:hover {
  border-color: rgba(11, 94, 215, 0.36);
}

.hams-page-form textarea,
.hams-cf7-form textarea {
  min-height: 144px;
  resize: vertical;
}

.hams-page-form input:focus,
.hams-page-form select:focus,
.hams-page-form textarea:focus,
.hams-cf7-form input:not([type="submit"]):not([type="checkbox"]):focus,
.hams-cf7-form select:focus,
.hams-cf7-form textarea:focus {
  border-color: rgba(11, 94, 215, 0.5);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

.hams-page-form__wide,
.hams-page-form .hams-btn,
.hams-cf7-form .wpcf7-form p:has(textarea),
.hams-cf7-form .wpcf7-form p:has(.wpcf7-file),
.hams-cf7-form .wpcf7-form p:has(.wpcf7-acceptance),
.hams-cf7-form .hams-form-help,
.hams-cf7-form .wpcf7-form p:has(.wpcf7-submit),
.hams-cf7-form .wpcf7-response-output,
.hams-page-emi-result {
  grid-column: 1 / -1;
}

.hams-cf7-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.hams-cf7-form input[type="file"] {
  padding: 7px;
}

.hams-cf7-form input[type="file"]::file-selector-button {
  margin-right: 12px;
  padding: 9px 13px;
  border: 0;
  border-radius: 10px;
  background: rgba(11, 94, 215, 0.1);
  color: var(--hams-primary-dark);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.hams-cf7-form .hams-form-help {
  margin-top: -10px;
  color: var(--hams-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.hams-cf7-form .hams-form-consent {
  color: var(--hams-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.hams-cf7-form .hams-form-consent .wpcf7-list-item {
  margin: 0;
}

.hams-cf7-form .hams-form-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hams-cf7-form .hams-form-consent input[type="checkbox"] {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--hams-primary);
}

.hams-cf7-form .wpcf7-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    var(--hams-primary),
    var(--hams-primary-dark)
  );
  box-shadow: 0 14px 28px rgba(0, 86, 210, 0.2);
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  justify-self: stretch;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hams-cf7-form .wpcf7-submit:hover,
.hams-cf7-form .wpcf7-submit:focus-visible {
  box-shadow: 0 18px 34px rgba(0, 86, 210, 0.26);
  transform: translateY(-2px);
}

.hams-cf7-form .wpcf7-not-valid {
  border-color: rgba(220, 38, 38, 0.5);
}

.hams-cf7-form .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hams-cf7-form .wpcf7-response-output {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.hams-cf7-form .wpcf7-form.sent .wpcf7-response-output {
  border-color: #15803d;
  background: #f0fdf4;
  color: #166534;
}

.hams-cf7-form .wpcf7-form.invalid .wpcf7-response-output,
.hams-cf7-form .wpcf7-form.unaccepted .wpcf7-response-output {
  border-color: #d97706;
  background: #fffbeb;
  color: #92400e;
}

.hams-cf7-form .wpcf7-form.failed .wpcf7-response-output,
.hams-cf7-form .wpcf7-form.aborted .wpcf7-response-output,
.hams-cf7-form .wpcf7-form.spam .wpcf7-response-output {
  border-color: #dc2626;
  background: #fef2f2;
  color: #991b1b;
}

.hams-cf7-form .wpcf7-spinner {
  margin: 12px auto 0;
}

.hams-form-notice {
  margin: 0;
  color: var(--hams-body);
  font-size: 16px;
  line-height: 1.65;
}

.hams-page-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--hams-shadow-md);
}

.hams-page-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.hams-page-table th,
.hams-page-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(221, 230, 240, 0.85);
  text-align: left;
  font-size: 16px;
  line-height: 1.55;
}

.hams-page-table th {
  color: var(--hams-heading);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}
/* ==================================================
   SHARED LOCATION MAP SECTIONS
================================================== */

.hams-location-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
}

.hams-page-map--iframe {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 440px;
  border-radius: 30px;
  background: #eaf3ff;
  box-shadow: 0 24px 70px rgba(7, 27, 51, 0.12);
}

.hams-page-map--iframe iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.hams-location-panel__content,
.hams-location-panel > div:not(.hams-page-map) {
  min-width: 0;
}

.hams-location-panel__content h2,
.hams-location-panel > div:not(.hams-page-map) h2 {
  max-width: 620px;
}

.hams-location-panel__content p,
.hams-location-panel > div:not(.hams-page-map) p {
  max-width: 560px;
}

@media (max-width: 1024px) {
  .hams-location-panel {
    gap: 36px;
  }

  .hams-page-map--iframe,
  .hams-page-map--iframe iframe {
    min-height: 380px;
  }
}

@media (max-width: 768px) {
  .hams-location-panel {
    grid-template-columns: 1fr;
  }

  .hams-page-map--iframe,
  .hams-page-map--iframe iframe {
    min-height: 320px;
    border-radius: 24px;
  }
}
.hams-page-cta-card,
.hams-page-empty-card {
  display: grid;
  justify-items: start;
  padding: clamp(30px, 4.8vw, 66px);
  background:
    radial-gradient(
      circle at 86% 16%,
      rgba(34, 181, 115, 0.16),
      transparent 30%
    ),
    linear-gradient(135deg, rgba(234, 243, 255, 0.95), #fff);
}

.hams-page-empty-card {
  max-width: 760px;
  margin: 0 auto;
}

/* ==================================================
SERVICE CENTER PAGE
================================================== */
.hams-service-center-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.hams-service-center-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(221, 230, 240, 0.92);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(245, 248, 252, 0.94)
    ),
    #fff;
  box-shadow: var(--hams-shadow-sm);
}

.hams-service-center-card span,
.hams-service-process__step span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: var(--hams-primary-soft);
  color: var(--hams-primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.hams-service-center-card h3,
.hams-service-process__step h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 1.7vw, 27px);
}

.hams-service-center-card p,
.hams-service-process__step p {
  margin: 0;
  font-size: 16px;
}

.hams-service-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hams-service-process__step {
  padding: 26px;
  border: 1px solid var(--hams-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--hams-shadow-sm);
}

/* ==================================================
   SERVICE CENTER PAGE - VIDEO SECTION
================================================== */

.hams-service-video-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(11, 94, 215, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(34, 181, 115, 0.1),
      transparent 28%
    ),
    #fff;
}

.hams-service-video {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 6vw, 96px);
}

.hams-service-video__content {
  max-width: 590px;
}

.hams-service-video__content h2 {
  margin: 0;
  color: #101820;
  font-family: var(--hams-font-heading);
  font-size: clamp(42px, 4.8vw, 56px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.hams-service-video__content > p:not(.hams-page-eyebrow) {
  max-width: 560px;
  margin: 24px 0 0;
  color: #4f5965;
  font-size: clamp(16px, 1.05vw, 18px);
  font-weight: 400;
  line-height: 1.76;
  letter-spacing: -0.02em;
}

.hams-service-video__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hams-service-video__chips span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(11, 94, 215, 0.14);
  border-radius: 999px;
  background: rgba(234, 243, 255, 0.82);
  color: var(--hams-primary);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hams-service-video__media {
  position: relative;
}

.hams-service-video__frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: var(--hams-navy);
  box-shadow: 0 34px 100px rgba(7, 27, 51, 0.18);
  aspect-ratio: 16 / 9;
}

.hams-service-video__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)),
    radial-gradient(
      circle at 80% 18%,
      rgba(67, 190, 249, 0.18),
      transparent 30%
    );
}

.hams-service-video__frame video {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hams-service-video__floating-card {
  position: absolute;
  right: 28px;
  bottom: -34px;
  z-index: 2;
  max-width: 270px;
  padding: 20px 22px;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(7, 27, 51, 0.16);
  backdrop-filter: blur(16px);
}

.hams-service-video__floating-card strong {
  display: block;
  margin-bottom: 6px;
  color: #101820;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hams-service-video__floating-card span {
  display: block;
  color: #5a6573;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

@media (max-width: 1024px) {
  .hams-service-video {
    grid-template-columns: 1fr;
  }

  .hams-service-video__content {
    max-width: 760px;
  }

  .hams-service-video__content > p:not(.hams-page-eyebrow) {
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .hams-service-video__content h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hams-service-video__frame {
    border-radius: 24px;
  }

  .hams-service-video__floating-card {
    position: static;
    max-width: none;
    margin-top: 18px;
  }

  .hams-service-video__chips {
    gap: 10px;
    margin-top: 26px;
  }

  .hams-service-video__chips span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 14px;
  }
}

/* ==================================================
CONTACT PAGE
================================================== */
.hams-contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hams-contact-card {
  padding: 24px;
  border: 1px solid var(--hams-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--hams-shadow-sm);
}

.hams-contact-card__icon {
  display: grid;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 18px;
  background: var(--hams-primary);
}

.hams-contact-card__icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.hams-contact-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

.hams-contact-card p,
.hams-contact-card a {
  margin: 0;
  color: var(--hams-body);
  font-size: 16px;
  line-height: 1.65;
}

.hams-contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
}

.hams-contact-form-card {
  padding: clamp(26px, 3.2vw, 42px);
}

.hams-contact-form-card .wpcf7-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hams-contact-form-card .wpcf7-form p {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--hams-heading);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.hams-contact-form-card .wpcf7-form p:has(textarea),
.hams-contact-form-card .wpcf7-form p:has(.wpcf7-file),
.hams-contact-form-card .wpcf7-form p:has(.wpcf7-acceptance),
.hams-contact-form-card .hams-form-help,
.hams-contact-form-card .wpcf7-form p:has(.wpcf7-submit),
.hams-contact-form-card .wpcf7-response-output {
  grid-column: 1 / -1;
}

.hams-contact-form-card .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.hams-contact-form-card input:not([type="submit"]):not([type="checkbox"]),
.hams-contact-form-card select,
.hams-contact-form-card textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 15px;
  background: #f7fafc;
  color: var(--hams-heading);
  font-size: 16px;
  font-weight: 500;
  outline: none;
  padding: 12px 15px;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

.hams-contact-form-card textarea {
  min-height: 150px;
  resize: vertical;
}

.hams-contact-form-card input:not([type="submit"]):not([type="checkbox"]):focus,
.hams-contact-form-card select:focus,
.hams-contact-form-card textarea:focus {
  border-color: rgba(11, 94, 215, 0.5);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(11, 94, 215, 0.1);
}

.hams-contact-form-card .wpcf7-not-valid {
  border-color: rgba(220, 38, 38, 0.5);
}

.hams-contact-form-card .wpcf7-not-valid-tip {
  margin-top: 7px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.hams-contact-form-card .wpcf7-submit,
.hams-contact-form-card .hams-page-form .hams-btn {
  width: 100%;
  justify-self: stretch;
}

.hams-contact-form-card .wpcf7-spinner {
  margin: 12px auto 0;
}

.hams-contact-form-card .wpcf7-response-output {
  margin: 0;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

/* ==================================================
CHARGER STATIONS PAGE
================================================== */
.hams-charger-map-section {
  background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
  overflow: hidden;
}

.hams-charger-map-header {
  margin-bottom: 42px;
}

.hams-nepal-charger-card {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(14px, 2vw, 26px);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
}

.hams-nepal-map-wrap {
  position: relative;
  width: 100%;
  min-height: 260px;
}

.hams-nepal-map-stage {
  position: relative;
  width: 100%;
}

.hams-nepal-base-map {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hams-nepal-base-map img {
  display: block;
  width: 100%;
  height: auto;
}

.hams-charger-marker-layer {
  position: absolute;
  inset: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.hams-charger-marker {
  cursor: pointer;
  pointer-events: none;
}

.hams-charger-marker__pulse {
  fill: #22c55e;
  opacity: 0.4;
  animation: hamsChargerPulse 1.8s ease-out infinite;
  pointer-events: none;
}

.hams-charger-marker__dot {
  fill: #10b981;
  stroke: #fff;
  stroke-width: 2;
  cursor: pointer;
  pointer-events: auto;
}

.hams-charger-marker__label {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.hams-charger-marker:hover .hams-charger-marker__label,
.hams-charger-marker:focus .hams-charger-marker__label,
.hams-charger-marker.is-active .hams-charger-marker__label {
  opacity: 1;
  transform: translateY(-14px);
}

.hams-charger-marker__label-bg {
  fill: var(--hams-primary-dark);
  filter: drop-shadow(0 8px 18px rgba(15, 23, 42, 0.22));
}

.hams-charger-marker__label-text {
  fill: #fff;
  font-size: 14px;
  font-weight: 800;
  text-anchor: middle;
  dominant-baseline: middle;
}

.hams-charger-map-note {
  margin: 18px 0 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.hams-nepal-map-fallback {
  display: grid;
  min-height: 320px;
  place-items: center;
  padding: 24px;
  border-radius: 20px;
  background: #f8fafc;
  color: #64748b;
  text-align: center;
}

@keyframes hamsChargerPulse {
  0% {
    r: 7;
    opacity: 0.4;
  }

  100% {
    r: 22;
    opacity: 0;
  }
}

/* ==================================================
TEST DRIVE PAGE
================================================== */
.hams-test-drive-page .hams-page-card {
  background: linear-gradient(180deg, #fff, rgba(234, 243, 255, 0.42));
}

/* ==================================================
BECOME A DEALER PAGE
================================================== */
.hams-dealer-page .hams-page-card {
  background: linear-gradient(180deg, #fff, rgba(233, 255, 244, 0.45));
}

/* ==================================================
CAREERS / JOIN HAMS MOTORS PAGE
================================================== */
.hams-careers-page .hams-page-empty-card {
  justify-items: center;
  text-align: center;
}

/* ==================================================
   CAREERS PAGE - OPENINGS
================================================== */
.hams-careers-openings {
  position: relative;
  overflow: hidden;
}

.hams-careers-openings__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.hams-career-card {
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: clamp(24px, 2.4vw, 34px);
  border: 1px solid rgba(221, 230, 240, 0.94);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 12%, rgba(11, 94, 215, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 20px 55px rgba(7, 27, 51, 0.09);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.hams-career-card:hover {
  border-color: rgba(11, 94, 215, 0.22);
  box-shadow: 0 28px 76px rgba(7, 27, 51, 0.14);
  transform: translateY(-6px);
}

.hams-career-card__header {
  display: grid;
  gap: 18px;
}

.hams-career-card h3 {
  margin: 0;
  color: var(--hams-heading);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 900;
  line-height: 1.12;
}

.hams-career-card > p {
  margin: 22px 0 0;
  color: var(--hams-body);
  font-size: 16px;
  line-height: 1.72;
}

.hams-career-card__section {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(221, 230, 240, 0.82);
}

.hams-career-card__section h4 {
  margin: 0 0 12px;
  color: var(--hams-heading);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.hams-career-card__section ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--hams-body);
  font-size: 15px;
  line-height: 1.55;
}

.hams-career-card__section li::marker {
  color: var(--hams-primary);
}

.hams-career-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hams-career-card__meta span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(11, 94, 215, 0.12);
  border-radius: 999px;
  background: rgba(234, 243, 255, 0.82);
  color: var(--hams-primary-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.hams-career-card__badge {
  justify-self: start;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(34, 181, 115, 0.12);
  color: var(--hams-green-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.hams-career-card__badge--closed {
  background: rgba(100, 116, 139, 0.14);
  color: #475569;
}

.hams-career-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hams-career-card__skills span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(34, 181, 115, 0.1);
  color: var(--hams-green-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
}

.hams-career-card__actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 28px;
}

.hams-career-card__actions .hams-btn {
  flex: 1 1 0;
  min-width: 0;
}

.hams-careers-empty {
  gap: 22px;
}

.hams-careers-empty .hams-btn {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .hams-careers-openings__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .hams-careers-openings__grid {
    grid-template-columns: 1fr;
  }

  .hams-career-card {
    min-height: auto;
    border-radius: 20px;
  }

  .hams-career-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* ==================================================
   CAREER DETAIL PAGE
================================================== */
.hams-career-single {
  background: #fff;
}

.hams-career-hero {
  height: 100vh;
}

.hams-career-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hams-career-hero__meta span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  backdrop-filter: blur(12px);
}

.hams-career-overview {
  padding: clamp(38px, 5vw, 70px) 0;
}

.hams-career-overview__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.hams-career-overview__item,
.hams-career-detail__content,
.hams-career-detail__sidebar,
.hams-career-apply-cta__card {
  border: 1px solid rgba(221, 230, 240, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 55px rgba(7, 27, 51, 0.09);
}

.hams-career-overview__item {
  min-height: 118px;
  padding: 22px;
}

.hams-career-overview__item span,
.hams-career-detail__side-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--hams-primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.hams-career-overview__item strong,
.hams-career-detail__side-card strong {
  display: block;
  color: var(--hams-heading);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 900;
  line-height: 1.24;
}

.hams-career-detail__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.36fr);
  align-items: start;
  gap: clamp(22px, 3vw, 34px);
}

.hams-career-detail__grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.hams-career-detail__content {
  padding: clamp(28px, 3.2vw, 48px);
}

.hams-career-detail__content h2 {
  margin: 0 0 28px;
  color: var(--hams-heading);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1.08;
}

.hams-career-detail__section + .hams-career-detail__section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(221, 230, 240, 0.86);
}

.hams-career-detail__section h3 {
  margin: 0 0 14px;
  color: var(--hams-heading);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 900;
  line-height: 1.16;
}

.hams-career-detail__section p {
  margin: 0;
  color: var(--hams-body);
  font-size: 17px;
  line-height: 1.78;
}

.hams-career-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--hams-body);
  font-size: 16px;
  line-height: 1.68;
}

.hams-career-list li::marker {
  color: var(--hams-primary);
}

.hams-career-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hams-career-detail__tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(34, 181, 115, 0.1);
  color: var(--hams-green-dark);
  font-size: 13px;
  font-weight: 900;
}

.hams-career-detail__sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.hams-career-detail__side-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.96), #fff);
}

.hams-career-apply-cta__card {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 72px);
  text-align: center;
}

.hams-career-apply-cta__card h2 {
  margin: 0;
  color: var(--hams-heading);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.08;
}

.hams-career-apply-cta__card p:not(.hams-page-eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--hams-body);
  font-size: 18px;
  line-height: 1.72;
}

.hams-career-apply-cta__card .hams-btn {
  margin-top: 28px;
}

.hams-career-related {
  background: #fff;
}

@media (max-width: 1100px) {
  .hams-career-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hams-career-detail__grid {
    grid-template-columns: 1fr;
  }

  .hams-career-detail__sidebar {
    position: static;
  }
}

@media (max-width: 720px) {
  .hams-career-hero {
    min-height: 100vh;
  }

  .hams-career-overview__grid {
    grid-template-columns: 1fr;
  }

  .hams-career-detail__content,
  .hams-career-detail__sidebar,
  .hams-career-apply-cta__card {
    border-radius: 20px;
  }
}

/* ==================================================
OPEX COMPARISON PAGE
================================================== */
.hams-opex-page .hams-page-table td:last-child {
  color: var(--hams-green-dark);
  font-weight: 800;
}

/* ==================================================
EMI CALCULATOR PAGE
================================================== */
.hams-page-emi-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  border-radius: 20px;
  background: var(--hams-navy);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.hams-page-emi-result strong {
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1;
}

/* ==================================================
FAQS PAGE
================================================== */
.hams-faq-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
}

.hams-faq-item {
  overflow: hidden;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--hams-shadow-sm);
}

.hams-faq-question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 22px 24px;
  color: var(--hams-heading);
  font-size: clamp(18px, 1.3vw, 22px);
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
}

.hams-faq-question:focus-visible {
  outline: 3px solid rgba(0, 86, 210, 0.22);
  outline-offset: -5px;
}

.hams-faq-item__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--hams-primary-soft);
  color: var(--hams-primary-dark);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.hams-faq-item__question {
  min-width: 0;
}

.hams-faq-item__icon {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f3f7fb;
}

.hams-faq-item__icon::before,
.hams-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--hams-primary);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}

.hams-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.hams-faq-item.is-open .hams-faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.hams-faq-answer {
  overflow: hidden;
  padding: 0 24px 24px;
}

.hams-faq-answer p {
  margin: 0;
  color: var(--hams-body);
  font-size: 16px;
  line-height: 1.75;
}

.hams-faq-answer p + p {
  margin-top: 14px;
}

@media (max-width: 1100px) {
  .hams-page-card-grid--4,
  .hams-service-process,
  .hams-contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hams-service-center-grid,
  .hams-page-card-grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hams-page-split,
  .hams-two-column-form,
  .hams-service-video,
  .hams-contact-form-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hams-page-hero,
  .hams-page-hero--short {
    min-height: 100vh;
  }

  .hams-page-hero__content {
    padding: 106px 0 58px;
  }

  .hams-page-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hams-page-actions,
  .hams-page-form,
  .hams-cf7-form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hams-page-actions .hams-btn,
  .hams-page-form .hams-btn,
  .hams-cf7-form .wpcf7-submit {
    width: 100%;
  }

  .hams-faq-question {
    grid-template-columns: 1fr auto;
    align-items: start;
    padding: 20px;
  }

  .hams-faq-item__category {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .hams-faq-answer {
    padding: 0 20px 22px;
  }

  .hams-service-center-grid,
  .hams-service-process,
  .hams-contact-cards,
  .hams-page-card-grid,
  .hams-page-card-grid--3,
  .hams-page-card-grid--4 {
    grid-template-columns: 1fr;
  }

  .hams-page-map:not(.hams-page-map--iframe) {
    min-height: 360px;
  }

  .hams-nepal-charger-card {
    border-radius: 20px;
  }

  .hams-nepal-map-wrap {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 8px;
  }

  .hams-nepal-map-stage {
    transform: translateY(28px);
  }

  .hams-charger-map-note {
    margin-top: 42px;
    padding: 0 8px;
  }
}

/* ==================================================
VEHICLE LISTING PAGE - HERO
================================================== */
.hams-vehicle-listing-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(67, 190, 249, 0.24),
      transparent 32%
    ),
    linear-gradient(135deg, var(--hams-navy), var(--hams-primary-dark));
}

.hams-vehicle-listing-hero__image,
.hams-vehicle-listing-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hams-vehicle-listing-hero__image {
  object-fit: cover;
}

.hams-vehicle-listing-hero__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 42%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

.hams-vehicle-listing-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding: 120px 0 74px;
  text-align: center;
}

.hams-vehicle-listing-eyebrow,
.hams-vehicle-detail-eyebrow {
  margin: 0 0 14px;
  color: var(--hams-cyan);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.hams-vehicle-listing-hero h1 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

.hams-vehicle-listing-hero p:not(.hams-vehicle-listing-eyebrow) {
  max-width: 820px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 600;
  line-height: 1.62;
}

.hams-vehicle-listing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

/* ==================================================
VEHICLE LISTING PAGE - BRAND FILTER
================================================== */
.hams-vehicle-brand-filter {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid rgba(221, 230, 240, 0.85);
}

.hams-vehicle-brand-filter--inner {
  margin: -16px 0 42px;
  padding: 0;
  background: transparent;
  border-bottom: 0;
}

.hams-vehicle-brand-filter__scroll {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: none;
}

.hams-vehicle-brand-filter__scroll::-webkit-scrollbar {
  display: none;
}

.hams-vehicle-brand-filter__pill {
  display: inline-flex;
  min-height: 46px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 999px;
  background: #f7fafc;
  color: var(--hams-heading);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(7, 27, 51, 0.05);
}

.hams-vehicle-brand-filter__pill:hover,
.hams-vehicle-brand-filter__pill.is-active {
  border-color: var(--hams-primary);
  background: var(--hams-primary);
  color: #fff;
}

/* ==================================================
VEHICLE LISTING PAGE - VEHICLE GRID
================================================== */
.hams-vehicle-grid-section {
  scroll-margin-top: 96px;
  padding: clamp(76px, 7vw, 112px) 0;
  background: linear-gradient(180deg, #fff 0%, var(--hams-soft-bg) 100%);
}

.hams-vehicle-grid-section__heading,
.hams-vehicle-detail-heading {
  max-width: 840px;
  margin: 0 auto 44px;
  text-align: center;
}

.hams-vehicle-grid-section__heading h2,
.hams-vehicle-detail-heading h2,
.hams-vehicle-detail-emi h2,
.hams-vehicle-related__heading h2 {
  margin: 0;
  color: #101820;
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.hams-vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.hams-vehicle-card-premium {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 240, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(7, 27, 51, 0.1);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.hams-vehicle-card-premium:hover {
  transform: translateY(-7px);
  border-color: rgba(11, 94, 215, 0.24);
  box-shadow: 0 34px 86px rgba(7, 27, 51, 0.16);
}

.hams-vehicle-card-premium__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--hams-primary-soft);
}

.hams-vehicle-card-premium__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hams-vehicle-card-premium:hover .hams-vehicle-card-premium__media img {
  transform: scale(1.045);
}

.hams-vehicle-card-premium__fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(67, 190, 249, 0.26),
      transparent 32%
    ),
    linear-gradient(135deg, var(--hams-primary-dark), var(--hams-navy));
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}

.hams-vehicle-card-premium__body {
  display: grid;
  padding: 24px;
}

.hams-vehicle-card-premium__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.hams-vehicle-card-premium__badges span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--hams-primary-soft);
  color: var(--hams-primary-dark);
  font-size: 14px;
  font-weight: 900;
}

.hams-vehicle-card-premium h3 {
  margin: 0;
  font-size: clamp(23px, 1.8vw, 30px);
  line-height: 1.12;
}

.hams-vehicle-card-premium h3 a {
  color: var(--hams-heading);
}

.hams-vehicle-card-premium__tagline {
  margin: 14px 0 0;
  color: var(--hams-body);
  font-size: 16px;
  line-height: 1.68;
}

.hams-vehicle-card-premium__price {
  margin-top: 18px;
}

.hams-vehicle-card-premium__price strong {
  display: block;
  color: var(--hams-primary-dark);
  font-size: 22px;
  line-height: 1.1;
}

.hams-vehicle-card-premium__price span {
  display: block;
  margin-top: 6px;
  color: var(--hams-muted);
  font-size: 14px;
  line-height: 1.45;
}

.hams-vehicle-card-premium__specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.hams-vehicle-card-premium__specs div {
  padding: 12px;
  border-radius: 15px;
  background: #f7fafc;
}

.hams-vehicle-card-premium__specs span,
.hams-vehicle-card-premium__specs strong {
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.hams-vehicle-card-premium__specs span {
  color: var(--hams-muted);
  font-weight: 800;
}

.hams-vehicle-card-premium__specs strong {
  margin-top: 4px;
  color: var(--hams-heading);
  font-weight: 900;
}

.hams-vehicle-card-premium__button {
  width: 100%;
  margin-top: 22px;
}

.hams-vehicle-empty {
  padding: 44px;
  border: 1px solid var(--hams-border);
  border-radius: 24px;
  background: #fff;
  color: var(--hams-body);
  font-size: 18px;
  text-align: center;
  box-shadow: var(--hams-shadow-sm);
}

/* ==================================================
VEHICLE DETAIL PAGE - HERO
================================================== */
.hams-vehicle-detail-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(67, 190, 249, 0.24),
      transparent 32%
    ),
    linear-gradient(135deg, var(--hams-navy), var(--hams-primary-dark));
}

.hams-vehicle-detail-hero__image,
.hams-vehicle-detail-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hams-vehicle-detail-hero__image {
  object-fit: cover;
}

.hams-vehicle-detail-hero__overlay {
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 42%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.42) 100%
    );
}

.hams-vehicle-detail-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: inherit;
  padding: 120px 0 120px;
  text-align: center;
}

.hams-vehicle-detail-hero h1 {
  max-width: 1040px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 900;
  line-height: 1.02;
}

.hams-vehicle-detail-hero p:not(.hams-vehicle-detail-eyebrow) {
  max-width: 760px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 600;
  line-height: 1.62;
}

.hams-vehicle-detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.hams-vehicle-summary-strip {
  position: relative;
  z-index: 3;
  margin-top: -68px;
  padding-bottom: 42px;
}

.hams-vehicle-summary-strip__card {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 28px;
  background: rgba(221, 230, 240, 0.9);
  box-shadow: 0 24px 72px rgba(7, 27, 51, 0.18);
}

.hams-vehicle-summary-strip__card div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.hams-vehicle-summary-strip__card span,
.hams-vehicle-summary-strip__card small {
  display: block;
  color: var(--hams-muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.hams-vehicle-summary-strip__card strong {
  display: block;
  margin-top: 8px;
  color: var(--hams-heading);
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.18;
}

.hams-vehicle-summary-strip__card small {
  margin-top: 6px;
  font-weight: 600;
}

/* ==================================================
VEHICLE DETAIL PAGE - QUICK SPECS
================================================== */
.hams-vehicle-quick-specs,
.hams-vehicle-spec-config,
.hams-vehicle-gallery,
.hams-vehicle-detail-emi,
.hams-vehicle-related {
  padding: clamp(76px, 7vw, 112px) 0;
  background: #fff;
}

.hams-vehicle-spec-config,
.hams-vehicle-detail-emi {
  background: var(--hams-soft-bg);
}

.hams-vehicle-quick-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hams-vehicle-quick-specs__card {
  padding: 24px;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, rgba(234, 243, 255, 0.48));
  box-shadow: var(--hams-shadow-sm);
}

.hams-vehicle-quick-specs__card span {
  display: block;
  color: var(--hams-muted);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hams-vehicle-quick-specs__card strong {
  display: block;
  margin-top: 12px;
  color: var(--hams-heading);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.1;
}

/* ==================================================
VEHICLE DETAIL PAGE - BROCHURE SPECIFICATION TABLE
================================================== */
.hams-vehicle-spec-config__heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.hams-vehicle-spec-config__heading p:not(.hams-vehicle-detail-eyebrow) {
  margin: 16px auto 0;
  color: var(--hams-body);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.7;
}

.hams-vehicle-spec-config__card {
  overflow: hidden;
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(7, 27, 51, 0.12);
}

.hams-vehicle-spec-config__scroll {
  overflow-x: auto;
}

.hams-vehicle-spec-table {
  width: 100%;
  min-width: 780px;
  border-spacing: 0;
  color: var(--hams-heading);
}

.hams-vehicle-spec-table th,
.hams-vehicle-spec-table td {
  padding: 19px 22px;
  border-bottom: 1px solid rgba(221, 230, 240, 0.95);
  text-align: left;
  vertical-align: top;
  font-size: 16px;
  line-height: 1.55;
}

.hams-vehicle-spec-table thead th {
  background: linear-gradient(
    135deg,
    var(--hams-navy),
    var(--hams-primary-dark)
  );
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hams-vehicle-spec-table tbody tr:nth-child(even) td {
  background: #f8fbff;
}

.hams-vehicle-spec-table tbody tr:last-child th,
.hams-vehicle-spec-table tbody tr:last-child td {
  border-bottom: 0;
}

.hams-vehicle-spec-table td:first-of-type {
  width: 32%;
  color: var(--hams-muted);
  font-weight: 900;
}

.hams-vehicle-spec-table__group {
  width: 24%;
  background: linear-gradient(180deg, #eef7ff, #f7fbff);
  color: var(--hams-primary-dark);
  font-weight: 900;
}

/* ==================================================
VEHICLE DETAIL PAGE - IMAGE GALLERY
================================================== */
.hams-vehicle-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hams-vehicle-gallery__item {
  display: block;
  overflow: hidden;
  border-radius: 24px;
  background: var(--hams-primary-soft);
  box-shadow: var(--hams-shadow-sm);
  aspect-ratio: 4 / 3;
}

.hams-vehicle-gallery__item.is-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.hams-vehicle-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.hams-vehicle-gallery__item:hover img {
  transform: scale(1.045);
}

/* ==================================================
VEHICLE DETAIL PAGE - EMI CALCULATOR
================================================== */
.hams-vehicle-detail-emi__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(460px, 1.15fr);
  align-items: start;
  gap: clamp(34px, 5vw, 78px);
}

.hams-vehicle-detail-emi__layout p:not(.hams-vehicle-detail-eyebrow),
.hams-vehicle-detail-emi .hams-emi-copy p:not(.hams-vehicle-detail-eyebrow) {
  color: var(--hams-body);
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.75;
}

.hams-vehicle-detail-emi__card {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(221, 230, 240, 0.95);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--hams-shadow-md);
}

/* Consistent non-hero section heading scale. */
.hams-landing-heading h2,
.hams-story-band h2,
.hams-ref-section h2,
.hams-home-about__content h2,
.hams-about-intro .hams-about-copy h2,
.hams-about-corp .hams-about-heading h2,
.hams-about-brands .hams-about-heading h2,
.hams-about-cta .hams-about-cta__card h2,
.hams-about-mvg__header h2,
.hams-page-section__heading h2,
.hams-page-split h2,
.hams-two-column-form h2,
.hams-location-panel h2,
.hams-page-cta-card h2,
.hams-service-video__content h2,
.hams-vehicle-grid-section__heading h2,
.hams-vehicle-detail-heading h2,
.hams-vehicle-detail-emi h2,
.hams-vehicle-related__heading h2,
.hams-testimonials .hams-landing-heading h2,
.hams-section-title,
.hams-about-customers h2 {
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 600;
  line-height: 1.05;
}

/* ==================================================
VEHICLE DETAIL PAGE - RELATED VEHICLES
================================================== */
.hams-vehicle-related__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

.hams-vehicle-related__heading > div {
  max-width: 760px;
}

.hams-vehicle-grid--related {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1100px) {
  .hams-vehicle-grid,
  .hams-vehicle-grid--related,
  .hams-vehicle-quick-specs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hams-vehicle-summary-strip__card {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hams-vehicle-detail-emi__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hams-vehicle-listing-hero,
  .hams-vehicle-detail-hero {
    min-height: 100vh;
  }

  .hams-vehicle-listing-hero h1,
  .hams-vehicle-detail-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .hams-vehicle-listing-hero__actions,
  .hams-vehicle-detail-hero__actions,
  .hams-vehicle-related__heading {
    display: grid;
    justify-items: stretch;
  }

  .hams-vehicle-listing-hero__actions .hams-btn,
  .hams-vehicle-detail-hero__actions .hams-btn,
  .hams-vehicle-related__heading .hams-btn {
    width: 100%;
  }

  .hams-vehicle-brand-filter__scroll {
    justify-content: flex-start;
  }

  .hams-vehicle-grid,
  .hams-vehicle-grid--related,
  .hams-vehicle-quick-specs__grid,
  .hams-vehicle-summary-strip__card,
  .hams-vehicle-card-premium__specs,
  .hams-vehicle-gallery__grid {
    grid-template-columns: 1fr;
  }

  .hams-vehicle-spec-config__card {
    border-radius: 24px;
  }

  .hams-vehicle-spec-table {
    min-width: 680px;
  }

  .hams-vehicle-spec-table th,
  .hams-vehicle-spec-table td {
    padding: 16px;
  }

  .hams-vehicle-gallery__item.is-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .hams-vehicle-summary-strip {
    margin-top: -42px;
  }
}

/* ==================================================
   WARRANTY INFO PAGE
================================================== */

.hams-warranty-hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  overflow: hidden;
  background: #071b33;
}

.hams-warranty-hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.58) 0%,
      rgba(0, 0, 0, 0.34) 42%,
      rgba(0, 0, 0, 0.66) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.12) 52%,
      rgba(0, 0, 0, 0.42) 100%
    ),
    url("../images/final-hams-showroom-optimized.webp") center / cover no-repeat;
}

.hams-warranty-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 100vh;
  padding: 120px 0 72px;
  text-align: center;
}

.hams-warranty-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-family: var(--hams-font-heading);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

.hams-warranty-hero p:not(.hams-page-eyebrow) {
  max-width: 760px;
  margin: 28px auto 0;
  color: #fff;
  font-size: clamp(17px, 1.35vw, 22px);
  font-weight: 600;
  line-height: 1.55;
}

.hams-warranty-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.hams-warranty-section {
  padding: clamp(76px, 7vw, 112px) 0;
  background: #fff;
}

.hams-warranty-section--soft {
  background:
    radial-gradient(
      circle at 10% 20%,
      rgba(11, 94, 215, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at 92% 78%,
      rgba(34, 181, 115, 0.1),
      transparent 28%
    ),
    #f7fafc;
}

.hams-warranty-heading {
  max-width: 820px;
  margin: 0 auto 56px;
  text-align: center;
}

.hams-warranty-heading h2,
.hams-warranty-components__copy h2 {
  margin: 0;
  color: #101820;
  font-family: var(--hams-font-heading);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

.hams-warranty-heading > p:not(.hams-page-eyebrow),
.hams-warranty-components__copy > p:not(.hams-page-eyebrow),
.hams-warranty-note p {
  color: #4f5965;
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.76;
}

.hams-warranty-heading > p:not(.hams-page-eyebrow) {
  max-width: 620px;
  margin: 22px auto 0;
}

.hams-warranty-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.hams-warranty-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 32px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(245, 248, 252, 0.92)
    ),
    #fff;
  box-shadow: 0 24px 70px rgba(7, 27, 51, 0.1);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.hams-warranty-card::before {
  content: "";
  position: absolute;
  top: -76px;
  right: -76px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(11, 94, 215, 0.08);
  transition:
    transform 0.35s ease,
    background-color 0.35s ease;
}

.hams-warranty-card:nth-child(2)::before {
  background: rgba(34, 181, 115, 0.1);
}

.hams-warranty-card:nth-child(3)::before {
  background: rgba(67, 190, 249, 0.1);
}

.hams-warranty-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 94, 215, 0.24);
  box-shadow: 0 34px 90px rgba(7, 27, 51, 0.16);
}

.hams-warranty-card:hover::before {
  transform: scale(1.18);
}

.hams-warranty-card__number {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 46px;
  color: rgba(10, 31, 61, 0.12);
  font-family: var(--hams-font-heading);
  font-size: clamp(64px, 6vw, 104px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: 0;
}

.hams-warranty-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #101820;
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
}

.hams-warranty-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  color: var(--hams-primary-dark);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 900;
  line-height: 1.1;
}

.hams-warranty-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #586473;
  font-size: 16px;
  line-height: 1.7;
}

.hams-warranty-components {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 82px);
}

.hams-warranty-components__copy {
  max-width: 620px;
}

.hams-warranty-components__copy > p:not(.hams-page-eyebrow) {
  margin-top: 24px;
}

.hams-warranty-components__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.hams-warranty-component-item {
  position: relative;
  display: flex;
  min-height: 132px;
  align-items: center;
  gap: 16px;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 24px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96),
      rgba(247, 250, 252, 0.96)
    ),
    #fff;
  box-shadow: 0 16px 36px rgba(7, 27, 51, 0.08);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

.hams-warranty-component-item:hover {
  transform: translateY(-5px);
  border-color: rgba(11, 94, 215, 0.22);
  box-shadow: 0 24px 60px rgba(7, 27, 51, 0.12);
}

.hams-warranty-component-item span {
  display: inline-flex;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(11, 94, 215, 0.12),
    rgba(34, 181, 115, 0.16)
  );
  color: var(--hams-primary-dark);
  font-size: 16px;
  font-weight: 900;
}

.hams-warranty-component-item strong {
  color: #101820;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.hams-warranty-note {
  display: flex;
  flex-direction: column;
  grid-template-columns: minmax(0, 1fr) auto;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 36px;
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(221, 230, 240, 0.9);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 86% 16%,
      rgba(34, 181, 115, 0.18),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      rgba(234, 243, 255, 0.96),
      rgba(255, 255, 255, 0.98)
    );
  box-shadow: 0 22px 54px rgba(7, 27, 51, 0.12);
}
.hams-warranty-note h2 {
  text-align: center;
  margin: 0;
  color: #101820;
  font-family: var(--hams-font-heading);
  font-size: clamp(34px, 3.8vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}
.hams-warranty-note p {
  text-align: center;
  max-width: 820px;
  margin: 22px auto 0;
}

@media (max-width: 1024px) {
  .hams-warranty-grid,
  .hams-warranty-components,
  .hams-warranty-note {
    grid-template-columns: 1fr;
  }

  .hams-warranty-section {
    padding: 90px 0;
  }

  .hams-warranty-card {
    min-height: 300px;
  }

  .hams-warranty-card__number {
    margin-bottom: 42px;
  }
}

@media (max-width: 640px) {
  .hams-warranty-hero,
  .hams-warranty-hero__content {
    min-height: 100vh;
  }

  .hams-warranty-hero h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .hams-warranty-hero__actions {
    display: grid;
    width: 100%;
  }

  .hams-warranty-hero__actions .hams-btn {
    width: 100%;
  }

  .hams-warranty-section {
    padding: 70px 0;
  }

  .hams-warranty-heading {
    margin-bottom: 38px;
  }

  .hams-warranty-grid,
  .hams-warranty-components__list {
    grid-template-columns: 1fr;
  }

  .hams-warranty-card {
    min-height: 280px;
    padding: 26px;
    border-radius: 26px;
  }

  .hams-warranty-card__number {
    margin-bottom: 34px;
    font-size: 72px;
  }

  .hams-warranty-note {
    padding: 28px;
    border-radius: 26px;
  }

  .hams-warranty-note .hams-btn {
    width: 100%;
  }
}

/* EYEBROW ALIGNMENT UTILITIES */
.hams-section .hams-eyebrow,
.hams-landing-section .hams-eyebrow,
.hams-testimonials .hams-landing-heading .hams-eyebrow,
.hams-ref-section .hams-ref-kicker,
.hams-home-about__eyebrow,
.hams-about-intro .hams-about-eyebrow,
.hams-about-corp .hams-about-eyebrow,
.hams-about-brands .hams-about-eyebrow,
.hams-about-customers__heading .hams-about-eyebrow,
.hams-about-mobility__copy .hams-eyebrow,
.hams-about-mvg__header .hams-eyebrow,
.hams-page-section .hams-page-eyebrow,
.hams-page-section__heading .hams-page-eyebrow,
.hams-page-split .hams-page-eyebrow,
.hams-two-column-form .hams-page-eyebrow,
.hams-location-panel .hams-page-eyebrow,
.hams-service-video__content .hams-page-eyebrow,
.hams-vehicle-grid-section .hams-vehicle-listing-eyebrow,
.hams-vehicle-quick-specs .hams-vehicle-detail-eyebrow,
.hams-vehicle-spec-config .hams-vehicle-detail-eyebrow,
.hams-vehicle-gallery .hams-vehicle-detail-eyebrow,
.hams-vehicle-detail-emi .hams-vehicle-detail-eyebrow,
.hams-vehicle-related .hams-vehicle-detail-eyebrow,
.hams-warranty-section .hams-page-eyebrow {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin: 0 0 34px;
  padding: 0 0 16px;
  color: #34485d;
  font-family: var(--hams-font-body);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}

.hams-section .hams-eyebrow::after,
.hams-landing-section .hams-eyebrow::after,
.hams-testimonials .hams-landing-heading .hams-eyebrow::after,
.hams-ref-section .hams-ref-kicker::after,
.hams-home-about__eyebrow::after,
.hams-about-intro .hams-about-eyebrow::after,
.hams-about-corp .hams-about-eyebrow::after,
.hams-about-brands .hams-about-eyebrow::after,
.hams-about-customers__heading .hams-about-eyebrow::after,
.hams-about-mobility__copy .hams-eyebrow::after,
.hams-about-mvg__header .hams-eyebrow::after,
.hams-page-section .hams-page-eyebrow::after,
.hams-page-section__heading .hams-page-eyebrow::after,
.hams-page-split .hams-page-eyebrow::after,
.hams-two-column-form .hams-page-eyebrow::after,
.hams-location-panel .hams-page-eyebrow::after,
.hams-service-video__content .hams-page-eyebrow::after,
.hams-vehicle-grid-section .hams-vehicle-listing-eyebrow::after,
.hams-vehicle-quick-specs .hams-vehicle-detail-eyebrow::after,
.hams-vehicle-spec-config .hams-vehicle-detail-eyebrow::after,
.hams-vehicle-gallery .hams-vehicle-detail-eyebrow::after,
.hams-vehicle-detail-emi .hams-vehicle-detail-eyebrow::after,
.hams-vehicle-related .hams-vehicle-detail-eyebrow::after,
.hams-warranty-section .hams-page-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  border-radius: 999px;
  background: var(--hams-primary);
  transform: none;
}

.hams-eyebrow.hams-eyebrow--center,
.hams-landing-section .hams-eyebrow.hams-eyebrow--center,
.hams-page-eyebrow.hams-page-eyebrow--center,
.hams-about-eyebrow.hams-about-eyebrow--center,
.hams-landing-heading .hams-eyebrow,
.hams-ref-center .hams-ref-kicker,
.hams-page-section__heading .hams-page-eyebrow,
.hams-about-heading .hams-about-eyebrow,
.hams-about-customers__heading .hams-about-eyebrow,
.hams-about-mvg__header .hams-eyebrow,
.hams-vehicle-grid-section__heading .hams-vehicle-listing-eyebrow,
.hams-vehicle-related .hams-vehicle-detail-eyebrow,
.hams-warranty-heading .hams-page-eyebrow {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hams-eyebrow.hams-eyebrow--center::after,
.hams-landing-section .hams-eyebrow.hams-eyebrow--center::after,
.hams-page-eyebrow.hams-page-eyebrow--center::after,
.hams-about-eyebrow.hams-about-eyebrow--center::after,
.hams-landing-heading .hams-eyebrow::after,
.hams-ref-center .hams-ref-kicker::after,
.hams-page-section__heading .hams-page-eyebrow::after,
.hams-about-heading .hams-about-eyebrow::after,
.hams-about-customers__heading .hams-about-eyebrow::after,
.hams-about-mvg__header .hams-eyebrow::after,
.hams-vehicle-grid-section__heading .hams-vehicle-listing-eyebrow::after,
.hams-vehicle-related .hams-vehicle-detail-eyebrow::after,
.hams-warranty-heading .hams-page-eyebrow::after {
  left: 50%;
  transform: translateX(-50%);
}

.hams-eyebrow.hams-eyebrow--left,
.hams-landing-section .hams-eyebrow.hams-eyebrow--left,
.hams-page-eyebrow.hams-page-eyebrow--left,
.hams-about-eyebrow.hams-about-eyebrow--left,
.hams-page-split .hams-page-eyebrow,
.hams-two-column-form .hams-page-eyebrow,
.hams-location-panel .hams-page-eyebrow,
.hams-service-video__content .hams-page-eyebrow,
.hams-about-intro .hams-about-eyebrow,
.hams-about-mobility__copy .hams-eyebrow,
.hams-warranty-components__copy .hams-page-eyebrow {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.hams-eyebrow.hams-eyebrow--left::after,
.hams-landing-section .hams-eyebrow.hams-eyebrow--left::after,
.hams-page-eyebrow.hams-page-eyebrow--left::after,
.hams-about-eyebrow.hams-about-eyebrow--left::after,
.hams-page-split .hams-page-eyebrow::after,
.hams-two-column-form .hams-page-eyebrow::after,
.hams-location-panel .hams-page-eyebrow::after,
.hams-service-video__content .hams-page-eyebrow::after,
.hams-about-intro .hams-about-eyebrow::after,
.hams-about-mobility__copy .hams-eyebrow::after,
.hams-warranty-components__copy .hams-page-eyebrow::after {
  left: 0;
  transform: none;
}

.hams-dealer-note {
  margin-top: 34px;
  padding: 22px 26px;
  border: 1px solid rgba(11, 94, 215, 0.14);
  border-radius: 22px;
  background: rgba(234, 243, 255, 0.72);
}

.hams-dealer-note p {
  margin: 0;
  color: #4f5965;
  font-size: 15.5px;
  line-height: 1.7;
}

.hams-dealer-note strong {
  color: #101820;
  font-weight: 900;
}
