/* ============================================================
   SHARED VARIABLES
   ============================================================ */
:root {
  --h-blue: #00349d;
  --h-blue-dark: #002a80;
  --h-red: #dc2626;
  --h-red-dark: #b91c1c;
  --h-trans: 150ms ease;
  --h-trans-slow: 300ms ease;
  --h-r: 0.75rem;
  --h-r-lg: 1rem;
  --h-r-xl: 1.5rem;
  --h-r-2xl: 2rem;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .home-hero {
    min-height: 650px;
  }
}

.home-hero__bg {
  position: absolute;
  inset: 0;
}
.home-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.home-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgb(0 52 157 / 0.95),
    rgb(17 24 39 / 0.85),
    rgb(0 0 0 / 0.9)
  );
}

.home-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem 2rem;
}
@media (min-width: 640px) {
  .home-hero__inner {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-hero__inner {
    padding: 3rem 2rem;
  }
}

.home-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .home-hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Badge pill */
.home-hero__badge {
  display: inline-block;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.home-hero__badge span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.home-hero__heading {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .home-hero__heading {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .home-hero__heading {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .home-hero__heading {
    font-size: 3.75rem;
  }
}

.home-hero__tagline {
  font-size: 1rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .home-hero__tagline {
    font-size: 1.125rem;
  }
}

.home-hero__desc {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .home-hero__desc {
    font-size: 1rem;
  }
}

.home-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .home-hero__actions {
    flex-direction: row;
  }
}

.home-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--h-r);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
  transition:
    background-color var(--h-trans),
    color var(--h-trans),
    box-shadow var(--h-trans),
    transform var(--h-trans);
}
.home-hero__btn:hover {
  transform: translateY(-4px);
}

.home-hero__btn--red {
  background-color: var(--h-red);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}
.home-hero__btn--red:hover {
  background-color: var(--h-red-dark);
  box-shadow: 0 20px 25px -5px rgb(220 38 38 / 0.5);
}
.home-hero__btn--red:hover .home-hero__btn-icon {
  transform: translateX(4px);
}

.home-hero__btn--outline {
  background-color: rgb(255 255 255 / 0.1);
  color: #ffffff;
  border: 2px solid rgb(255 255 255 / 0.3);
  backdrop-filter: blur(24px);
}
.home-hero__btn--outline:hover {
  background-color: #ffffff;
  color: #111827;
}

.home-hero__btn-icon {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--h-trans);
}
.home-hero__btn-icon--left {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* Badge cards */
.home-hero__badges {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 32rem;
}
@media (min-width: 640px) {
  .home-hero__badges {
    display: grid;
  }
}

.home-hero__badge-card {
  position: relative;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  text-align: center;
  border: 2px solid;
  transition: transform var(--h-trans);
  cursor: default;
}
.home-hero__badge-card:hover {
  transform: scale(1.05);
}

.home-hero__badge-card--green {
  background: linear-gradient(to bottom right, #f0fdf4, #dcfce7);
  border-color: #22c55e;
}
.home-hero__badge-card--blue {
  background: linear-gradient(to bottom right, #eff6ff, #dbeafe);
  border-color: #3b82f6;
}
.home-hero__badge-card--purple {
  background: linear-gradient(to bottom right, #faf5ff, #ede9fe);
  border-color: #a855f7;
}
.home-hero__badge-card--wide {
  grid-column: span 2;
}
@media (min-width: 640px) {
  .home-hero__badge-card--wide {
    grid-column: span 1;
  }
}

.home-hero__badge-dot {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) {
  .home-hero__badge-dot {
    width: 32px;
    height: 32px;
    top: -12px;
    right: -12px;
  }
}
.home-hero__badge-dot--green {
  background-color: #22c55e;
}
.home-hero__badge-dot--blue {
  background-color: #3b82f6;
}
.home-hero__badge-dot--purple {
  background-color: #a855f7;
}

.home-hero__badge-dot-icon {
  width: 12px;
  height: 12px;
  color: #ffffff;
}
@media (min-width: 640px) {
  .home-hero__badge-dot-icon {
    width: 16px;
    height: 16px;
  }
}

.home-hero__badge-value {
  font-size: 1.125rem;
  font-weight: 900;
  margin-bottom: 2px;
}
.home-hero__badge-card--green .home-hero__badge-value {
  color: #14532d;
}
.home-hero__badge-card--blue .home-hero__badge-value {
  color: #1e3a8a;
  font-size: 0.875rem;
  line-height: 1.25;
}
.home-hero__badge-card--purple .home-hero__badge-value {
  color: #581c87;
}

.home-hero__badge-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.home-hero__badge-card--green .home-hero__badge-label {
  color: #15803d;
}
.home-hero__badge-card--blue .home-hero__badge-label {
  color: #1d4ed8;
}
.home-hero__badge-card--purple .home-hero__badge-label {
  color: #7e22ce;
}

/* Quote Form */
.home-hero__form-wrap {
  width: 100%;
  max-width: 28rem;
  margin-left: auto;
}
.home-hero__form-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
  overflow: hidden;
}

.home-hero__form-header {
  background: linear-gradient(to right, var(--h-red), var(--h-red-dark));
  color: #ffffff;
  text-align: center;
  padding: 1rem 1.5rem;
}
.home-hero__form-title {
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 4px;
}
.home-hero__form-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
}

.home-hero__form-rating {
  background-color: #f9fafb;
  padding: 0.75rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}
.home-hero__stars {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 4px;
}
.home-hero__star {
  width: 16px;
  height: 16px;
  fill: #facc15;
  color: #facc15;
}
.home-hero__rating-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #111827;
}

.home-hero__form {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.home-hero__input {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #111827;
  background: #ffffff;
  outline: none;
  transition:
    border-color var(--h-trans),
    box-shadow var(--h-trans);
}
.home-hero__input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--h-blue);
}
.home-hero__select {
  cursor: pointer;
}
.home-hero__textarea {
  resize: none;
}

