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

/* ============================================================
   BRANDS
   ============================================================ */
.brands {
  padding-block: 4rem;
  background-color: #ffffff;
  border-bottom: 1px solid #f3f4f6;
}

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

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

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

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

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

.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background-color: #f9fafb;
  border-radius: var(--pg-radius-xl);
  border: 1px solid #f3f4f6;
  transition:
    background-color var(--pg-transition-slow),
    box-shadow var(--pg-transition-slow);
  cursor: pointer;
}

.brands__item:hover {
  background-color: #ffffff;
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.brands__logo-wrap {
  width: 100%;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brands__logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity var(--pg-transition-slow);
}

.brands__item:hover .brands__logo {
  opacity: 1;
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgb(0 52 157 / 0.9),
    rgb(17 24 39 / 0.7),
    rgb(0 0 0 / 0.8)
  );
}

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

.page-hero__content {
  max-width: 56rem;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 9999px;
}

.page-hero__badge-icon {
  width: 20px;
  height: 20px;
  color: #fde047;
  flex-shrink: 0;
}

.page-hero__badge span {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
}

.page-hero__heading {
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .page-hero__heading {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .page-hero__heading {
    font-size: 3.75rem;
  }
}

.page-hero__heading-white {
  color: #ffffff;
}

.page-hero__heading-gradient {
  background: linear-gradient(to right, #ffffff, #e5e7eb, #d1d5db);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.page-hero__subheading {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 42rem;
  font-weight: 300;
}

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

.page-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--pg-radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition:
    background-color var(--pg-transition),
    color var(--pg-transition),
    box-shadow var(--pg-transition),
    transform var(--pg-transition);
}

.page-hero__btn:hover {
  transform: translateY(-4px);
}

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

.page-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);
  -webkit-backdrop-filter: blur(24px);
}
.page-hero__btn--outline:hover {
  background-color: #ffffff;
  color: #111827;
}

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

.page-hero__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.page-hero__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.page-hero__perk-dot {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background-color: #ffffff;
  flex-shrink: 0;
}

.page-hero__perk span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.025em;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  padding-block: 2.5rem;
  background: linear-gradient(to right, var(--pg-blue), #1d4ed8);
}

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

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 1024px) {
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stats-bar__stat {
  text-align: center;
}

.stats-bar__stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.5rem;
  display: block;
  color: rgb(255 255 255 / 0.8);
}

.stats-bar__value {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .stats-bar__value {
    font-size: 2.25rem;
  }
}

.stats-bar__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
}

.stats-bar__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  padding-top: 1rem;
}
@media (min-width: 640px) {
  .stats-bar__actions {
    flex-direction: row;
  }
}

.stats-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border-radius: var(--pg-radius);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition:
    background-color var(--pg-transition),
    color var(--pg-transition),
    box-shadow var(--pg-transition),
    transform var(--pg-transition);
}
.stats-bar__btn:hover {
  transform: translateY(-4px);
}

.stats-bar__btn--white {
  background-color: #ffffff;
  color: var(--pg-blue);
}
.stats-bar__btn--white:hover {
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.2);
}
.stats-bar__btn--white:hover .stats-bar__btn-icon {
  transform: translateX(4px);
}

.stats-bar__btn--outline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.stats-bar__btn--outline:hover {
  background-color: #ffffff;
  color: var(--pg-blue);
}

.stats-bar__btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--pg-transition);
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections {
  padding-block: 5rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb, #ffffff);
}

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

.collections__header {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

/* Grid */
.collections__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .collections__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.collections__card {
  display: block;
  text-decoration: none;
  border-radius: var(--pg-radius-2xl);
  overflow: hidden;
  position: relative;
}
@media (min-width: 1024px) {
  .collections__card--featured {
    grid-column: span 2;
  }
}

.collections__card-media {
  position: relative;
  height: 400px;
  background-color: #111827;
}

.collections__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}

.collections__card:hover .collections__card-img {
  transform: scale(1.05);
}

.collections__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 0.9),
    rgb(0 0 0 / 0.4),
    transparent
  );
}

.collections__card-body {
  position: absolute;
  inset: 0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.collections__card-body--featured {
  padding: 2.5rem;
}

.collections__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  width: fit-content;
}