.home-hero__form-submit {
  width: 100%;
  background-color: var(--h-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition:
    background-color var(--h-trans),
    box-shadow var(--h-trans);
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}
.home-hero__form-submit:hover {
  background-color: var(--h-red-dark);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

.home-hero__form-note {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

/* ============================================================
   BRANDS MARQUEE
   ============================================================ */
.brands-marquee {
  padding-block: 3rem;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.brands-marquee__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .brands-marquee__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .brands-marquee__container {
    padding-inline: 2rem;
  }
}

.brands-marquee__header {
  text-align: center;
  margin-bottom: 2rem;
}
.brands-marquee__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--h-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.brands-marquee__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin: 0;
}
@media (min-width: 1024px) {
  .brands-marquee__heading {
    font-size: 2.25rem;
  }
}

.brands-marquee__track-wrap {
  overflow: hidden;
}

.brands-marquee__track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: brands-scroll 20s linear infinite;
}
@media (min-width: 1024px) {
  .brands-marquee__track {
    gap: 4rem;
  }
}
.brands-marquee__track:hover {
  animation-play-state: paused;
}

@keyframes brands-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.brands-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 64px;
  transition: transform var(--h-trans-slow);
}
@media (min-width: 1024px) {
  .brands-marquee__item {
    min-width: 200px;
  }
}
.brands-marquee__item:hover {
  transform: scale(1.1);
}
.brands-marquee__logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   COMPLETE SOLUTION
   ============================================================ */
.solution {
  padding-block: 3rem;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .solution {
    padding-block: 4rem;
  }
}

.solution__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .solution__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .solution__container {
    padding-inline: 2rem;
  }
}

.solution__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.solution__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--h-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.solution__heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .solution__heading {
    font-size: 2.25rem;
  }
}
.solution__subheading {
  font-size: 1rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
  line-height: 1.625;
}

.solution__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .solution__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.solution__card {
  position: relative;
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--h-r-xl);
  border: 2px solid #e5e7eb;
  transition:
    border-color var(--h-trans-slow),
    box-shadow var(--h-trans-slow);
}
.solution__card:hover {
  border-color: var(--h-blue);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}
.solution__card:hover .solution__card-icon {
  transform: scale(1.1);
}

.solution__card-tag {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background-color: var(--h-red);
  color: #ffffff;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
}

.solution__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
  transition: transform var(--h-trans);
}
.solution__card-icon--blue {
  background: linear-gradient(to bottom right, #3b82f6, var(--h-blue));
}
.solution__card-icon--green {
  background: linear-gradient(to bottom right, #22c55e, #15803d);
}
.solution__card-icon--purple {
  background: linear-gradient(to bottom right, #a855f7, #7e22ce);
}
.solution__card-icon-svg {
  width: 32px;
  height: 32px;
  color: #ffffff;
}

.solution__card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.solution__card-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.solution__card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f3f4f6;
}
.solution__card-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.solution__check {
  width: 20px;
  height: 20px;
  color: #16a34a;
  flex-shrink: 0;
  margin-top: 2px;
}
.solution__card-item span {
  font-size: 0.875rem;
  color: #374151;
  font-weight: 500;
}

/* ============================================================
   HOME PRODUCTS
   ============================================================ */
.home-products {
  padding-block: 3rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb, #ffffff);
}
@media (min-width: 1024px) {
  .home-products {
    padding-block: 5rem;
  }
}

.home-products__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .home-products__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-products__container {
    padding-inline: 2rem;
  }
}

.home-products__header {
  text-align: center;
  margin-bottom: 3rem;
}
.home-products__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--h-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.home-products__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .home-products__heading {
    font-size: 3rem;
  }
}
.home-products__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

.home-products__collections-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.home-products__collections-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .home-products__collections-title {
    font-size: 1.5rem;
  }
}
.home-products__collections-line {
  flex: 1;
  margin-left: 1.5rem;
  height: 4px;
  background: linear-gradient(to right, var(--h-blue), transparent);
  border-radius: 9999px;
}

.home-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .home-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home-products__card {
  display: block;
  text-decoration: none;
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition:
    box-shadow 500ms ease,
    transform 500ms ease;
  position: relative;
}
.home-products__card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.2);
  transform: translateY(-8px);
}
.home-products__card:hover .home-products__card-img {
  transform: scale(1.1);
}
.home-products__card:hover .home-products__card-icon-wrap {
  transform: scale(1.1);
}
.home-products__card:hover .home-products__link-icon {
  transform: translateX(8px);
}

.home-products__card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background-color: var(--h-red);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}

.home-products__card-media {
  position: relative;
  height: 192px;
  overflow: hidden;
}
.home-products__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  display: block;
}
.home-products__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 0.8),
    rgb(0 0 0 / 0.4),
    transparent
  );
}

.home-products__card-icon-wrap {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3);
  transition: transform var(--h-trans);
}
.home-products__card-icon-wrap--blue {
  background: linear-gradient(to bottom right, var(--h-blue), #1d4ed8);
}
.home-products__card-icon-wrap--blue2 {
  background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}
.home-products__card-icon-wrap--gray {
  background: linear-gradient(to bottom right, #4b5563, #1f2937);
}
.home-products__card-icon-wrap--green {
  background: linear-gradient(to bottom right, #22c55e, #15803d);
}
.home-products__card-icon-wrap--amber {
  background: linear-gradient(to bottom right, #d97706, #92400e);
}
.home-products__card-icon-wrap--red {
  background: linear-gradient(to bottom right, #ef4444, #b91c1c);
}
.home-products__card-icon-svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.home-products__card-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
}

.home-products__card-body {
  padding: 1.25rem;
}
.home-products__card-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1rem;
  min-height: 2.5rem;
}

.home-products__card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-products__card-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home-products__check {
  width: 14px;
  height: 14px;
  color: #16a34a;
  flex-shrink: 0;
}
.home-products__card-features span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
}

.home-products__card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--h-blue);
  font-weight: 700;
  font-size: 0.875rem;
  transition: gap var(--h-trans);
}
.home-products__link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--h-trans);
}

/* CTA box */
.home-products__cta {
  background: linear-gradient(to right, #f9fafb, #ffffff);
  border: 2px solid #e5e7eb;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.home-products__cta-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
}
.home-products__cta-desc {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}
.home-products__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .home-products__cta-actions {
    flex-direction: row;
  }
}