.collections__tag-icon {
  width: 20px;
  height: 20px;
  color: #ffffff;
  flex-shrink: 0;
}

.collections__card-tag span {
  font-size: 0.875rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.collections__card-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.collections__card-title--lg {
  font-size: 2.25rem;
}
@media (min-width: 1024px) {
  .collections__card-title--lg {
    font-size: 2.5rem;
  }
}

.collections__card-desc {
  font-size: 1rem;
  color: rgb(255 255 255 / 0.9);
  margin-bottom: 1rem;
  max-width: 42rem;
}

.collections__card-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
}

.collections__card-link--lg {
  font-size: 1.125rem;
  gap: 0.75rem;
}

.collections__link-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--pg-transition);
}
.collections__card-link--lg .collections__link-icon {
  width: 24px;
  height: 24px;
}
.collections__card:hover .collections__link-icon {
  transform: translateX(8px);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products__header {
  margin-bottom: 2.5rem;
}

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

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

.products__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.products__filter {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  background-color: #f3f4f6;
  color: #374151;
  transition:
    background-color var(--pg-transition),
    color var(--pg-transition),
    box-shadow var(--pg-transition);
}

.products__filter:hover {
  background-color: #e5e7eb;
}

.products__filter--active {
  background-color: var(--pg-blue);
  color: #ffffff;
  box-shadow: 0 4px 6px -1px rgb(0 52 157 / 0.3);
}

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

.products__card {
  background-color: #ffffff;
  border-radius: var(--pg-radius-lg);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.products__card:hover {
  border-color: rgb(0 52 157 / 0.2);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.products__card--hidden {
  display: none;
}

.products__card-media {
  position: relative;
  height: 192px;
  overflow: hidden;
}

.products__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.products__card:hover .products__card-img {
  transform: scale(1.1);
}

.products__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgb(0 0 0 / 0.6),
    rgb(0 0 0 / 0.2),
    transparent
  );
  opacity: 0;
  transition: opacity 500ms ease;
}

.products__card:hover .products__card-overlay {
  opacity: 1;
}

.products__card-brand {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgb(255 255 255 / 0.95);
  backdrop-filter: blur(4px);
  color: #111827;
  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);
}

.products__card-cat {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background-color: rgb(0 52 157 / 0.9);
  backdrop-filter: blur(4px);
  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);
}

.products__card-body {
  padding: 1.25rem;
}

.products__card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  transition: color var(--pg-transition);
}

.products__card:hover .products__card-title {
  color: var(--pg-blue);
}