.home-products__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--h-r);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    box-shadow var(--h-trans),
    transform var(--h-trans),
    background-color var(--h-trans),
    color var(--h-trans);
}
.home-products__cta-btn:hover {
  transform: translateY(-4px);
}

.home-products__cta-btn--blue {
  background: linear-gradient(to right, var(--h-blue), #1d4ed8);
  color: #ffffff;
}
.home-products__cta-btn--blue:hover {
  box-shadow: 0 20px 25px -5px rgb(0 52 157 / 0.3);
}
.home-products__cta-btn--blue:hover .home-products__cta-btn-icon {
  transform: translateX(4px);
}

.home-products__cta-btn--outline {
  background-color: #ffffff;
  color: var(--h-blue);
  border: 2px solid var(--h-blue);
}
.home-products__cta-btn--outline:hover {
  background-color: var(--h-blue);
  color: #ffffff;
}

.home-products__cta-btn-icon {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--h-trans);
}
.home-products__cta-btn-icon--left {
  margin-left: 0;
  margin-right: 0.5rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hiw {
  padding-block: 3rem;
  background-color: #ffffff;
}
@media (min-width: 1024px) {
  .hiw {
    padding-block: 5rem;
  }
}

.hiw__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .hiw__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .hiw__container {
    padding-inline: 2rem;
  }
}

.hiw__header {
  text-align: center;
  margin-bottom: 3rem;
}
.hiw__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--h-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.hiw__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .hiw__heading {
    font-size: 3rem;
  }
}
.hiw__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

.hiw__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .hiw__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hiw__connector {
  display: none;
}
@media (min-width: 768px) {
  .hiw__connector {
    display: block;
    position: absolute;
    top: 4rem;
    left: 10%;
    right: 10%;
    height: 4px;
    background: linear-gradient(to right, var(--h-blue), #3b82f6, #22c55e);
    border-radius: 9999px;
    pointer-events: none;
  }
}

.hiw__step {
  position: relative;
}

.hiw__step-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hiw__step-icon {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2);
  position: relative;
  z-index: 10;
}
.hiw__step-icon--blue {
  background: linear-gradient(to bottom right, var(--h-blue), #1d4ed8);
}
.hiw__step-icon--blue2 {
  background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}
.hiw__step-icon--purple {
  background: linear-gradient(to bottom right, #a855f7, #7e22ce);
}
.hiw__step-icon--green {
  background: linear-gradient(to bottom right, #22c55e, #15803d);
}
.hiw__step-svg {
  width: 40px;
  height: 40px;
  color: #ffffff;
}

.hiw__step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 900;
  color: #111827;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
  line-height: 1;
}

.hiw__step-body {
  text-align: center;
}
.hiw__step-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
}
.hiw__step-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
}

.hiw__cta {
  text-align: center;
  margin-top: 3rem;
}
.hiw__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--h-red), var(--h-red-dark));
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: var(--h-r);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition:
    box-shadow var(--h-trans),
    transform var(--h-trans);
}
.hiw__cta-btn:hover {
  box-shadow: 0 20px 25px -5px rgb(220 38 38 / 0.3);
  transform: translateY(-4px);
}
.hiw__cta-btn:hover .hiw__cta-btn-icon {
  transform: translateX(4px);
}
.hiw__cta-btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--h-trans);
}

/* ============================================================
   HOME REVIEWS
   ============================================================ */
.home-reviews {
  padding-block: 4rem;
  background-color: #f9fafb;
}
@media (min-width: 1024px) {
  .home-reviews {
    padding-block: 6rem;
  }
}

.home-reviews__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .home-reviews__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-reviews__container {
    padding-inline: 2rem;
  }
}

.home-reviews__header {
  text-align: center;
  margin-bottom: 3rem;
}
.home-reviews__eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--h-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.home-reviews__heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .home-reviews__heading {
    font-size: 2.25rem;
  }
}
.home-reviews__subheading {
  font-size: 1rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

.home-reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .home-reviews__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.home-reviews__card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
  transition: box-shadow var(--h-trans-slow);
}
.home-reviews__card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.home-reviews__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.home-reviews__star {
  width: 20px;
  height: 20px;
  fill: #fb923c;
  color: #fb923c;
  flex-shrink: 0;
}

.home-reviews__text {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.625;
  font-style: italic;
  margin-bottom: 2rem;
  flex: 1;
}

.home-reviews__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.home-reviews__avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  color: #ffffff;
  font-size: 0.875rem;
}
.home-reviews__name {
  font-weight: 600;
  color: #111827;
  font-size: 0.9375rem;
}
.home-reviews__location {
  font-size: 0.875rem;
  color: #6b7280;
}

.home-reviews__cta {
  text-align: center;
}
.home-reviews__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #e7000b;
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
  transition:
    opacity var(--h-trans),
    transform var(--h-trans);
}
.home-reviews__cta-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.home-reviews__cta-icon {
  width: 20px;
  height: 20px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding-block: 4rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.contact__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .contact__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .contact__container {
    padding-inline: 2rem;
  }
}

.contact__header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--h-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.contact__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .contact__heading {
    font-size: 2.25rem;
  }
}

.contact__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact__info {
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  padding: 1.5rem;
  border-radius: var(--h-r-xl);
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.contact__info-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin: 0;
}

.contact__locations {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__location {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border-radius: var(--h-r);
  border: 1px solid #e5e7eb;
  transition:
    border-color var(--h-trans),
    box-shadow var(--h-trans);
}

.contact__location:hover {
  border-color: rgb(0 52 157 / 0.2);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.08);
}

.contact__location-icon {
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__location-icon--blue {
  background: linear-gradient(to bottom right, var(--h-blue), #1d4ed8);
}
.contact__location-icon--red {
  background: linear-gradient(to bottom right, var(--h-red), var(--h-red-dark));
}

.contact__location-svg {
  width: 20px;
  height: 20px;
  color: #ffffff;
}

.contact__location-name {
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  font-size: 0.9375rem;
}

.contact__location-addr {
  font-size: 0.875rem;
  color: #4b5563;
}

.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--h-r);
  color: #ffffff;
}

.contact__channel--blue {
  background: linear-gradient(to bottom right, var(--h-blue), #1d4ed8);
}
.contact__channel--red {
  background: linear-gradient(to bottom right, var(--h-red), var(--h-red-dark));
}

.contact__channel-icon {
  width: 48px;
  height: 48px;
  background-color: rgb(255 255 255 / 0.2);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__channel-svg {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.contact__channel-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.8);
  margin-bottom: 4px;
}

.contact__channel-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  word-break: break-word;
  line-height: 1.25;
  transition: opacity var(--h-trans);
}
.contact__channel-value:hover {
  opacity: 0.9;
}

.contact__form-wrap {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--h-r-xl);
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  min-width: 0;
}
@media (min-width: 1024px) {
  .contact__form-wrap {
    padding: 2rem;
  }
}

.contact__form-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.25rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .contact__form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.contact__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
}

.contact__input {
  width: 100%;
  padding: 0.625rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--h-r);
  font-size: 1rem;
  color: #111827;
  background-color: #ffffff;
  outline: none;
  transition:
    border-color var(--h-trans),
    box-shadow var(--h-trans);
}

.contact__input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--h-blue);
}

.contact__select {
  cursor: pointer;
}

.contact__textarea {
  resize: none;
}

.contact__submit {
  width: 100%;
  background: linear-gradient(to right, var(--h-blue), #1d4ed8);
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: var(--h-r);
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition:
    box-shadow var(--h-trans-slow),
    transform var(--h-trans);
}

.contact__submit:hover {
  box-shadow: 0 25px 50px -12px rgb(0 52 157 / 0.3);
  transform: translateY(-4px);
}

.contact__submit-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ============================================================
   HOME LOCATIONS
   ============================================================ */
.home-locs {
  padding-block: 3rem;
  background: linear-gradient(to bottom right, var(--h-blue), #1e3a8a);
  color: #ffffff;
}
@media (min-width: 1024px) {
  .home-locs {
    padding-block: 4rem;
  }
}

.home-locs__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .home-locs__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-locs__container {
    padding-inline: 2rem;
  }
}

.home-locs__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.home-locs__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 9999px;
}
.home-locs__badge-icon {
  width: 16px;
  height: 16px;
  color: #93c5fd;
}
.home-locs__badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.home-locs__heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (min-width: 1024px) {
  .home-locs__heading {
    font-size: 2.25rem;
  }
}
.home-locs__subheading {
  font-size: 1rem;
  color: rgb(255 255 255 / 0.8);
  max-width: 48rem;
  margin-inline: auto;
}