.products__card-desc {
  font-size: 0.875rem;
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.products__card-btn {
  width: 100%;
  background: linear-gradient(to right, var(--pg-blue), #1d4ed8);
  color: #ffffff;
  padding: 0.625rem 1rem;
  border-radius: var(--pg-radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    box-shadow var(--pg-transition-slow),
    transform var(--pg-transition);
}

.products__card-btn:hover {
  box-shadow: 0 10px 15px -3px rgb(0 52 157 / 0.2);
  transform: translateY(-2px);
}

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews {
  padding-block: 5rem;
  background-color: #ffffff;
}

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

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

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

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

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

.reviews__slider-wrap {
  position: relative;
  overflow: hidden;
  /* Add padding so the absolutely-positioned nav buttons aren't clipped */
  padding-inline: 2.5rem;
}

.reviews__track {
  display: flex;
  gap: 2rem;
  transition: transform 400ms ease;
}

.reviews__slide {
  flex: none;
  width: 100%;
}
@media (min-width: 640px) {
  .reviews__slider-wrap {
    padding-inline: 3rem;
  }
}
@media (min-width: 768px) {
  .reviews__slide {
    width: calc(50% - 1rem);
  }
}
@media (min-width: 1024px) {
  .reviews__slide {
    width: calc(33.333% - 1.333rem);
  }
}

.reviews__card {
  position: relative;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  padding: 2rem;
  border-radius: var(--pg-radius-xl);
  border: 1px solid #f3f4f6;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.reviews__card:hover {
  border-color: rgb(0 52 157 / 0.2);
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

.reviews__quote-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, var(--pg-blue), #1d4ed8);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
  transition: transform var(--pg-transition);
}

.reviews__card:hover .reviews__quote-icon {
  transform: scale(1.1);
}

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

.reviews__text {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.625;
  font-style: italic;
  margin-bottom: 1.5rem;
  flex: 1;
}

.reviews__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.reviews__avatar {
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: linear-gradient(to bottom right, #dc2626, var(--pg-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.reviews__name {
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
  font-size: 0.9375rem;
}

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

.reviews__location {
  font-size: 0.75rem;
  color: #6b7280;
}

.reviews__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffffff;
  border-radius: 9999px;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 1px solid #f3f4f6;
  cursor: pointer;
  transition:
    background-color var(--pg-transition),
    color var(--pg-transition),
    transform var(--pg-transition);
  z-index: 10;
  color: #374151;
}

.reviews__nav svg {
  width: 20px;
  height: 20px;
}

.reviews__nav:hover {
  background-color: var(--pg-blue);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.reviews__nav--prev {
  left: 0;
  transform: translateY(-50%);
}
.reviews__nav--prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.reviews__nav--next {
  right: 0;
  transform: translateY(-50%);
}
.reviews__nav--next:hover {
  transform: translateY(-50%) scale(1.1);
}

/* ============================================================
   WHY TOP DECK
   ============================================================ */
.why {
  padding-block: 5rem;
  background: linear-gradient(to bottom, #ffffff, #f9fafb, #ffffff);
}

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

.why__header {
  text-align: center;
  margin-bottom: 4rem;
}

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

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

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

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

.why__card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: var(--pg-radius-xl);
  border: 1px solid #f3f4f6;
  transition:
    border-color 500ms ease,
    box-shadow 500ms ease;
}

.why__card:hover {
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.15);
}

.why__card:hover .why__card-icon {
  transform: scale(1.1);
}

.why__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform var(--pg-transition);
}

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

.why__card-icon-svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

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

.why__card-desc {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.625;
}

/* CTA Box */
.why__cta {
  position: relative;
  background: linear-gradient(
    to bottom right,
    rgb(0 52 157 / 0.05),
    rgb(239 246 255 / 0.5),
    #ffffff
  );
  padding: 2.5rem;
  border-radius: var(--pg-radius-xl);
  border: 2px solid rgb(0 52 157 / 0.1);
  max-width: 56rem;
  margin-inline: auto;
  box-shadow: 0 25px 50px -12px rgb(0 52 157 / 0.05);
  overflow: hidden;
}
@media (min-width: 1024px) {
  .why__cta {
    padding: 3rem;
  }
}

.why__cta-glow {
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
  pointer-events: none;
}

.why__cta-glow--top {
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: linear-gradient(
    to bottom right,
    rgb(0 52 157 / 0.05),
    transparent
  );
}

.why__cta-glow--bottom {
  bottom: 0;
  left: 0;
  width: 12rem;
  height: 12rem;
  background: linear-gradient(to top right, rgb(220 38 38 / 0.05), transparent);
}

.why__cta-inner {
  position: relative;
  z-index: 1;
}

.why__cta-heading {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .why__cta-heading {
    font-size: 1.875rem;
  }
}

.why__cta-desc {
  font-size: 0.9375rem;
  color: #4b5563;
  text-align: center;
  line-height: 1.625;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-inline: auto;
}

.why__cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .why__cta-actions {
    flex-direction: row;
  }
}

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

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

.why__cta-btn--outline {
  background-color: #ffffff;
  color: var(--pg-blue);
  border: 2px solid rgb(0 52 157 / 0.2);
}
.why__cta-btn--outline:hover {
  border-color: var(--pg-blue);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.why__cta-btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--pg-transition);
}

/* ============================================================
   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(--pg-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, 1fr);
  }
}

/* Info Panel */
.contact__info {
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  padding: 1.5rem;
  border-radius: var(--pg-radius-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;
}

.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(--pg-radius);
  border: 1px solid #e5e7eb;
  transition:
    border-color var(--pg-transition),
    box-shadow var(--pg-transition);
}