.home-locs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .home-locs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-locs__loc {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.home-locs__info {
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 1.5rem;
  border-radius: 1rem;
  transition: background-color var(--h-trans);
}
.home-locs__info:hover {
  background-color: rgb(255 255 255 / 0.15);
}

.home-locs__name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.home-locs__details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.home-locs__detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.9);
}
.home-locs__detail-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}
.home-locs__detail-icon--blue {
  color: #93c5fd;
}
.home-locs__detail-icon--green {
  color: #86efac;
}
.home-locs__detail p {
  margin: 0;
}

.home-locs__phone {
  color: rgb(255 255 255 / 0.9);
  text-decoration: none;
  transition: color var(--h-trans);
}
.home-locs__phone:hover {
  color: #ffffff;
}

.home-locs__map-wrap {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.3);
  border: 1px solid rgb(255 255 255 / 0.2);
}
.home-locs__iframe {
  border: 0;
  display: block;
}

.home-locs__email {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.home-locs__email-icon {
  width: 16px;
  height: 16px;
  color: rgb(255 255 255 / 0.9);
}
.home-locs__email-link {
  color: rgb(255 255 255 / 0.9);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--h-trans);
}
.home-locs__email-link:hover {
  color: #ffffff;
}

/* ============================================================
   HOME MID CTA
   ============================================================ */
.home-mid-cta {
  padding-block: 3rem 4rem;
  background-color: #ffffff;
  text-align: center;
}
@media (min-width: 1024px) {
  .home-mid-cta {
    padding-block: 3rem 4rem;
  }
}

.home-mid-cta__container {
  max-width: 56rem;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .home-mid-cta__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-mid-cta__container {
    padding-inline: 2rem;
  }
}

.home-mid-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(0 52 157 / 0.1);
  border-radius: 9999px;
}
.home-mid-cta__badge-icon {
  width: 16px;
  height: 16px;
  color: var(--h-blue);
}
.home-mid-cta__badge span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--h-blue);
}

.home-mid-cta__heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  line-height: 1.25;
}
@media (min-width: 1024px) {
  .home-mid-cta__heading {
    font-size: 2.25rem;
  }
}

.home-mid-cta__subheading {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.625;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.home-mid-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .home-mid-cta__actions {
    flex-direction: row;
  }
}

.home-mid-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--h-r);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    background-color var(--h-trans),
    color var(--h-trans),
    box-shadow var(--h-trans),
    transform var(--h-trans);
}
.home-mid-cta__btn:hover {
  transform: translateY(-4px);
}

.home-mid-cta__btn--red {
  background-color: var(--h-red);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}
.home-mid-cta__btn--red:hover {
  background-color: var(--h-red-dark);
  box-shadow: 0 20px 25px -5px rgb(220 38 38 / 0.5);
}
.home-mid-cta__btn--red:hover .home-mid-cta__btn-icon {
  transform: translateX(4px);
}

.home-mid-cta__btn--blue {
  background-color: var(--h-blue);
  color: #ffffff;
}
.home-mid-cta__btn--blue:hover {
  background-color: var(--h-blue-dark);
}

.home-mid-cta__btn-icon {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--h-trans);
}
.home-mid-cta__btn-icon--left {
  margin-left: 0;
  margin-right: 0.5rem;
}

.home-mid-cta__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  color: #4b5563;
}
.home-mid-cta__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.home-mid-cta__perk-icon {
  width: 16px;
  height: 16px;
  color: #16a34a;
  flex-shrink: 0;
}

/* ============================================================
   PROJECTS CAROUSEL
   ============================================================ */
.projects {
  padding-block: 3rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .projects {
    padding-block: 5rem;
  }
}

.projects__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .projects__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .projects__container {
    padding-inline: 2rem;
  }
}

.projects__header {
  text-align: center;
  margin-bottom: 3rem;
}
.projects__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--h-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.projects__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .projects__heading {
    font-size: 3rem;
  }
}
.projects__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

.projects__slider-wrap {
  position: relative;
  padding: 0 0.5rem;
}

.projects__track-wrap {
  overflow: hidden;
}
.projects__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 400ms ease;
}

.projects__slide {
  flex: none;
  width: 100%;
}
@media (min-width: 768px) {
  .projects__slide {
    width: calc(50% - 0.75rem);
  }
}
@media (min-width: 1024px) {
  .projects__slide {
    width: calc(33.333% - 1rem);
  }
}

.projects__card {
  background-color: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  transition: box-shadow 500ms ease;
}
.projects__card:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.2);
}
.projects__card:hover .projects__card-img {
  transform: scale(1.1);
}

.projects__card-media {
  position: relative;
  height: 288px;
  overflow: hidden;
}
.projects__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
  display: block;
}
.projects__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 0.9),
    rgb(0 0 0 / 0.5),
    transparent
  );
}

.projects__card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--h-red);
  color: #ffffff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
}

.projects__card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.projects__card-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgb(255 255 255 / 0.9);
  margin-bottom: 0.5rem;
}
.projects__location-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.projects__card-location span {
  font-size: 0.875rem;
  font-weight: 600;
}
.projects__card-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

/* Nav buttons */
.projects__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 9999px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2);
  border: none;
  cursor: pointer;
  color: #111827;
  z-index: 10;
  transition:
    background-color var(--h-trans),
    color var(--h-trans),
    transform var(--h-trans);
}
.projects__nav:hover {
  background-color: var(--h-red);
  color: #ffffff;
}
.projects__nav-icon {
  width: 24px;
  height: 24px;
}

.projects__nav--prev {
  left: 1rem;
}
.projects__nav--prev:hover {
  transform: translateY(-50%) scale(1.1);
}
.projects__nav--next {
  right: 1rem;
}
.projects__nav--next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* Dots */
.projects__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.projects__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: #d1d5db;
  border: none;
  cursor: pointer;
  transition:
    background-color var(--h-trans),
    transform var(--h-trans);
}
.projects__dot--active {
  background-color: var(--h-blue);
  transform: scale(1.2);
}

.projects__view-all {
  text-align: center;
  margin-top: 2.5rem;
}
.projects__view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--h-blue), #1d4ed8);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: var(--h-r);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition:
    box-shadow var(--h-trans),
    transform var(--h-trans);
}
.projects__view-all-btn:hover {
  box-shadow: 0 20px 25px -5px rgb(0 52 157 / 0.3);
  transform: translateY(-4px);
}
.projects__view-all-btn:hover .projects__view-all-icon {
  transform: translateX(4px);
}
.projects__view-all-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--h-trans);
}

/* ============================================================
   HOME FAQ
   ============================================================ */
.home-faq {
  padding-block: 4rem 6rem;
  background-color: #f9fafb;
}

.home-faq__container {
  max-width: 56rem;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .home-faq__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .home-faq__container {
    padding-inline: 2rem;
  }
}

.home-faq__header {
  text-align: center;
  margin-bottom: 3rem;
}
.home-faq__eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0d9488;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.home-faq__heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .home-faq__heading {
    font-size: 3rem;
  }
}
.home-faq__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  margin: 0;
}

.home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-faq__item {
  background-color: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.08);
  overflow: hidden;
}

.home-faq__trigger {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: background-color var(--h-trans);
}
.home-faq__trigger:hover {
  background-color: #f9fafb;
}
.home-faq__trigger span {
  font-weight: 600;
  color: #111827;
  padding-right: 2rem;
  font-size: 1rem;
}

.home-faq__chevron {
  width: 20px;
  height: 20px;
  color: #6b7280;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.home-faq__item--open .home-faq__chevron {
  transform: rotate(180deg);
}

.home-faq__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 200ms ease;
}
.home-faq__item--open .home-faq__answer {
  max-height: 500px;
}
.home-faq__answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.625;
}