.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(--pg-blue), #1d4ed8);
}
.contact__location-icon--red {
  background: linear-gradient(
    to bottom right,
    var(--pg-red),
    var(--pg-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(--pg-radius);
  color: #ffffff;
}

.contact__channel--blue {
  background: linear-gradient(to bottom right, var(--pg-blue), #1d4ed8);
}
.contact__channel--red {
  background: linear-gradient(
    to bottom right,
    var(--pg-red),
    var(--pg-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-all;
  line-height: 1.25;
  transition: opacity var(--pg-transition);
}
.contact__channel-value:hover {
  opacity: 0.9;
}

/* Form */
.contact__form-wrap {
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: var(--pg-radius-xl);
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}
@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, 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(--pg-radius);
  font-size: 1rem;
  color: #111827;
  background-color: #ffffff;
  outline: none;
  transition:
    border-color var(--pg-transition),
    box-shadow var(--pg-transition);
}

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

.contact__select {
  cursor: pointer;
}

.contact__textarea {
  resize: none;
}

.contact__submit {
  width: 100%;
  background: linear-gradient(to right, var(--pg-blue), #1d4ed8);
  color: #ffffff;
  padding: 0.875rem 2rem;
  border-radius: var(--pg-radius);
  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(--pg-transition-slow),
    transform var(--pg-transition);
}

.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;
}

/* ============================================================
   LOCATIONS
   ============================================================ */
.locations {
  padding-block: 5rem;
  background-color: #ffffff;
}

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

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

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

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

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

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

.locations__map-wrap {
  border-radius: var(--pg-radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  border: 1px solid #e5e7eb;
}

.locations__iframe {
  border: 0;
  display: block;
}

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

.locations__card {
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  padding: 1.5rem;
  border-radius: var(--pg-radius-lg);
  border: 1px solid #e5e7eb;
  transition: box-shadow var(--pg-transition-slow);
}

.locations__card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.locations__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

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

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

.locations__card-name {
  font-weight: 900;
  color: #111827;
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.locations__card-street,
.locations__card-city {
  font-size: 0.9375rem;
  color: #4b5563;
  margin-bottom: 2px;
}

.locations__card-city {
  margin-bottom: 1rem;
}

.locations__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--pg-blue);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color var(--pg-transition);
}

.locations__card-link:hover {
  color: #1d4ed8;
}
.locations__card-link:hover .locations__card-link-icon {
  transform: translateX(4px);
}

.locations__card-link-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--pg-transition);
}

/* ============================================================
   PAGE CTA
   ============================================================ */
.page-cta {
  position: relative;
  padding-block: 6rem;
  overflow: hidden;
  text-align: center;
  color: #ffffff;
}

.page-cta__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    var(--pg-blue),
    #1e40af,
    #111827
  );
}

.page-cta__pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS1vcGFjaXR5PSIwLjAzIiBzdHJva2Utd2lkdGg9IjEiLz48L3BhdHRlcm4+PC9kZWZzPjxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JpZCkiLz48L3N2Zz4=");
  opacity: 0.4;
}

.page-cta__container {
  position: relative;
  z-index: 10;
  max-width: 56rem;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .page-cta__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .page-cta__container {
    padding-inline: 2rem;
  }
}

.page-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 9999px;
}

.page-cta__badge-icon {
  width: 20px;
  height: 20px;
  color: #fde047;
  flex-shrink: 0;
}

.page-cta__badge span {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.page-cta__subheading {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  line-height: 1.625;
  max-width: 48rem;
  margin: 0 auto 2rem;
  font-weight: 300;
}

.page-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .page-cta__actions {
    flex-direction: row;
  }
}

.page-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: var(--pg-radius);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition:
    background-color var(--pg-transition),
    box-shadow var(--pg-transition),
    transform var(--pg-transition);
}
.page-cta__btn:hover {
  transform: translateY(-4px);
}

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

.page-cta__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);
  -webkit-backdrop-filter: blur(24px);
}
.page-cta__btn--outline:hover {
  background-color: #ffffff;
  color: #111827;
}

.page-cta__btn-icon {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--pg-transition);
}

/* PAGE FAQ styles moved to nav-footer.css (loaded globally on all pages) */
