:root {
  --perla-red: #970b17;
  --perla-red-dark: #67070d;
  --perla-red-soft: #f8e9e9;
  --perla-burgundy: #30080d;
  --perla-black: #191817;
  --perla-text: #302d2b;
  --perla-muted: #6a625e;
  --perla-line: #eadede;
  --perla-cream: #f8f6f4;
  --perla-warm-white: #fffdfc;
  --perla-blush: #fff8f7;
  --perla-white: #ffffff;
  --perla-shadow: 0 18px 50px rgba(80, 40, 40, 0.08);
  --perla-radius: 18px;
  font-family: "Inter", Arial, sans-serif;
  color: var(--perla-text);
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--perla-white);
  color: var(--perla-text);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.page-error {
  min-width: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container-xxl {
  max-width: 1320px;
  padding-inline: 28px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  left: 20px;
  top: -100px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--perla-red);
  background: var(--perla-warm-white);
  color: var(--perla-red);
  box-shadow: var(--perla-shadow);
  text-decoration: none;
}

/* Keep the focused keyboard shortcut visible without covering the sticky header. */
.skip-link:focus {
  top: 96px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--perla-red);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f7c9cd;
}

h1,
h2,
h3,
.modal-title {
  color: var(--perla-black);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
}

.section {
  padding: 88px 0;
}

.section-heading {
  margin-bottom: 36px;
}

.solutions-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.section-summary {
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

/* Shared not-found page */
.error-page {
  display: grid;
  min-height: min(68vh, 720px);
  place-items: center;
  background: linear-gradient(135deg, #fff8f7 0%, #f8f6f4 100%);
}

.error-page-content {
  width: 100%;
  padding: 88px 0;
}

.error-page-card {
  max-width: 700px;
  padding: clamp(34px, 7vw, 68px);
  margin: 0 auto;
  border: 1px solid var(--perla-line);
  border-top: 4px solid var(--perla-red);
  border-radius: var(--perla-radius);
  background: var(--perla-warm-white);
  box-shadow: var(--perla-shadow);
  text-align: center;
}

.error-page-card .eyebrow {
  margin-bottom: 12px;
}

.error-page-card h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.7rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.error-page-card > p:not(.eyebrow) {
  max-width: 500px;
  margin: 18px auto 0;
  color: var(--perla-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

@media (max-width: 575.98px) {
  .error-page-content {
    padding: 48px 0;
  }

  .error-page ~ .site-footer .row {
    margin-right: 0;
    margin-left: 0;
  }

  .error-page-actions {
    display: grid;
  }

  .error-page-actions .btn {
    width: 100%;
  }
}

.heading-rule {
  display: block;
  width: 46px;
  height: 3px;
  margin: 20px auto 0;
  border-radius: 2px;
  background: var(--perla-red);
}

.btn {
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.005em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn i {
  margin-left: 9px;
  font-size: 0.72rem;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:focus-visible {
  outline: 3px solid rgba(151, 11, 23, 0.28);
  outline-offset: 3px;
}

.btn-brand {
  border-color: var(--perla-red);
  background: var(--perla-red);
  color: white;
  box-shadow: 0 10px 22px rgba(151, 11, 23, 0.19);
}

.btn-brand:hover,
.btn-brand:focus {
  border-color: var(--perla-red-dark);
  background: var(--perla-red-dark);
  color: white;
}

.btn-outline-brand {
  border: 1px solid var(--perla-red);
  background: white;
  color: var(--perla-red);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  border-color: var(--perla-red);
  background: var(--perla-red-soft);
  color: var(--perla-red);
}

.text-link {
  color: var(--perla-red);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link i {
  margin-left: 7px;
  font-size: 0.68rem;
  transition: transform 160ms ease;
}

.text-link:hover {
  color: var(--perla-red-dark);
}

.text-link:hover i {
  transform: translateX(4px);
}

.btn-reset {
  padding: 0;
  border: 0;
  background: transparent;
}

.site-header {
  z-index: 1030;
  border-bottom: 1px solid rgba(232, 225, 222, 0.85);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 26px rgba(48, 8, 13, 0.04);
}

.site-header .navbar {
  min-height: 84px;
  padding: 0;
  container-type: inline-size;
}

.site-header .navbar>.container-xxl {
  max-width: 1740px;
  display: flex;
  gap: clamp(32px, 3.5vw, 64px);
  align-items: center;
  padding-inline: clamp(20px, 1.5vw, 36px);
}

.navbar-brand {
  flex: 0 0 auto;
  width: clamp(200px, 15vw, 232px);
  margin: 0;
  padding: 0;
}

.navbar-brand img {
  width: 100%;
  height: auto;
}

.site-header .navbar-collapse {
  display: flex;
  min-width: 0;
  gap: clamp(16px, 1.35vw, 28px);
}

.site-header .navbar-nav {
  flex: 0 0 auto;
  gap: clamp(4px, 0.45vw, 8px);
  margin-right: 0;
}

.site-header .navbar-nav .nav-link {
  --nav-link-inline-padding: clamp(7px, 0.55vw, 11px);
  padding: 30px var(--nav-link-inline-padding);
  border: 0;
  background: transparent;
  color: #2c2927;
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--perla-red);
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 0.38em;
  vertical-align: 0.15em;
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  border: 1px solid var(--perla-line);
  border-radius: 8px;
  color: var(--perla-red);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(151, 11, 23, 0.16);
}

/* Switch only when the header itself no longer has room for every desktop group. */
@container (max-width: 1160px) {
  .site-header .navbar-collapse {
    display: none !important;
  }

  .site-header .navbar-toggler {
    display: block !important;
  }
}

.product-menu,
.about-menu,
.claim-menu {
  --bs-dropdown-bg: var(--perla-warm-white);
  --bs-dropdown-color: var(--perla-text);
  --bs-dropdown-link-color: var(--perla-text);
  --bs-dropdown-link-hover-color: var(--perla-red);
  --bs-dropdown-link-hover-bg: var(--perla-red-soft);
  --bs-dropdown-link-active-color: var(--perla-red);
  --bs-dropdown-link-active-bg: var(--perla-red-soft);
  min-width: 270px;
  padding: 10px;
  border: 1px solid var(--perla-line);
  border-radius: 12px;
  background-color: var(--perla-warm-white);
  color: var(--perla-text);
  box-shadow: 0 10px 28px rgba(80, 40, 40, 0.1);
}

.product-menu .dropdown-item,
.about-menu .dropdown-item,
.claim-menu .dropdown-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--perla-text);
  font-size: 0.82rem;
  opacity: 1;
}

.dropdown-item-icon {
  flex: 0 0 20px;
  width: 20px;
  color: var(--perla-red);
  text-align: center;
}

.product-menu .dropdown-item:hover,
.product-menu .dropdown-item:focus,
.product-menu .dropdown-item.active,
.product-menu .dropdown-item:active,
.about-menu .dropdown-item:hover,
.about-menu .dropdown-item:focus,
.about-menu .dropdown-item.active,
.about-menu .dropdown-item:active,
.claim-menu .dropdown-item:hover,
.claim-menu .dropdown-item:focus,
.claim-menu .dropdown-item.active,
.claim-menu .dropdown-item:active {
  background: var(--perla-red-soft);
  color: var(--perla-red);
}

.about-menu .about-menu-item,
.claim-menu .claim-menu-item {
  cursor: default;
}

.support-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  flex: 0 0 auto;
  min-height: 32px;
  margin: 0;
  padding-left: clamp(14px, 1.4vw, 24px);
  border-left: 1px solid var(--perla-line);
  color: var(--perla-black);
  font-size: 0.77rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.support-link i {
  color: var(--perla-red);
  font-size: 1rem;
}

.navbar-collapse>.btn-brand {
  flex: 0 0 auto;
  margin: 0;
  white-space: nowrap;
}

.offcanvas {
  width: min(340px, 100vw);
  max-width: 100%;
  background: var(--perla-warm-white);
}

.offcanvas-backdrop,
.modal-backdrop {
  background-color: #5c4447;
}

.offcanvas-header {
  padding: 24px;
  border-bottom: 1px solid var(--perla-line);
}

.offcanvas-header img {
  width: 220px;
}

.offcanvas-body {
  padding: 28px 24px;
}

.menu-label {
  color: var(--perla-muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--perla-line);
  color: var(--perla-black);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav-link i {
  color: var(--perla-red);
  font-size: 0.72rem;
}

.mobile-nav-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
}

.mobile-nav-toggle[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.mobile-subnav {
  padding: 4px 0 10px 16px;
  border-bottom: 1px solid var(--perla-line);
}

.mobile-subnav-link {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 0;
  color: var(--perla-text);
  font-size: 0.95rem;
  line-height: 1.35;
  text-decoration: none;
}

.mobile-subnav-link>span {
  min-width: 0;
}

.mobile-subnav-icon {
  flex: 0 0 18px;
  width: 18px;
  color: var(--perla-red);
  font-size: 0.85em;
  text-align: center;
}

.mobile-subnav-link[href]:hover,
.mobile-subnav-link[href]:focus {
  color: var(--perla-red);
}

.hero-section {
  padding: 18px 0 82px;
  background: #fff;
}

#top.hero-section {
  padding-top: 8px;
  padding-bottom: 0;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(3.25rem, 5vw, 5.55rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy h1 span {
  color: var(--perla-red);
}

.hero-lead {
  max-width: 540px;
  margin: 0 0 28px;
  color: #514b47;
  font-size: 1.02rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-assurances {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 22px;
  margin-top: 38px;
}

.assurance {
  display: flex;
  gap: 11px;
  align-items: center;
  min-width: 0;
}

.assurance>i {
  flex: 0 0 auto;
  color: var(--perla-red);
  font-size: 1.22rem;
}

.assurance span {
  display: flex;
  flex-direction: column;
  color: var(--perla-muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.assurance strong {
  color: var(--perla-black);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-bottom: 12px solid var(--perla-red);
  border-left: 2px solid var(--perla-red);
  border-radius: 48% 0 0 48%;
  background: var(--perla-cream);
  box-shadow: var(--perla-shadow);
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: 59% center;
}

.hero-slide {
  opacity: 0;
  transform: scale(1);
  transition: opacity 0.9s ease-in-out;
  will-change: opacity, transform;
}

.hero-slide.is-active,
.hero-slide.is-outgoing {
  animation: hero-slide-zoom 3.9s ease-out forwards;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.hero-slide.is-outgoing {
  z-index: 1;
  opacity: 0;
}

[data-anniversary="63"].is-active {
  cursor: pointer;
}

@keyframes hero-slide-zoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}

body.anniversary-active {
  overflow: hidden;
}

.anniversary-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  min-height: 100vh;
  height: 100dvh;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(7px);
  opacity: 1;
  -webkit-backdrop-filter: blur(7px);
  animation: anniversary-overlay-in 450ms ease-out forwards;
}

.anniversary-confetti {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.anniversary-visual {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: clamp(12px, 2.5vw, 36px) clamp(10px, 2vw, 30px);
  box-sizing: border-box;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: none;
  transition: opacity 1000ms ease;
  animation: anniversary-visual-in 600ms cubic-bezier(.22, 1, .36, 1) both;
}

.anniversary-gif {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 900px);
  max-height: min(88vh, 88dvh);
  object-fit: contain;
  object-position: center;
  background: transparent;
  filter:
    drop-shadow(0 12px 20px rgba(90, 0, 8, 0.18)) drop-shadow(0 24px 35px rgba(0, 0, 0, 0.12));
}

.anniversary-popup.is-leaving {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1000ms ease;
  animation: none;
}

.anniversary-popup.is-leaving .anniversary-visual {
  opacity: 0;
  animation: none;
}

@keyframes anniversary-visual-in {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes anniversary-overlay-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .anniversary-visual {
    padding: 16px 8px;
  }
}

@media (max-height: 500px) {
  .anniversary-visual {
    padding: 8px 18px;
  }
}

.hero-photo-tag {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 22px;
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 11px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--perla-black);
  font-size: 0.72rem;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(48, 8, 13, 0.13);
}

.hero-photo-tag i {
  color: var(--perla-red);
}

.featured-updates-section {
  overflow: hidden;
  padding: 40px 0;
  background: #fff;
}

.featured-updates-heading {
  margin-bottom: 10px;
}

.featured-updates-eyebrow {
  margin: 0 0 3px;
  color: var(--perla-red);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.featured-updates-heading h2 {
  margin: 0;
  color: var(--perla-black);
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.featured-updates-carousel {
  width: min(100%, 1180px);
  margin-inline: auto;
  padding-inline: 48px;
}

.featured-updates-frame {
  overflow: hidden;
  border: 1px solid rgba(151, 11, 23, 0.12);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(48, 8, 13, 0.09);
}

.featured-update-link {
  display: block;
  border-radius: 14px;
  cursor: pointer;
  outline: none;
}

.featured-update-link:focus-visible {
  position: relative;
  z-index: 1;
  outline: 4px solid rgba(151, 11, 23, 0.72);
  outline-offset: -4px;
}

.featured-update-video-slide {
  position: relative;
}

.featured-video-trigger,
.featured-video-learn-more {
  position: absolute;
  z-index: 2;
  bottom: 12.5%;
  height: 10.5%;
  border: 0;
  border-radius: 999px;
  background: transparent;
}

.featured-video-trigger {
  left: 5.25%;
  width: 15.25%;
}

.featured-video-learn-more {
  left: 21.55%;
  width: 11.25%;
}

.featured-video-trigger:hover,
.featured-video-learn-more:hover {
  background: rgba(151, 11, 23, 0.06);
}

.featured-video-trigger:focus-visible,
.featured-video-learn-more:focus-visible {
  outline: 3px solid var(--perla-red);
  outline-offset: 3px;
}

.featured-update-image {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 3;
  object-fit: contain;
  background: #fff;
}

.featured-updates-control {
  top: 50%;
  bottom: auto;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: var(--perla-red);
  opacity: 1;
  filter: none;
  box-shadow: none;
  transform: translateY(-50%);
  transition: transform 160ms ease;
}

.featured-updates-control.carousel-control-prev {
  left: 0;
}

.featured-updates-control.carousel-control-next {
  right: 0;
}

.featured-updates-control i,
.featured-updates-control i::before {
  color: var(--perla-red);
  opacity: 1;
  filter: none;
}

.featured-updates-control i {
  font-size: 1.15rem;
}

.featured-updates-control:hover,
.featured-updates-control:focus-visible {
  color: var(--perla-red);
  opacity: 1;
  transform: translateY(-50%) scale(1.05);
}

.featured-updates-control:focus-visible {
  outline: 3px solid rgba(151, 11, 23, 0.24);
  outline-offset: 3px;
}

.featured-updates-indicators {
  position: static;
  gap: 5px;
  margin: 11px 0 0;
}

.featured-updates-indicators [data-bs-target] {
  box-sizing: border-box;
  width: 7px;
  height: 7px;
  margin: 0;
  border: 0;
  border-radius: 50%;
  background-color: #d9d6d4;
  opacity: 1;
}

.featured-updates-indicators [data-bs-target].active {
  background-color: var(--perla-red);
}

.featured-updates-indicators [data-bs-target]:focus-visible {
  outline: 2px solid rgba(151, 11, 23, 0.4);
  outline-offset: 3px;
}

.solutions-section {
  padding: 10px 0;
}

.solutions-section .heading-rule {
  margin-top: 14px;
}

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #eee5e1;
  border-radius: var(--perla-radius);
  background: #fffdfb;
  box-shadow: 0 12px 34px rgba(48, 8, 13, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.solution-card .card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 30px 28px 16px;
}

.solution-card.tone-red,
.solution-card.tone-sand,
.solution-card.tone-gray {
  background: #fffdfb;
}

.solution-heading {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding-bottom: 10px;
}

.solution-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: var(--perla-red);
  content: "";
}

.solution-heading>div {
  flex: 1 1 auto;
  min-width: 0;
}

.solution-icon {
  display: grid;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 1.22rem;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.solution-heading h3 {
  margin: 2px 0 6px;
  font-size: 1.38rem;
  line-height: 1.15;
}

.solution-heading p {
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.solution-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 18px;
  padding: 0;
  list-style: none;
}

.solution-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #514b47;
  font-size: 0.76rem;
  line-height: 1.45;
}

.solution-list i {
  display: grid;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  place-items: center;
  border: 1px solid var(--perla-red);
  border-radius: 50%;
  color: var(--perla-red);
  font-size: 0.5rem;
}

.solution-actions {
  display: flex;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #eadfdb;
}

.solution-card .text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: auto;
  max-width: 100%;
  min-height: 40px;
  padding: 0;
  color: var(--perla-red);
  overflow-wrap: anywhere;
  text-align: left;
  white-space: normal;
  transition: color 180ms ease;
}

.solution-card .text-link i {
  margin-left: 0;
}

.solution-card .text-link:hover {
  color: var(--perla-red-dark);
}

.solution-card .text-link:focus-visible {
  outline: 2px solid rgba(151, 11, 23, 0.3);
  outline-offset: 1px;
}

.solution-image {
  width: 100%;
  height: 258px;
  margin-top: 0;
  object-fit: cover;
  object-position: center;
}

.solution-card:focus-within {
  transform: translateY(-4px);
  border-color: var(--perla-red);
  background: #fffaf8;
  box-shadow: var(--perla-shadow);
}

.solution-card:focus-within .solution-icon {
  background: var(--perla-red);
  color: white;
}

.solution-card:focus-within .text-link {
  color: var(--perla-red-dark);
}

@media (hover: hover) {
  .solution-card:hover {
    transform: translateY(-4px);
    border-color: var(--perla-red);
    background: #fffaf8;
    box-shadow: var(--perla-shadow);
  }

  .solution-card:hover .solution-icon {
    background: var(--perla-red);
    color: white;
    transform: scale(1.03);
  }

  .solution-card:hover .text-link {
    color: var(--perla-red-dark);
  }
}

@media (min-width: 992px) {
  .solution-heading {
    min-height: 108px;
  }

  .solution-list {
    min-height: 64px;
  }

  .solution-actions {
    min-height: 56px;
  }
}

/* Motor car product page */
.motor-page {
  background: #fff;
}

.motor-hero {
  overflow: hidden;
  background: linear-gradient(108deg, #fff 0%, #fff 47%, #fffaf8 100%);
}

.motor-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  align-items: center;
  min-height: 390px;
}

.motor-hero-copy {
  padding: 42px 30px 42px 0;
}

.motor-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(3rem, 4.2vw, 4.6rem);
  line-height: 0.93;
  letter-spacing: -0.04em;
}

.motor-hero-copy h1 span {
  color: var(--perla-red);
}

.motor-hero-copy p:not(.eyebrow) {
  max-width: 460px;
  margin: 0 0 12px;
  color: var(--perla-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.motor-hero-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 5px;
  color: var(--perla-red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.86rem;
  text-decoration: none;
}

.motor-hero-link:before {
  width: 32px;
  height: 2px;
  background: var(--perla-red);
  content: "";
}

.motor-hero-link i {
  font-size: 0.7rem;
}

.motor-hero-media {
  position: relative;
  height: 390px;
  margin: 0 -28px 0 0;
  overflow: hidden;
  border-radius: 52% 0 0 52%;
  border-left: 4px solid var(--perla-red);
}

.motor-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.motor-coverage {
  padding: 28px 0 42px;
  background: #fffdfc;
}

.motor-coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 18px;
}

.motor-coverage-card {
  min-height: 175px;
  padding: 17px 18px 15px;
  border: 1px solid #eee2df;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(72, 30, 30, 0.04);
}

.motor-coverage-icon {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 9px;
  place-items: center;
  border-radius: 50%;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 0.88rem;
}

.motor-coverage-card h3 {
  margin: 0 0 7px;
  font-size: 0.98rem;
  line-height: 1.12;
}

.motor-coverage-card p {
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.67rem;
  line-height: 1.45;
}

.motor-branches {
  padding: 24px 0 38px;
  background: #fff;
}

.motor-section-heading {
  margin-bottom: 18px;
}

.motor-section-heading h2 {
  margin: 0 0 4px;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
}

.motor-section-heading>p:not(.eyebrow) {
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.76rem;
}

.motor-branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px 14px;
}

.motor-branch-card {
  display: flex;
  gap: 11px;
  align-items: center;
  min-height: 62px;
  padding: 9px 12px;
  border: 1px solid #eee2df;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 5px 17px rgba(72, 30, 30, 0.035);
}

.motor-branch-icon {
  display: grid;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 0.75rem;
}

.motor-branch-card h3 {
  margin: 0 0 1px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.69rem;
  font-weight: 800;
}

.motor-branch-card p {
  margin: 0 0 1px;
  color: var(--perla-muted);
  font-size: 0.59rem;
}

.motor-branch-card .branch-details-btn {
  min-height: 18px;
  font-size: 0.58rem;
}

.motor-protection {
  padding: 26px 0;
  background: #fffaf8;
}

.motor-protection .container-xxl {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 0.75fr;
  gap: 26px;
  align-items: center;
  padding: 18px 28px;
  border: 1px solid #f0e5e1;
  border-radius: 8px;
}

.motor-protection-copy h2 {
  margin: 0 0 11px;
  font-size: clamp(1.7rem, 2.5vw, 2.25rem);
  line-height: 1;
}

.motor-protection-copy p:not(.eyebrow) {
  max-width: 300px;
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.65rem;
  line-height: 1.5;
}

.motor-protection-steps {
  padding-left: 22px;
  border-left: 1px solid #e7cfd0;
}

.motor-protection-steps .steps-title {
  margin: 0 0 7px;
  color: var(--perla-muted);
  font-size: 0.67rem;
}

.motor-protection-steps ol {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.motor-protection-steps li {
  display: grid;
  grid-template-columns: 22px 1fr;
  column-gap: 7px;
  align-items: center;
}

.motor-protection-steps li span {
  display: grid;
  grid-row: span 2;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--perla-red);
  border-radius: 50%;
  color: var(--perla-red);
  font-size: 0.61rem;
}

.motor-protection-steps strong {
  font-size: 0.61rem;
  line-height: 1.2;
}

.motor-protection-steps small {
  color: var(--perla-muted);
  font-size: 0.52rem;
  line-height: 1.2;
}

.motor-protection-image {
  width: 100%;
  max-width: 210px;
  margin-inline: auto;
}

@media (max-width: 991.98px) {
  .motor-hero-grid {
    grid-template-columns: 1fr;
  }

  .motor-hero-copy {
    padding: 42px 0 28px;
  }

  .motor-hero-copy p:not(.eyebrow) {
    max-width: 680px;
  }

  .motor-hero-media {
    height: 330px;
    margin: 0 -28px;
    border-radius: 30px 30px 0 0;
    border-top: 4px solid var(--perla-red);
    border-left: 0;
  }

  .motor-protection .container-xxl {
    grid-template-columns: 1fr 1fr;
  }

  .motor-protection-image {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: end;
    width: 180px;
  }
}

@media (max-width: 767.98px) {

  .motor-coverage-grid,
  .motor-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .motor-coverage-card {
    min-height: 190px;
  }

  .motor-protection .container-xxl {
    grid-template-columns: 1fr;
  }

  .motor-protection-image {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
  }

  .motor-protection-steps {
    padding: 18px 0 0;
    border-top: 1px solid #e7cfd0;
    border-left: 0;
  }
}

@media (max-width: 575.98px) {
  .motor-hero-copy {
    padding-top: 34px;
  }

  .motor-hero-copy h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .motor-hero-media {
    height: 270px;
    margin-inline: -24px;
  }

  .motor-coverage-grid,
  .motor-branch-grid {
    grid-template-columns: 1fr;
  }

  .motor-coverage-card {
    min-height: 0;
  }

  .motor-section-heading h2 {
    font-size: 2rem;
  }
}

.products-section {
  background: var(--perla-cream);
}

.featured-products-header {
  padding: 10px 0 18px;
}

.featured-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.featured-eyebrow .eyebrow {
  margin: 0;
  color: var(--perla-red);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
}

.eyebrow-line {
  display: block;
  flex: 1;
  max-width: 360px;
  height: 1px;
  background: rgba(151, 11, 23, 0.5);
}

.featured-products-content {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) 1px minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
}

.featured-products-title {
  max-width: 760px;
}

.featured-products-title h2 {
  margin: 0;
  color: var(--perla-black);
  font-size: clamp(2rem, 3vw, 2.25rem);
  line-height: 1.08;
  max-width: 650px;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.featured-divider {
  width: 1px;
  height: 150px;
  background: rgba(151, 11, 23, 0.22);
}

.featured-products-summary {
  max-width: 260px;
  margin-left: 0;
}

.featured-products-summary .section-summary,
.section-summary {
  margin: 0;
  color: var(--perla-muted);
  font-size: 13px;
  line-height: 1.5;
  max-width: 260px;
  text-align: left;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border: 1px solid var(--perla-line);
  border-radius: 14px;
  background: white;
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-5px);
  border-color: #d9bdbe;
  box-shadow: 0 18px 38px rgba(48, 8, 13, 0.08);
}

.product-card .card-body {
  display: flex;
  flex-direction: column;
  padding: 25px;
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 1.15rem;
}

.product-card h3 {
  min-height: 50px;
  margin: 0 0 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.product-card p {
  flex: 1;
  margin: 0 0 18px;
  color: var(--perla-muted);
  font-size: 0.75rem;
  line-height: 1.65;
}

.product-card .text-link {
  position: relative;
  z-index: 3;
  align-self: flex-start;
}

.product-card .text-link:focus-visible {
  outline: 2px solid rgba(151, 11, 23, 0.42);
  outline-offset: 3px;
}

.product-detail {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  overflow-y: auto;
  padding: 28px 28px 64px;
  border-top: 3px solid var(--perla-red);
  background: rgba(255, 248, 247, 0.98);
  color: #4f4946;
  font-size: 0.8rem;
  line-height: 1.65;
  opacity: 0;
  overscroll-behavior: contain;
  transform: translateY(100%);
  transition: opacity 180ms ease, transform 220ms ease;
}

.product-card:hover .product-detail,
.product-card:focus-within .product-detail {
  opacity: 1;
  transform: translateY(0);
}

.about-band {
  padding: 76px 0;
  background: #850712;
  color: var(--perla-white);
}

.about-band .eyebrow-light {
  color: #f7c9cd;
}

.about-intro h2 {
  margin: 0 0 18px;
  color: var(--perla-white);
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.about-intro>p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  line-height: 1.7;
}

.about-intro .btn-light {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--perla-white);
  color: var(--perla-red);
}

.about-intro .btn-light:hover,
.about-intro .btn-light:focus {
  border-color: var(--perla-white);
  background: #fff5f5;
  color: var(--perla-red-dark);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-item {
  min-width: 0;
  padding: 8px 28px;
}

.value-item+.value-item {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.value-icon {
  display: block;
  margin-bottom: 20px;
  color: var(--perla-white);
  font-size: 1.35rem;
}

.value-item h3 {
  margin: 0 0 7px;
  color: var(--perla-white);
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1.08;
}

.value-item strong {
  display: block;
  color: #f7c9cd;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.value-item p {
  max-width: 210px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  line-height: 1.65;
}

.payment-section {
  background: white;
}

.payment-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 3.5vw, 3.2rem);
  line-height: 1.05;
}

.payment-copy>p:not(.eyebrow) {
  color: var(--perla-muted);
  line-height: 1.7;
}

.check-list {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  margin: 23px 0 27px;
  padding: 0;
  list-style: none;
}

.payment-note-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: #514b47;
  font-size: 0.78rem;
}

.note-icon {
  display: inline-flex;
  flex: 0 0 16px;
  width: 16px;
  justify-content: center;
  margin-top: 2px;
  color: var(--perla-red);
}

.note-icon i {
  display: inline-block;
  color: var(--perla-red);
}

.check-text {
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.5;
  word-break: break-word;
}

.payment-visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 455px;
  overflow: hidden;
}

.payment-person {
  position: absolute;
  right: -22px;
  bottom: -8px;
  z-index: 1;
  width: 64%;
  height: 430px;
  object-fit: contain;
  object-position: bottom;
}

.qr-phone {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: block;
  width: min(70%, 250px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.qrph-label {
  color: #2c2c2c;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.qrph-label span {
  color: var(--perla-red);
}

.qr-phone>strong {
  margin: 7px 0 4px;
  font-size: 0.7rem;
}

.qr-phone img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.qr-zoom-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: zoom-in;
}

.qr-zoom-trigger img {
  transition: opacity 180ms ease, transform 180ms ease;
}

.qr-zoom-trigger:hover img {
  opacity: 0.92;
  transform: scale(1.015);
}

.qr-zoom-trigger:focus-visible {
  outline: 3px solid rgba(151, 11, 23, 0.45);
  outline-offset: 4px;
}

.qr-zoom-note {
  display: block;
  margin-top: 5px;
  color: var(--perla-muted);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.qr-phone small {
  margin-top: 5px;
  color: var(--perla-red);
  font-size: 0.58rem;
  font-weight: 800;
  text-align: center;
}

.qr-phone .qr-zoom-note {
  color: var(--perla-muted);
  font-size: 0.68rem;
}

.qr-preview-modal .modal-dialog {
  width: min(92vw, 620px);
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.qr-preview-modal .modal-content {
  overflow: hidden;
}

.qr-preview-modal .modal-header {
  align-items: center;
  padding: 18px 22px 12px;
}

.qr-preview-modal .modal-title {
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  width: 100%;
  text-align: center;
}

.qr-preview-modal .modal-body {
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 8px 22px 24px;
}

.qr-preview-modal .modal-body img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(70vh, 650px);
  height: auto;
  object-fit: contain;
}

.steps-title {
  margin-bottom: 22px;
  color: var(--perla-black);
  font-size: 0.9rem;
  font-weight: 700;
}

.payment-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.payment-steps li {
  position: relative;
  display: flex;
  gap: 17px;
  align-items: flex-start;
  min-height: 91px;
}

.payment-steps li > span:last-child {
  min-width: 0;
  flex: 1 1 auto;
}

.payment-steps li:not(:last-child) {
  padding-bottom: 16px;
}

.payment-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 52px;
  width: 1px;
  height: calc(100% - 8px);
  background: rgba(151, 11, 23, 0.38);
}

.step-icon {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--perla-red);
  border-radius: 50%;
  background: white;
  color: var(--perla-red);
}

.payment-steps strong {
  display: block;
  margin: 5px 0 5px;
  color: var(--perla-black);
  font-size: 0.8rem;
}

.payment-steps small {
  display: block;
  color: var(--perla-muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.testimonial-section {
  padding: 52px 0;
  background: var(--perla-cream);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 22px;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--perla-line);
  border-radius: 50%;
  background: white;
  color: var(--perla-red);
}

.carousel-controls button:hover,
.carousel-controls button:focus-visible {
  border-color: var(--perla-red);
  background: var(--perla-red);
  color: white;
}

.testimonial-grid {
  overflow: hidden;
  --testimonial-gap: 18px;
  --testimonial-visible: 3;
  width: 100%;
  position: relative;
}

.testimonial-track {
  display: flex;
  align-items: stretch;
  gap: var(--testimonial-gap);
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-track.instant-reset {
  transition: none;
}

.testimonial-item {
  display: flex;
  flex: 0 0 auto;
  min-width: 0;
  transition: opacity 280ms ease, transform 280ms ease;
}

.testimonial-card {
  display: flex;
  width: 100%;
  height: 100%;
  border: 1px solid var(--perla-line);
  border-radius: 14px;
  background: var(--perla-warm-white);
  color: var(--perla-text);
  box-shadow: 0 8px 24px rgba(80, 40, 40, 0.06);
  opacity: 0.88;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-5px);
  border-color: #d8b7ba;
  box-shadow: 0 16px 32px rgba(80, 40, 40, 0.09);
  opacity: 1;
}

.testimonial-item.is-active .testimonial-card {
  transform: scale(1.03);
  border-color: #c9a8ab;
  box-shadow: 0 12px 36px rgba(80, 40, 40, 0.12), inset 0 0 0 1px rgba(151, 11, 23, 0.06);
  opacity: 1;
}

.testimonial-card .card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
  padding: 27px;
}

.quote-icon {
  flex: 0 0 auto;
  margin-bottom: 13px;
  color: var(--perla-red);
  font-size: 1.35rem;
}

.testimonial-card>.card-body>p,
.testimonial-card .card-body>p {
  flex: 1 1 auto;
  min-height: 112px;
  margin: 0 0 21px;
  color: #4f4f4f;
  font-size: 0.77rem;
  line-height: 1.72;
}

.testimonial-person {
  display: flex;
  flex: 0 0 auto;
  gap: 13px;
  align-items: center;
  margin-top: auto;
}

.testimonial-person img {
  flex: 0 0 55px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

.testimonial-person div {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-width: 0;
}

.testimonial-person strong {
  color: var(--perla-black);
  font-size: 0.75rem;
}

.testimonial-person span {
  margin-top: 3px;
  color: #746969;
  font-size: 0.62rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.faq-section {
  background: white;
}

.faq-section .section-heading h2 {
  margin-bottom: 14px;
}

.faq-section .section-summary {
  margin-top: 0;
}

.faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 10px;
  border: 1px solid var(--perla-line);
  border-radius: 10px;
  background: var(--perla-warm-white);
}

.faq-accordion .accordion-button {
  min-height: 57px;
  padding: 14px 18px;
  background: white;
  color: var(--perla-black);
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: #fff8f8;
  color: var(--perla-red);
}

.faq-accordion .accordion-button::after {
  filter: none;
  transform: scale(0.8);
}

.faq-accordion .accordion-body {
  padding: 16px 18px 20px;
  color: var(--perla-muted);
  font-size: 0.75rem;
  line-height: 1.68;
}

.faq-accordion .accordion-body p {
  margin: 0;
}

.faq-accordion .faq-list-intro {
  margin-top: 13px;
  color: var(--perla-text);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 13px 0 0;
  list-style: none;
}

.faq-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
}

.faq-list i {
  flex: 0 0 auto;
  margin-top: 4px;
  color: var(--perla-red);
  font-size: 0.7rem;
}

.faq-image {
  width: min(100%, 300px);
  margin: auto;
}

.consultant-cta {
  border: 0;
  background: var(--perla-red);
  color: var(--perla-white);
}

.consultant-cta .container-xxl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}

.cta-copy {
  display: flex;
  flex: 1 1 auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.cta-copy>div {
  min-width: 0;
}

.cta-icon {
  display: grid;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: transparent;
  color: var(--perla-white);
  font-size: 1.15rem;
}

.cta-copy h2 {
  margin: 0 0 3px;
  color: var(--perla-white);
  font-size: 1.38rem;
}

.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83rem;
}

.consultant-cta .btn {
  min-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--perla-white);
  color: var(--perla-red);
}

.consultant-cta .btn:hover,
.consultant-cta .btn:focus {
  background: #fff4f4;
  color: var(--perla-red-dark);
}

.consultant-cta .btn i {
  color: var(--perla-red);
}

.site-footer {
  padding: 52px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--perla-burgundy);
  color: rgba(255, 255, 255, 0.86);
}

.footer-brand img {
  width: 245px;
  margin-bottom: 21px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
}

.footer-brand p {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 9px;
  margin-top: 19px;
}

.social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: transparent;
  color: var(--perla-white);
  font-size: 0.72rem;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  color: var(--perla-white);
}

.site-footer h3 {
  margin: 0 0 19px;
  color: var(--perla-white);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a,
.footer-links button {
  margin-bottom: 9px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links a:focus-visible,
.footer-links button:focus-visible {
  color: var(--perla-white);
}

.footer-contact a,
.footer-contact p {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.67rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--perla-white);
}

.footer-address-trigger {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  width: 100%;
  margin: 0 0 11px;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  font: inherit;
  font-size: 0.67rem;
  line-height: 1.55;
  text-align: left;
  text-decoration: none;
}

.footer-address-trigger:hover,
.footer-address-trigger:focus-visible {
  color: var(--perla-white);
}

.footer-address-trigger:focus-visible {
  outline: 2px solid var(--perla-white);
  outline-offset: 4px;
}

.footer-address-trigger i {
  flex: 0 0 14px;
  margin-top: 3px;
  color: var(--perla-white);
  text-align: center;
}

.footer-contact i {
  width: 14px;
  margin-top: 3px;
  color: var(--perla-white);
  text-align: center;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
}

.modal-content {
  overflow: hidden;
  max-height: calc(100vh - 1.5rem);
  max-height: calc(100dvh - 1.5rem);
  border: 1px solid var(--perla-line);
  border-radius: 18px;
  background: var(--perla-warm-white);
  box-shadow: var(--perla-shadow);
}

.modal-header {
  align-items: flex-start;
  padding: 24px 26px 14px;
  border-bottom: 0;
}

.modal-header .eyebrow {
  margin-bottom: 5px;
}

.modal-title {
  margin: 0;
  font-size: 1.8rem;
}

.modal-body {
  overflow-y: auto;
  padding: 10px 26px 28px;
  overscroll-behavior: contain;
}

.map-location-address {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin: 0 0 20px;
  color: var(--perla-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.map-location-address i {
  flex: 0 0 14px;
  margin-top: 4px;
  color: var(--perla-red);
  text-align: center;
}

.map-options {
  display: grid;
  gap: 10px;
}

.map-option {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--perla-line);
  border-radius: 8px;
  color: var(--perla-black);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.map-option:hover,
.map-option:focus-visible {
  border-color: var(--perla-red);
  background: var(--perla-red-soft);
  color: var(--perla-red);
}

.map-option:focus-visible {
  outline: 3px solid rgba(151, 11, 23, 0.18);
  outline-offset: 2px;
}

.map-option-icon {
  width: 18px;
  color: var(--perla-red);
  text-align: center;
}

.map-option-arrow {
  margin-left: auto;
  font-size: 0.7rem;
}

.branch-modal .modal-dialog {
  width: min(92vw, 520px);
  max-width: 520px;
  margin-right: auto;
  margin-left: auto;
}

.branch-modal .modal-content {
  max-height: min(80dvh, 650px);
  border-color: rgba(151, 11, 23, 0.13);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(48, 8, 13, 0.16);
}

.branch-modal .modal-header {
  align-items: center;
  padding: 22px 24px 18px;
  border-bottom: 1px solid var(--perla-line);
}

.branch-modal-heading {
  display: flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.branch-modal-icon {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 1rem;
}

.branch-modal-heading>div {
  min-width: 0;
}

.branch-modal .modal-header .eyebrow {
  margin-bottom: 3px;
}

.branch-modal .modal-title {
  overflow-wrap: anywhere;
  font-size: 1.55rem;
  line-height: 1.15;
}

.branch-modal .btn-close {
  flex: 0 0 auto;
  margin: 0 0 0 16px;
}

.branch-modal .modal-body {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8px 24px 24px;
}

.branch-modal-details {
  display: grid;
}

.branch-modal-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  padding: 14px 0;
  border-bottom: 1px solid #f0e7e7;
}

.branch-modal-row:last-child {
  border-bottom: 0;
}

.branch-modal-row>i {
  margin-top: 3px;
  color: var(--perla-red);
  font-size: 0.82rem;
  text-align: center;
}

.branch-modal-row-content {
  min-width: 0;
}

.branch-modal-label {
  display: block;
  margin-bottom: 4px;
  color: var(--perla-muted);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.4;
  text-transform: uppercase;
}

.branch-modal-values {
  display: grid;
  gap: 4px;
  color: var(--perla-text);
  font-size: 0.8rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: normal;
}

.branch-modal-values a {
  width: fit-content;
  max-width: 100%;
  color: var(--perla-red-dark);
  overflow-wrap: anywhere;
  text-decoration: none;
}

.branch-modal-values .branch-map-link {
  display: block;
  width: 100%;
  padding: 2px 0;
}

.branch-modal-values a:hover {
  text-decoration: underline;
}

.branch-modal-values a:focus-visible {
  border-radius: 2px;
  outline: 3px solid rgba(151, 11, 23, 0.18);
  outline-offset: 2px;
}

.branch-modal.fade {
  transition: opacity 200ms linear;
}

.branch-modal.fade .modal-dialog {
  transform: translateY(8px);
  transition: transform 220ms ease-out;
}

.branch-modal.show .modal-dialog {
  transform: translateY(0);
}

.form-label {
  color: var(--perla-black);
  font-size: 0.73rem;
  font-weight: 700;
}

.form-control,
.form-select {
  min-height: 46px;
  border-color: #ddd3cf;
  border-radius: 8px;
  color: var(--perla-black);
  font-size: 0.82rem;
}

textarea.form-control {
  min-height: 98px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--perla-red);
  box-shadow: 0 0 0 3px rgba(151, 11, 23, 0.11);
}

.form-note {
  margin: 17px 0;
  color: var(--perla-muted);
  font-size: 0.66rem;
  line-height: 1.5;
}

.form-note i {
  margin-right: 7px;
  color: var(--perla-red);
}

.success-state,
.payment-preview {
  padding: 22px 8px;
  text-align: center;
}

.success-state>span {
  color: var(--perla-red);
  font-size: 3rem;
}

.success-state h3,
.payment-preview h3 {
  margin: 13px 0 8px;
  font-size: 1.5rem;
}

.success-state p,
.payment-preview p {
  color: var(--perla-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

.payment-preview img {
  width: 220px;
  margin: 16px auto;
}

.demo-badge,
.status-pill {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media (max-width: 1199.98px) {
  .site-header .navbar {
    min-height: 76px;
  }

  .navbar-brand {
    width: 210px;
  }

  .hero-section {
    padding-top: 14px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .payment-person {
    right: -4px;
    width: 58%;
  }
}

@media (max-width: 991.98px) {

  .page-about .container-xxl,
  .page-home .container-xxl {
    padding-inline: 28px;
  }

  .section {
    padding: 68px 0;
  }

  .hero-section {
    padding: 18px 0 88px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-assurances {
    max-width: 650px;
    margin-inline: auto;
    text-align: left;
  }

  .hero-visual {
    min-height: 500px;
    border-left: 0;
    border-radius: 26px;
  }

  .hero-visual img {
    height: 500px;
  }

  .solution-card {
    max-width: 620px;
    margin: auto;
  }

  .featured-products-content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .featured-divider {
    width: min(100%, 160px);
    height: 1px;
  }

  .featured-products-summary,
  .featured-products-summary .section-summary {
    max-width: 680px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro {
    text-align: center;
  }

  .about-intro>p:not(.eyebrow) {
    margin-inline: auto;
  }

  .payment-copy {
    text-align: center;
  }

  .check-list {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    text-align: left;
  }

  .payment-visual {
    min-height: 480px;
  }

  .payment-person {
    right: 10%;
    bottom: 0;
    width: min(48%, 290px);
    height: auto;
  }

  .qr-phone {
    left: 17%;
  }

  .payment-section .payment-steps {
    width: 100%;
    max-width: 680px;
    margin: auto;
  }

  .testimonial-grid {
    --testimonial-gap: 18px;
  }

  .testimonial-card {
    max-width: 640px;
    margin: auto;
  }

  .testimonial-card>.card-body>p,
  .testimonial-card .card-body>p {
    min-height: auto;
  }

  .faq-image {
    width: 250px;
  }

  .consultant-cta .container-xxl {
    gap: 24px;
  }
}

@media (max-width: 767.98px) {
  .container-xxl {
    padding-inline: 20px;
  }

  .section {
    padding: 58px 0;
  }

  .payment-section .payment-steps {
    width: 100%;
    max-width: none;
  }

  .payment-section .payment-steps li {
    gap: 14px;
    min-height: 0;
    padding-bottom: 20px;
  }

  .payment-section .payment-steps li:last-child {
    padding-bottom: 0;
  }

  .payment-section .payment-steps strong {
    margin-top: 3px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .payment-section .payment-steps small {
    font-size: 0.82rem;
    line-height: 1.6;
  }

  .featured-updates-section {
    padding: 40px 0;
  }

  .featured-updates-heading {
    margin-bottom: 10px;
  }

  .featured-updates-carousel {
    padding-inline: 35px;
  }

  .featured-updates-control {
    width: 44px;
    height: 44px;
  }

  .featured-updates-control i {
    font-size: 0.95rem;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .hero-visual {
    min-height: 410px;
  }

  .hero-visual img {
    height: 410px;
    object-position: 61% center;
  }

  .hero-photo-tag {
    right: 14px;
    bottom: 14px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 260px;
  }

  .product-card h3 {
    min-height: auto;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .value-item {
    padding: 26px 0;
  }

  .value-item:first-child {
    padding-top: 0;
  }

  .value-item+.value-item {
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .value-item p {
    max-width: 520px;
  }

  .payment-person {
    right: 0;
    bottom: 0;
    width: min(50%, 290px);
    height: auto;
  }

  .qr-phone {
    left: 3%;
  }

  .testimonial-header {
    flex-wrap: wrap;
    align-items: center;
  }

  .consultant-cta .container-xxl {
    flex-direction: column;
    align-items: stretch;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .consultant-cta .btn {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 575.98px) {

  .page-about .container-xxl,
  .page-home .container-xxl {
    padding-inline: 24px;
  }

  .about-hero-media {
    margin-inline: -24px;
  }

  .navbar-brand {
    width: 185px;
  }

  .featured-updates-section {
    padding: 40px 0;
  }

  .featured-updates-heading h2 {
    font-size: 1.62rem;
  }

  .featured-updates-carousel {
    padding-inline: 0;
  }

  .featured-updates-frame {
    border-radius: 10px;
  }

  .featured-update-link {
    border-radius: 9px;
  }

  .featured-updates-control {
    top: calc(50% - 9px);
    width: 44px;
    height: 44px;
  }

  .featured-updates-control.carousel-control-prev {
    left: -6px;
  }

  .featured-updates-control.carousel-control-next {
    right: -6px;
  }

  .featured-updates-indicators {
    margin-top: 9px;
  }

  .featured-update-image {
    aspect-ratio: 2 / 3;
  }

  .featured-video-trigger,
  .featured-video-learn-more {
    min-width: 44px;
    min-height: 44px;
  }

  .hero-section {
    padding-top: 40px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-assurances {
    grid-template-columns: 1fr;
    width: min(100%, 310px);
  }

  .hero-visual {
    min-height: 240px;
  }

  .hero-visual img {
    height: 240px;
  }

  .hero-photo-tag {
    display: none;
  }

  .solution-card .card-body {
    padding: 24px 22px 14px;
  }

  .solution-heading {
    gap: 10px;
  }

  .solution-icon {
    width: 48px;
    height: 48px;
  }

  .solution-image {
    height: 220px;
  }

  .payment-visual {
    min-height: clamp(380px, calc(115vw - 35px), 430px);
  }

  .payment-person {
    right: 0;
    bottom: 0;
    width: min(50%, 190px);
    height: auto;
  }

  .qr-phone {
    left: 0;
    bottom: 0;
  }

  .payment-copy .btn {
    width: 100%;
  }

  .faq-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .faq-section .row {
    --bs-gutter-y: 0;
    row-gap: 14px;
  }

  .faq-image {
    display: block;
    width: 140px;
    max-width: 140px;
    margin: 0 auto;
    height: auto;
  }

  .consultant-cta {
    margin-top: 0;
  }

  .consultant-cta .container-xxl {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .testimonial-header {
    gap: 18px;
  }

  .carousel-controls {
    flex: 0 0 auto;
  }

  .cta-copy {
    align-items: flex-start;
  }

  .cta-icon {
    width: 46px;
    height: 46px;
  }

  .cta-copy h2 {
    font-size: 1.14rem;
  }

  .modal-dialog {
    margin: 0.75rem;
  }

  .modal-header {
    gap: 12px;
    padding: 20px 20px 12px;
  }

  .modal-title {
    font-size: clamp(1.45rem, 7vw, 1.8rem);
  }

  .modal-body {
    padding: 8px 20px 22px;
  }

  .branch-modal .modal-dialog {
    width: calc(100vw - 24px);
    max-width: none;
    margin: 12px auto;
  }

  .branch-modal .modal-content {
    max-height: 85dvh;
  }

  .branch-modal .modal-header {
    padding: 18px 18px 15px;
  }

  .branch-modal .modal-body {
    padding: 6px 18px 18px;
  }

  .branch-modal-icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .branch-modal .modal-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 359.98px) {
  .container-xxl {
    padding-inline: 16px;
  }

  .navbar-brand {
    width: min(170px, calc(100vw - 94px));
  }

  .offcanvas-header,
  .offcanvas-body {
    padding-inline: 18px;
  }

  .offcanvas-header img {
    width: min(200px, calc(100vw - 90px));
  }

  .hero-copy h1 {
    font-size: clamp(2.6rem, 14vw, 3rem);
  }

  .hero-visual {
    min-height: 300px;
  }

  .hero-visual img {
    height: 300px;
  }

  .solution-card .card-body {
    padding-inline: 18px;
  }

  .solution-heading {
    gap: 10px;
  }

  .solution-icon {
    width: 48px;
    height: 48px;
  }

  .payment-visual {
    min-height: 380px;
  }

  .payment-person {
    right: 0;
    bottom: 0;
    width: min(50%, 190px);
    height: auto;
  }

}

@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .anniversary-visual,
  .anniversary-popup.is-leaving .anniversary-visual {
    animation: none !important;
  }

  .anniversary-popup {
    animation: anniversary-overlay-in 150ms ease-out forwards !important;
  }

  .anniversary-popup.is-leaving {
    animation: none !important;
    transition: opacity 150ms ease !important;
  }

  .anniversary-popup.is-leaving .anniversary-visual {
    transition: opacity 150ms ease !important;
  }
}

/* Homepage quote invitation and privacy notice. These layers are intentionally
   scoped so they do not alter the shared Bootstrap modal or page components. */
.quote-popup-backdrop {
  position: fixed;
  z-index: 1040;
  inset: 0;
  background: rgba(25, 24, 23, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.quote-popup-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.quote-popup {
  position: fixed;
  z-index: 1041;
  right: clamp(18px, 4vw, 56px);
  bottom: clamp(18px, 4vw, 48px);
  width: min(390px, calc(100vw - 36px));
  padding: 30px 30px 26px;
  border: 1px solid var(--perla-line);
  border-radius: var(--perla-radius);
  background: var(--perla-warm-white);
  box-shadow: 0 24px 70px rgba(48, 8, 13, 0.2);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.quote-popup.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.quote-popup-close,
.cookie-notice-close {
  display: inline-grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--perla-muted);
  cursor: pointer;
}

.quote-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.quote-popup-close:hover,
.quote-popup-close:focus-visible,
.cookie-notice-close:hover,
.cookie-notice-close:focus-visible {
  background: var(--perla-red-soft);
  color: var(--perla-red);
}

.quote-popup-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 12px;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 1.1rem;
}

.quote-popup .eyebrow {
  margin-bottom: 7px;
  font-size: 0.68rem;
}

.quote-popup h2 {
  margin: 0 0 10px;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.quote-popup p:not(.eyebrow) {
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.quote-popup-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 22px;
}

.quote-popup-actions .btn {
  flex: 1 1 auto;
}

.quote-popup-later {
  padding: 7px 0;
  border: 0;
  background: transparent;
  color: var(--perla-muted);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
}

.quote-popup-later:hover,
.quote-popup-later:focus-visible {
  color: var(--perla-red);
}

.feature-unavailable-notice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--perla-muted);
  line-height: 1.65;
}

.feature-unavailable-notice p { margin: 0; }

.feature-unavailable-icon {
  display: inline-grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--perla-red-soft);
  color: var(--perla-red);
}

.cookie-notice {
  position: fixed;
  z-index: 1042;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 15px;
  width: min(1240px, calc(100vw - 32px));
  padding: 15px 44px 15px 20px;
  border: 1px solid #ece5e5;
  border-top: 3px solid var(--perla-red);
  border-radius: 16px;
  background: var(--perla-warm-white);
  box-shadow: 0 18px 42px rgba(48, 8, 13, 0.14);
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-notice.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.cookie-notice p {
  flex: 1 1 auto;
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.cookie-notice-title {
  display: block;
  margin-bottom: 4px !important;
  color: var(--perla-text);
  font-size: 0.82rem !important;
  line-height: 1.2 !important;
}

.cookie-notice-copy a {
  color: var(--perla-red);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-notice-icon {
  display: inline-grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #f1d5d7;
  border-radius: 50%;
  background: var(--perla-red-soft);
  color: var(--perla-red);
  font-size: 0.95rem;
}

.cookie-notice-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-notice-actions .btn {
  min-height: 36px;
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.cookie-notice-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

/* Tawk injects its attention-grabber/chat nodes asynchronously. Keep them
   out of the way while an in-page consent or quote dialog is active. */
.perla-tawk-hidden {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Tawk can wrap the attention-grabber in generated nodes or an iframe whose
   source is assigned after load. The state class covers those variants. */
body.perla-tawk-suppressed [id*="tawk" i],
body.perla-tawk-suppressed [class*="tawk" i],
body.perla-tawk-suppressed iframe[src*="tawk.to" i],
body.perla-tawk-suppressed iframe[title*="chat" i] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@media (max-width: 575px) {
  .quote-popup {
    right: 18px;
    bottom: 18px;
    left: 18px;
    width: auto;
    padding: 26px 22px 22px;
  }

  .cookie-notice {
    display: block;
    bottom: 18px;
    padding: 14px 36px 14px 16px;
  }

  .cookie-notice-icon { float: left; margin: 0 12px 4px 0; }

  .cookie-notice-actions {
    justify-content: flex-end;
    margin-top: 10px;
  }
}

/* Featured video lightbox */
.featured-video-modal .modal-dialog {
  width: min(90vw, 1100px, calc(151.111vh - 92.444px));
  max-width: none;
  margin: 1.5rem auto;
}

.featured-video-modal .modal-content {
  position: relative;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.featured-video-player {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.featured-video-player video,
.featured-video-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}

.featured-video-player video[hidden],
.featured-video-player iframe[hidden] {
  display: none;
}

.featured-video-close {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: calc(100% + 8px);
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  pointer-events: auto;
}

.featured-video-close:hover,
.featured-video-close:focus-visible {
  color: #f5c7cb;
}

.featured-video-close:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.featured-video-open .modal-backdrop.show {
  opacity: 0.78;
}

@media (max-width: 991.98px) {

  .page-about .container-xxl,
  .page-home .container-xxl {
    padding-inline: 28px;
  }

  .featured-video-modal .modal-dialog {
    width: min(92vw, calc(151.111vh - 92.444px));
  }
}

@media (max-width: 575.98px) {

  .page-about .container-xxl,
  .page-home .container-xxl {
    padding-inline: 24px;
  }

  .about-hero-media {
    margin-inline: -24px;
  }

  .featured-video-trigger,
  .featured-video-learn-more {
    bottom: 7%;
    height: 8%;
  }

  .featured-video-trigger {
    left: 7%;
    width: 44%;
  }

  .featured-video-learn-more {
    left: 54%;
    width: 36%;
  }

  .featured-video-modal .modal-dialog {
    width: min(96vw, calc(145.778vh - 92.444px));
    margin: 3.5rem auto 1rem;
  }
}


/* Dedicated About page */
.navbar-nav .nav-link.active {
  position: relative;
  color: var(--perla-red);
}

.navbar-nav .nav-link.active:not(.dropdown-toggle)::after,
.navbar-nav .nav-link.dropdown-toggle.active::before {
  position: absolute;
  right: var(--nav-link-inline-padding);
  bottom: 17px;
  left: var(--nav-link-inline-padding);
  height: 2px;
  border-radius: 2px;
  background: var(--perla-red);
  content: "";
}

.mobile-nav-link.active {
  color: var(--perla-red);
}

.page-about .container-xxl,
.page-home .container-xxl {
  max-width: 1740px;
  padding-inline: 42px;
}

.about-page {
  background: var(--perla-warm-white);
}

.about-page h1,
.about-page h2 {
  letter-spacing: -0.035em;
}

.about-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--perla-line);
  background: linear-gradient(115deg, #fff 0%, #fffdfc 58%, #f7f1ef 100%);
}

.about-hero .container-xxl {
  max-width: 1740px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(460px, 0.95fr);
  min-height: 650px;
}

.about-hero-copy {
  align-self: center;
  max-width: 820px;
  padding: 72px 56px 72px 0;
}

.about-hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(3.25rem, 4.4vw, 5rem);
  line-height: 0.98;
}

.about-hero-copy h1 span {
  color: var(--perla-red);
}

.about-hero-lead {
  max-width: 640px;
  margin: 0 0 34px;
  color: var(--perla-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}

.about-stat-card {
  min-height: 136px;
  padding: 20px 18px;
  border: 1px solid var(--perla-line);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(75, 38, 38, 0.07);
}

.about-stat-icon {
  display: block;
  margin-bottom: 11px;
  color: var(--perla-red);
  font-size: 1.25rem;
}

.about-stat-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--perla-red);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1;
}

.about-stat-card small {
  color: var(--perla-muted);
  font-size: 0.7rem;
  line-height: 1.4;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-hero-media {
  position: relative;
  min-height: 650px;
  margin: 0;
  overflow: hidden;
  border-left: 7px solid #bd2431;
  border-radius: 48% 0 0 48%;
  background: #eadcda;
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 650px;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.92) contrast(1.03);
}

.about-story {
  padding: 74px 0 48px;
  background: #fff;
}

.about-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
}

.about-story-copy {
  max-width: 560px;
}

.about-story-copy h2,
.about-section-heading h2 {
  margin: 0 0 20px;
  font-size: clamp(2.3rem, 3.8vw, 4.05rem);
  line-height: 1.04;
}

.about-story-copy p:not(.eyebrow) {
  margin: 0 0 15px;
  color: var(--perla-muted);
  font-size: 0.9rem;
  line-height: 1.78;
}

.about-story-copy .btn {
  margin-top: 8px;
}

.about-story-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--perla-shadow);
}

.about-story-media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-principles {
  padding: 48px 0 56px;
  background: #fff;
}

.about-section-heading {
  margin-bottom: 28px;
}

.about-section-heading .eyebrow {
  margin-bottom: 8px;
}

.about-section-heading>p:last-child {
  max-width: 670px;
  margin: -8px auto 0;
  color: var(--perla-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.about-principles .about-section-heading {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}

.about-principles .about-section-heading .eyebrow {
  margin-bottom: 12px;
}

.about-principles .about-section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 3vw, 3.4rem);
  line-height: 1.08;
}

.about-principles .about-section-heading h2 span {
  color: var(--perla-red);
}

.about-principles .about-section-heading>.about-principles-lead {
  max-width: 650px;
  margin: 13px auto 0;
  color: var(--perla-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.about-principles .about-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-principles .about-principle {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  min-height: 0;
  height: auto;
  overflow: hidden;
  padding: clamp(1.4rem, 2vw, 1.8rem);
  padding-left: clamp(1.65rem, 2.4vw, 2.15rem);
  border: 1px solid rgba(151, 11, 23, 0.1);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(37, 20, 23, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.about-principles .about-principle::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 20px 0 0 20px;
  background: var(--perla-red);
  content: "";
}

.about-principle-icon,
.about-product-icon,
.about-branch-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--perla-red);
  background: var(--perla-red-soft);
}

.about-principles .about-principle-icon {
  position: relative;
  z-index: 1;
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  margin: 0;
  border-radius: 50%;
  background: rgba(151, 11, 23, 0.08);
  font-size: 1.4rem;
}

.about-principle h3,
.about-branch-card h3,
.about-product-card h3 {
  margin: 0 0 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
}

.about-principles .about-principle-content {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
}

.about-principles .principle-label {
  margin: 0 0 4px;
  color: var(--perla-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.about-principles .about-principle h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.65rem, 2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
}

.about-principles .about-principle-rule {
  display: block;
  width: 34px;
  height: 2px;
  margin: 10px 0 13px;
  border-radius: 2px;
  background: var(--perla-red);
}

.about-principles .about-principle-copy {
  position: relative;
  z-index: 1;
  margin: 0;
  padding-bottom: 38px;
  color: var(--perla-muted);
  font-size: 0.8rem;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.about-principles .about-principle-number {
  position: absolute;
  right: 18px;
  bottom: 10px;
  color: rgba(151, 11, 23, 0.075);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.about-branches {
  padding: 50px 0 66px;
  background: #fff;
}

.about-branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px 16px;
}

.about-branch-card {
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--perla-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(62, 33, 33, 0.06);
}

.about-branch-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--perla-red);
  color: #fff;
  font-size: 1rem;
}

.about-branch-card h3 {
  margin-bottom: 3px;
}

.about-branch-card p {
  margin: 0 0 4px;
  color: var(--perla-muted);
  font-size: 0.7rem;
}

.about-branch-card a,
.about-product-card a {
  color: var(--perla-red);
  font-size: 0.69rem;
  font-weight: 700;
  text-decoration: none;
}

.about-branch-card a i,
.about-product-card a i {
  margin-left: 5px;
  font-size: 0.58rem;
}

.about-branch-card a:hover,
.about-product-card a:hover {
  color: var(--perla-red-dark);
}

.branch-details-btn {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 30px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--perla-red);
  font: inherit;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  transition: color 180ms ease;
}

.branch-details-btn i {
  font-size: 0.58rem;
}

.branch-details-btn:hover {
  color: var(--perla-red-dark);
}

.branch-details-btn:focus-visible {
  border-radius: 3px;
  outline: 3px solid rgba(151, 11, 23, 0.18);
  outline-offset: 3px;
}

.about-products {
  padding: 58px 0 66px;
  border-top: 1px solid #f1e8e6;
  background: linear-gradient(180deg, #fffdfc, #fbf6f4);
}

.about-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.about-product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
  padding: 24px 17px;
  border: 1px solid var(--perla-line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 7px 24px rgba(62, 33, 33, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.about-product-card:hover {
  transform: translateY(-4px);
  border-color: #dcbfc1;
  box-shadow: 0 14px 34px rgba(62, 33, 33, 0.09);
}

.about-product-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.about-product-card h3 {
  min-height: 38px;
}

.about-product-card p {
  flex: 1;
  margin: 0 0 14px;
  color: var(--perla-muted);
  font-size: 0.7rem;
  line-height: 1.65;
}

.about-product-all {
  border-color: #e3c7c9;
}

.about-footer-cta {
  background: #ad0c1d;
}

.about-footer-cta .cta-icon {
  border-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 1199.98px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
    min-height: 610px;
  }

  .about-hero-copy {
    padding-right: 36px;
  }

  .about-hero-media,
  .about-hero-media img {
    min-height: 610px;
  }

  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-stat-card {
    min-height: 112px;
  }

  .about-branch-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-principles .about-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-principles .about-principle:last-child {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 991.98px) {

  .page-about .container-xxl,
  .page-home .container-xxl {
    padding-inline: 28px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-copy {
    max-width: none;
    padding: 66px 0 48px;
  }

  .about-hero-media {
    min-height: 450px;
    margin-inline: -28px;
    border-top: 6px solid #bd2431;
    border-left: 0;
    border-radius: 48% 48% 0 0;
  }

  .about-hero-media img {
    min-height: 450px;
  }

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-copy {
    max-width: 720px;
  }

  .about-principles {
    padding: 46px 0 52px;
  }

  .about-principles .about-principles-grid {
    grid-template-columns: 1fr;
  }

  .about-principles .about-principle,
  .about-principles .about-principle:last-child {
    grid-column: auto;
    min-height: 0;
  }

  .about-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .about-story {
    padding-top: 58px;
  }

  .about-story-copy h2,
  .about-section-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .about-branch-grid {
    grid-template-columns: 1fr;
  }

  .about-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {

  .page-about .container-xxl,
  .page-home .container-xxl {
    padding-inline: 24px;
  }

  .about-hero-media {
    margin-inline: -24px;
  }

  .about-hero-copy {
    padding-top: 50px;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.75rem, 13.5vw, 4.2rem);
  }

  .about-stats {
    gap: 10px;
  }

  .about-stat-card {
    padding: 17px 14px;
  }

  .about-hero-actions {
    display: grid;
  }

  .about-hero-actions .btn {
    width: 100%;
  }

  .about-hero-media {
    min-height: 330px;
  }

  .about-hero-media img {
    min-height: 330px;
  }

  .about-principles {
    padding: 42px 0 48px;
  }

  .about-principles .about-section-heading {
    margin-bottom: 26px;
  }

  .about-principles .about-section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .about-principles .about-principles-lead br {
    display: none;
  }

  .about-principles .about-principle {
    gap: 14px;
    padding: 22px 20px 20px 25px;
  }

  .about-principles .about-principle-icon {
    flex-basis: 54px;
    width: 54px;
    height: 54px;
    font-size: 1.2rem;
  }

  .about-principles .about-principle-number {
    right: 15px;
    bottom: 9px;
    font-size: 2.65rem;
  }

  .about-product-grid {
    grid-template-columns: 1fr;
  }

  .about-product-card {
    min-height: 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .about-principles .about-principle:hover {
    transform: translateY(-4px);
    border-color: rgba(151, 11, 23, 0.18);
    box-shadow: 0 18px 42px rgba(37, 20, 23, 0.09);
  }
}

/* About desktop density refinement */
@media (min-width: 992px) {
  .about-story {
    padding-block: 54px 30px;
  }

  .about-story-copy {
    max-width: 650px;
  }

  .about-story-copy h2 {
    font-size: clamp(2.3rem, 3vw, 3.35rem);
  }

  .about-story-copy p:not(.eyebrow) {
    margin-bottom: 11px;
    font-size: 0.84rem;
    line-height: 1.66;
  }

  .about-branches {
    padding-block: 38px 48px;
  }

  .about-products {
    padding-block: 42px 44px;
  }

  .about-product-card {
    min-height: 220px;
    padding-block: 20px;
  }
}

/* Board and management page */
.directors-page {
  overflow: hidden;
  background: #fff;
}

.directors-page h1,
.directors-page h2,
.directors-page h3 {
  letter-spacing: -0.035em;
}

.directors-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #3a0b10;
}

.directors-hero .container-xxl {
  position: relative;
  min-height: 360px;
}

.directors-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 72px 0 62px;
}

.directors-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-weight: 700;
  line-height: 0.98;
}

.directors-rule {
  display: block;
  width: 46px;
  height: 3px;
  margin: 25px 0 18px;
  background: #cf1d2d;
}

.directors-hero-lead {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.65;
}

.directors-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(40, 7, 11, 0.92) 0%, rgba(72, 8, 15, 0.74) 45%, rgba(72, 8, 15, 0.3) 100%), url('../images/perlaBuilding.png');
  background-position: center 48%;
  background-size: cover;
  content: "";
}

.directors-board {
  padding: 48px 0 45px;
  background: #fff;
}

.directors-section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(50px, 1fr) auto minmax(50px, 1fr);
  gap: 18px;
  align-items: center;
  width: min(100%, 710px);
  margin: 0 auto 28px;
  text-align: center;
}

.directors-section-heading > span {
  height: 1px;
  background: #eadbd9;
}

.directors-section-heading h2 {
  margin: 0;
  color: var(--perla-red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  line-height: 1.3;
  text-transform: uppercase;
}

.directors-section-heading i {
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: var(--perla-red);
  transform: translateX(-50%) rotate(45deg);
}

.directors-board-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px 16px;
  max-width: 1120px;
  margin: 0 auto;
}

.director-card {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 95px;
  padding: 19px 13px 15px;
  border: 1px solid #eee5e3;
  border-top: 2px solid var(--perla-red);
  background: #fff;
  text-align: center;
}

.director-card:nth-child(1) { grid-column: 2 / span 3; }
.director-card:nth-child(2) { grid-column: 5 / span 3; }
.director-card:nth-child(3) { grid-column: 8 / span 3; }

.director-card-chair {
  background: #fdf5f4;
}

.director-role {
  margin-bottom: 10px;
  padding: 3px 8px;
  background: #f9e4e2;
  color: var(--perla-red);
  font-size: 0.57rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.director-card h3 {
  margin: 0;
  color: #242022;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.93rem;
  font-weight: 600;
  line-height: 1.3;
}

.director-card-rule {
  display: block;
  width: 27px;
  height: 1px;
  margin-top: 10px;
  background: #dcaeb0;
}

.directors-officers {
  padding: 38px 0 48px;
  background: #fbf8f7;
}

.officers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 20px;
  max-width: 1060px;
  margin: 0 auto;
}

.officer-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) 1px minmax(125px, 0.92fr);
  gap: 14px;
  align-items: center;
  min-height: 43px;
  padding: 8px 18px;
  border: 1px solid #eee5e3;
  border-left: 4px solid var(--perla-red);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(68, 30, 31, 0.035);
}

.officer-row h3,
.officer-row p {
  margin: 0;
}

.officer-row h3 {
  color: #272224;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.3;
}

.officer-row > span {
  width: 1px;
  height: 18px;
  background: #edc8c7;
}

.officer-row p {
  color: var(--perla-muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.directors-footer-cta {
  background: #ad0c1d;
}

.directors-footer-cta .cta-icon {
  border-color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991.98px) {
  .directors-hero,
  .directors-hero .container-xxl { min-height: 350px; }

  .directors-hero-copy { max-width: 560px; }
  .directors-board-grid { gap: 16px 12px; }
  .director-card:nth-child(1),
  .director-card:nth-child(2),
  .director-card:nth-child(3) { grid-column: span 4; }
  .director-card:nth-child(1) { grid-column: 3 / span 4; }
  .director-card:nth-child(2) { grid-column: 7 / span 4; }
}

@media (max-width: 767.98px) {
  .directors-hero,
  .directors-hero .container-xxl { min-height: 390px; }

  .directors-hero-copy { padding: 55px 0 48px; }
  .directors-hero-copy h1 { font-size: clamp(2.8rem, 11vw, 4.15rem); }
  .directors-hero-lead { max-width: 360px; }
  .directors-board { padding-block: 42px 38px; }
  .director-card,
  .director-card:nth-child(1),
  .director-card:nth-child(2),
  .director-card:nth-child(3) { grid-column: span 6; }
  .directors-section-heading { gap: 12px; }
  .officers-grid { grid-template-columns: 1fr; gap: 8px; }
}

@media (max-width: 575.98px) {
  .directors-hero,
  .directors-hero .container-xxl { min-height: 410px; }

  .directors-hero-copy { padding-top: 48px; }
  .directors-hero-copy h1 { font-size: clamp(2.55rem, 12.6vw, 3.65rem); }
  .directors-hero-lead-break { display: none; }
  .directors-board-grid { grid-template-columns: 1fr; gap: 12px; }
  .director-card,
  .director-card:nth-child(1),
  .director-card:nth-child(2),
  .director-card:nth-child(3) { grid-column: auto; }
  .director-card { min-height: 88px; }
  .directors-officers { padding-block: 36px 42px; }
  .officer-row { grid-template-columns: minmax(0, 1fr); gap: 3px; padding: 12px 15px; }
  .officer-row > span { display: none; }
  .officer-row p { font-size: 0.7rem; }
}

/* Governance and financial reporting pages */
.governance-page,
.financials-page {
  overflow: hidden;
  background: #fff;
}

.governance-page h1,
.financials-page h1,
.governance-page h2,
.financials-page h2,
.governance-page h3,
.financials-page h3 {
  letter-spacing: -0.035em;
}

.governance-hero,
.financials-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #3a0b10;
}

.governance-hero::before,
.financials-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(40, 7, 11, 0.93) 0%, rgba(72, 8, 15, 0.76) 48%, rgba(72, 8, 15, 0.32) 100%), url('../images/perlaBuilding.png');
  background-position: center 48%;
  background-size: cover;
  content: "";
}

.governance-hero .container-xxl,
.financials-hero .container-xxl {
  position: relative;
  min-height: 360px;
}

.governance-hero-copy,
.financials-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 72px 0 62px;
}

.governance-hero-copy h1,
.financials-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.governance-hero-copy h1 span,
.financials-hero-copy h1 span { color: #f1a6ab; }

.governance-rule,
.financials-rule {
  display: block;
  width: 46px;
  height: 3px;
  margin: 25px 0 18px;
  background: #cf1d2d;
}

.governance-hero-lead,
.financials-hero-lead {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.65;
}

.governance-content,
.financials-content {
  padding: 58px 0 72px;
  background: #fff;
}

.governance-intro,
.financials-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.governance-intro-label,
.financials-intro-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-bottom: 15px;
  color: var(--perla-red);
}

.governance-intro-label span,
.financials-intro-label span { width: 46px; height: 1px; background: #eadbd9; }
.governance-intro-label p,
.financials-intro-label p { margin: 0; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; }
.governance-intro-label i,
.financials-intro-label i { font-size: 0.9rem; }
.governance-intro h2,
.financials-intro h2 { margin: 0 0 12px; color: var(--perla-black); font-size: clamp(2rem, 3vw, 3rem); }
.governance-intro > p,
.financials-intro > p { margin: 0; color: var(--perla-muted); font-size: 0.94rem; line-height: 1.75; }

.governance-document-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; max-width: 1080px; margin: 0 auto; }
.governance-document-card { display: flex; align-items: center; gap: 16px; min-height: 92px; padding: 17px 20px; border: 1px solid #eee5e3; border-left: 4px solid var(--perla-red); border-radius: 8px; background: #fff; box-shadow: 0 4px 12px rgba(68, 30, 31, 0.035); text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.governance-document-card:hover,
.governance-document-card:focus-visible { border-color: #dcaeb0; box-shadow: 0 10px 24px rgba(68, 30, 31, 0.08); color: inherit; transform: translateY(-2px); }
.governance-document-icon { display: inline-grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #fdf0ef; color: var(--perla-red); font-size: 1rem; }
.governance-document-copy { display: flex; min-width: 0; flex-direction: column; gap: 6px; }
.governance-document-copy strong { color: #272224; font-family: "Playfair Display", Georgia, serif; font-size: 0.95rem; line-height: 1.3; }
.governance-document-copy small { color: var(--perla-muted); font-size: 0.68rem; }
.governance-document-copy small i { margin-left: 5px; color: var(--perla-red); }

.financials-report-group { max-width: 1080px; padding: 27px 28px 30px; margin: 0 auto 24px; border: 1px solid #eee5e3; border-radius: 12px; background: #fff; box-shadow: 0 6px 18px rgba(68, 30, 31, 0.04); }
.financials-report-group-alt { background: #fbf8f7; }
.financials-group-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 22px; }
.financials-group-icon { display: inline-grid; flex: 0 0 46px; width: 46px; height: 46px; place-items: center; border-radius: 50%; background: #fdf0ef; color: var(--perla-red); font-size: 1.05rem; }
.financials-group-heading .eyebrow { margin-bottom: 5px; font-size: 0.65rem; }
.financials-group-heading h3 { margin: 0; color: var(--perla-black); font-size: 1.55rem; }
.financials-year-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px; }
.financials-year-card { display: flex; align-items: center; justify-content: space-between; min-height: 58px; padding: 13px 15px; border: 1px solid #eadbd9; border-radius: 6px; background: #fff; color: var(--perla-red); font-family: "Playfair Display", Georgia, serif; font-size: 1.1rem; font-weight: 700; text-decoration: none; transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease; }
.financials-year-card i { font-size: 0.7rem; }
.financials-year-card:hover,
.financials-year-card:focus-visible { background: #fff8f7; box-shadow: 0 7px 16px rgba(68, 30, 31, 0.08); color: var(--perla-red-dark); transform: translateY(-2px); }

@media (max-width: 991.98px) {
  .governance-document-grid { gap: 12px; }
  .financials-year-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 767.98px) {
  .governance-hero,
  .governance-hero .container-xxl,
  .financials-hero,
  .financials-hero .container-xxl { min-height: 390px; }
  .governance-hero-copy,
  .financials-hero-copy { padding: 55px 0 48px; }
  .governance-hero-copy h1,
  .financials-hero-copy h1 { font-size: clamp(2.8rem, 11vw, 4.15rem); }
  .governance-document-grid { grid-template-columns: 1fr; }
  .governance-content,
  .financials-content { padding-block: 42px 52px; }
  .financials-report-group { padding: 22px 18px 24px; }
  .financials-group-heading h3 { font-size: 1.35rem; }
}

@media (max-width: 575.98px) {
  .governance-hero,
  .governance-hero .container-xxl,
  .financials-hero,
  .financials-hero .container-xxl { min-height: 410px; }
  .governance-hero-copy,
  .financials-hero-copy { padding-top: 48px; }
  .governance-hero-copy h1,
  .financials-hero-copy h1 { font-size: clamp(2.55rem, 12.6vw, 3.65rem); }
  .governance-intro-label,
  .financials-intro-label { gap: 7px; }
  .governance-intro-label span,
  .financials-intro-label span { width: 20px; }
  .governance-intro-label p,
  .financials-intro-label p { font-size: 0.57rem; }
  .governance-document-card { min-height: 84px; padding: 14px; gap: 12px; }
  .governance-document-icon { flex-basis: 36px; width: 36px; height: 36px; font-size: 0.85rem; }
  .governance-document-copy strong { font-size: 0.86rem; }
  .financials-year-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Claims Guidelines page */
.claims-page { overflow: hidden; background: #fff; }
.claims-page h1, .claims-page h2, .claims-page h3, .claims-page h4 { letter-spacing: -0.035em; }
.claims-hero { position: relative; min-height: 360px; overflow: hidden; background: #3a0b10; }
.claims-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(40, 7, 11, .9), rgba(72, 8, 15, .56)), url('../images/claims.jfif') center / cover; content: ""; }
.claims-hero .container-xxl { position: relative; min-height: 360px; }
.claims-hero-copy { position: relative; z-index: 2; max-width: 700px; padding: 70px 0 58px; }
.claims-hero-copy h1 { margin: 0; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: clamp(3rem, 5vw, 4.8rem); line-height: .98; }
.claims-hero-copy h1 span { color: #f1a6ab; }
.claims-rule { display: block; width: 46px; height: 3px; margin: 25px 0 18px; background: #cf1d2d; }
.claims-hero-lead { max-width: 500px; margin: 0 0 20px; color: rgba(255, 255, 255, .92); font-size: .92rem; line-height: 1.65; }
.claims-breadcrumb { display: flex; gap: 10px; align-items: center; color: rgba(255, 255, 255, .86); font-size: .72rem; }
.claims-breadcrumb a { color: #fff; text-decoration: none; }
.claims-breadcrumb a:hover { color: #f1a6ab; }
.claims-content { padding: 62px 0 76px; background: #f7f8fb; }
.claims-layout { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(290px, .85fr); gap: 38px; max-width: 1120px; margin: 0 auto; }
.claims-main-column { min-width: 0; }
.claims-section-heading { margin-bottom: 34px; }
.claims-section-heading .eyebrow { margin-bottom: 8px; }
.claims-section-heading h2 { margin: 0 0 12px; color: var(--perla-black); font-size: clamp(2rem, 3vw, 2.8rem); }
.claims-section-heading > p:last-child { max-width: 700px; margin: 0; color: var(--perla-muted); font-size: .9rem; line-height: 1.7; }
.claims-guideline-section, .claims-requirements-section, .claims-tat-section { padding: 28px; margin-bottom: 24px; border: 1px solid #eee5e3; border-radius: 12px; background: #fff; box-shadow: 0 6px 18px rgba(68, 30, 31, .04); }
.claims-subheading { display: flex; align-items: center; gap: 12px; margin-bottom: 21px; }
.claims-subheading > span { display: grid; flex: 0 0 38px; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: #fdf0ef; color: var(--perla-red); font-size: .9rem; }
.claims-subheading h3 { margin: 0; color: var(--perla-black); font-size: 1.3rem; }
.claims-guideline-list { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; counter-reset: claim-step; }
.claims-guideline-list li { display: grid; grid-template-columns: 29px minmax(0, 1fr); gap: 12px; align-items: start; padding-bottom: 13px; border-bottom: 1px solid #f0e7e5; }
.claims-guideline-list li:last-child { padding-bottom: 0; border-bottom: 0; }
.claims-guideline-list li > span { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: var(--perla-red); color: #fff; font-size: .72rem; font-weight: 800; }
.claims-guideline-list p { margin: 3px 0 0; color: var(--perla-text); font-size: .82rem; line-height: 1.6; }
.claims-accordion { border-radius: 8px; overflow: hidden; }
.claims-accordion .accordion-item { border: 1px solid #eadede; border-bottom: 0; }
.claims-accordion .accordion-item:last-child { border-bottom: 1px solid #eadede; }
.claims-accordion .accordion-button { padding: 15px 17px; color: #302d2b; background: #fff; font-size: .82rem; font-weight: 700; box-shadow: none; }
.claims-accordion .accordion-button:not(.collapsed) { color: var(--perla-red); background: #fdf5f4; }
.claims-accordion .accordion-button:focus { border-color: #e0b9b7; box-shadow: 0 0 0 .2rem rgba(151, 11, 23, .1); }
.claims-accordion .accordion-button::after { width: .8rem; height: .8rem; background-size: .8rem; }
.claims-accordion .accordion-collapse,
.claims-accordion .accordion-body { background: #fff; color: var(--perla-text); }
.claims-accordion .accordion-body { padding: 17px 19px 19px; font-size: .78rem; line-height: 1.55; }
.claims-accordion .claims-requirement-intro,
.claims-accordion .claims-check-list span { color: var(--perla-text); }
.claims-requirement-intro { margin: 0 0 10px; color: var(--perla-muted); }
.claims-check-list { display: grid; gap: 9px; padding: 0; margin: 0; list-style: none; }
.claims-check-list li { display: flex; gap: 9px; align-items: flex-start; }
.claims-check-list li i { flex: 0 0 auto; margin-top: 4px; color: var(--perla-red); font-size: .72rem; }
.claims-tat-section { margin-bottom: 0; }
.claims-tat-table { width: 100%; margin: 0; border-collapse: collapse; color: var(--perla-text); font-size: .78rem; }
.claims-tat-table th, .claims-tat-table td { padding: 11px 13px; border: 1px solid #eadede; text-align: left; vertical-align: middle; }
.claims-tat-table th { color: #302d2b; background: #f2f5fa; font-weight: 800; }
.claims-tat-note { margin: 13px 0 0; color: var(--perla-muted); font-size: .7rem; }
.claims-support-column { min-width: 0; }
.claims-contact-card { position: sticky; top: 110px; padding: 27px 25px 24px; border: 1px solid #eee5e3; border-top: 3px solid var(--perla-red); border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(68, 30, 31, .06); }
.claims-contact-icon { display: grid; width: 44px; height: 44px; margin-bottom: 17px; place-items: center; border-radius: 50%; background: #fdf0ef; color: var(--perla-red); font-size: 1.05rem; }
.claims-contact-card .eyebrow { margin-bottom: 6px; }
.claims-contact-card h2 { margin: 0 0 9px; color: var(--perla-black); font-size: 1.6rem; }
.claims-contact-card > strong { display: block; margin-bottom: 17px; color: var(--perla-text); font-family: "Playfair Display", Georgia, serif; font-size: 1.02rem; }
.claims-contact-card dl { display: grid; gap: 12px; margin: 0 0 22px; }
.claims-contact-card dl > div { display: grid; grid-template-columns: 18px minmax(0, 1fr); gap: 9px; align-items: start; }
.claims-contact-card dt { color: var(--perla-red); font-size: .78rem; }
.claims-contact-card dd { margin: 0; color: var(--perla-muted); font-size: .72rem; line-height: 1.45; overflow-wrap: anywhere; }
.claims-contact-card dd a { color: inherit; text-decoration: none; }
.claims-contact-card dd a:hover { color: var(--perla-red); }
.claims-file-button { display: flex; width: 100%; align-items: center; justify-content: center; gap: 7px; }
.claims-file-button i:last-child { margin-left: 4px; }
.claims-notice { display: flex; gap: 10px; align-items: flex-start; padding: 17px 18px; margin-top: 17px; border: 1px solid #eadede; border-radius: 9px; background: #fff; color: var(--perla-muted); }
.claims-notice > i { flex: 0 0 auto; margin-top: 3px; color: var(--perla-red); }
.claims-notice p { margin: 0; font-size: .72rem; line-height: 1.55; }

@media (max-width: 991.98px) {
  .claims-layout { grid-template-columns: 1fr; gap: 24px; }
  .claims-contact-card { position: static; }
  .claims-support-column { display: grid; grid-template-columns: minmax(0, 1fr) minmax(240px, .8fr); gap: 17px; align-items: start; }
  .claims-notice { margin-top: 0; }
}

@media (max-width: 767.98px) {
  .claims-hero, .claims-hero .container-xxl { min-height: 390px; }
  .claims-hero-copy { padding: 55px 0 48px; }
  .claims-hero-copy h1 { font-size: clamp(2.8rem, 11vw, 4.15rem); }
  .claims-content { padding-block: 42px 54px; }
  .claims-guideline-section, .claims-requirements-section, .claims-tat-section { padding: 22px 17px; }
  .claims-support-column { grid-template-columns: 1fr; }
}

@media (max-width: 575.98px) {
  .claims-hero, .claims-hero .container-xxl { min-height: 410px; }
  .claims-hero-copy { padding-top: 48px; }
  .claims-hero-copy h1 { font-size: clamp(2.55rem, 12.6vw, 3.65rem); }
  .claims-hero-lead { font-size: .82rem; }
  .claims-subheading h3 { font-size: 1.12rem; }
  .claims-accordion .accordion-button { padding-inline: 13px; font-size: .76rem; }
  .claims-accordion .accordion-body { padding-inline: 14px; font-size: .73rem; }
  .claims-tat-table { min-width: 440px; }
  .claims-tat-section .table-responsive { overflow-x: auto; }
  .claims-contact-card { padding: 23px 18px 20px; }
}

/* Contact page */
.contact-page { overflow: hidden; background: #fff; }
.contact-page h1, .contact-page h2, .contact-page h3 { letter-spacing: -0.035em; }
.contact-hero { position: relative; min-height: 330px; overflow: hidden; background: #3a0b10; }
.contact-hero::before { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(40, 7, 11, .88), rgba(72, 8, 15, .46)), url('../images/perlaBuilding.png') center 48% / cover; content: ""; }
.contact-hero .container-xxl { position: relative; min-height: 330px; }
.contact-hero-copy { position: relative; z-index: 2; max-width: 650px; padding: 82px 0 64px; }
.contact-hero-copy h1 { margin: 0; color: #fff; font-family: "Playfair Display", Georgia, serif; font-size: clamp(3.2rem, 6vw, 5.2rem); line-height: 1; }
.contact-hero-copy h1 span { color: #f1a6ab; }
.contact-rule { display: block; width: 46px; height: 3px; margin: 25px 0 18px; background: #cf1d2d; }
.contact-hero-lead { max-width: 500px; margin: 0; color: rgba(255, 255, 255, .92); font-size: .92rem; line-height: 1.65; }
.contact-content { padding: 58px 0 72px; background: #f7f8fb; }
.contact-intro { max-width: 720px; margin: 0 auto 38px; text-align: center; }
.contact-intro h2 { margin: 0 0 13px; color: var(--perla-black); font-size: clamp(2rem, 3vw, 3rem); }
.contact-intro > p:last-child { margin: 0; color: var(--perla-muted); font-size: .94rem; line-height: 1.75; }
.contact-main-grid { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr); gap: 44px; align-items: center; max-width: 1080px; margin: 0 auto 48px; }
.contact-visual { display: flex; min-height: 0; align-self: center; align-items: center; justify-content: center; }
.contact-visual-image { display: block; width: 120%; height: auto; max-width: 120%; object-fit: contain; transform: translateY(-18px); }
.contact-form-wrap { padding: 30px 32px; border: 1px solid #eee5e3; border-radius: 12px; background: #fff; box-shadow: 0 8px 22px rgba(68, 30, 31, .05); }
.contact-form-wrap > .eyebrow { margin-bottom: 5px; }
.contact-form-note { margin: 0 0 19px; color: var(--perla-muted); font-size: .7rem; line-height: 1.5; }
.contact-form-note i { margin-right: 5px; color: var(--perla-red); }
.contact-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.contact-form-grid > div { min-width: 0; }
.contact-form-full { grid-column: 1 / -1; }
.contact-form label { display: block; margin-bottom: 6px; color: #302d2b; font-size: .72rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { display: block; width: 100%; padding: .72rem .8rem; border: 1px solid #eadede; border-radius: 6px; background: #fbfaf9; color: var(--perla-text); font-size: .82rem; }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--perla-red); outline: 0; box-shadow: 0 0 0 .2rem rgba(151, 11, 23, .12); }
.contact-form .btn { margin-top: 18px; }
.contact-form-trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.contact-form-status { display: flex; gap: 7px; align-items: flex-start; padding: 12px 13px; margin: 0 0 17px; border-radius: 7px; font-size: .76rem; line-height: 1.5; }
.contact-form-status i { flex: 0 0 auto; margin-top: 3px; }
.contact-form-status-success { background: #edf8f0; color: #28643a; }
.contact-form-status-error { background: #fdf0ef; color: var(--perla-red-dark); }
.contact-success { padding: 26px 10px; text-align: center; }
.contact-success > span { display: grid; width: 52px; height: 52px; margin: 0 auto 13px; place-items: center; border-radius: 50%; background: #fdf0ef; color: var(--perla-red); font-size: 1.4rem; }
.contact-success h3 { margin: 0 0 8px; font-size: 1.35rem; }
.contact-success p { margin: 0; color: var(--perla-muted); font-size: .82rem; line-height: 1.6; }
.contact-details { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; max-width: 1080px; margin: 0 auto 28px; }
.contact-detail-card { display: flex; gap: 12px; min-width: 0; padding: 18px 15px; border: 1px solid #eee5e3; border-radius: 8px; background: #fff; box-shadow: 0 4px 12px rgba(68, 30, 31, .035); }
.contact-detail-card-link { color: inherit; text-decoration: none; cursor: pointer; }
.contact-detail-card-link:hover { border-color: var(--perla-red); }
.contact-detail-card-link:focus-visible { outline: 2px solid var(--perla-red); outline-offset: 3px; }
.contact-detail-card > span { display: grid; flex: 0 0 32px; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: #fdf0ef; color: var(--perla-red); font-size: .8rem; }
.contact-detail-card h3 { margin: 0 0 6px; color: var(--perla-black); font-size: .98rem; }
.contact-detail-card p, .contact-detail-card a { display: block; margin: 0; color: var(--perla-muted); font-size: .7rem; line-height: 1.5; text-decoration: none; overflow-wrap: anywhere; }
.contact-detail-card a:hover { color: var(--perla-red); }
.contact-map-card { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1080px; padding: 24px 28px; margin: 0 auto; border: 1px solid #eadbd9; border-radius: 10px; background: #fff; }
.contact-map-card h2 { margin: 0 0 7px; font-size: 1.55rem; }
.contact-map-card p:last-child { max-width: 620px; margin: 0; color: var(--perla-muted); font-size: .78rem; line-height: 1.5; }
.contact-map-card .eyebrow { margin-bottom: 5px; }

@media (max-width: 991.98px) {
  .contact-main-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-visual { min-height: 260px; }
  .contact-visual-image { width: 100%; max-width: 100%; transform: none; }
  .contact-details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .contact-visual {
    height: auto;
    min-height: 0;
    margin: 0 auto;
    padding: 0;
  }

  .contact-visual-image {
    width: min(65vw, 280px);
    height: auto;
    max-width: 100%;
    max-height: 280px;
    margin: 0 auto;
    object-fit: contain;
  }
}

@media (max-width: 575.98px) {
  .contact-hero, .contact-hero .container-xxl { min-height: 360px; }
  .contact-hero-copy { padding: 62px 0 48px; }
  .contact-hero-copy h1 { font-size: clamp(2.8rem, 13vw, 4rem); }
  .contact-content { padding-block: 42px 52px; }
  .contact-form-wrap { padding: 22px 17px; }
  .contact-form-grid, .contact-details { grid-template-columns: 1fr; }
  .contact-form-full { grid-column: auto; }
  .contact-map-card { align-items: flex-start; flex-direction: column; padding: 21px 18px; }
  .contact-map-card .btn { width: 100%; }
}

@media (max-width: 480px) {
  .contact-visual-image {
    width: min(58vw, 240px);
    max-height: 240px;
  }
}

/* Privacy policy page */
.privacy-page {
  background: #fff;
}

.privacy-page h1,
.privacy-page h2,
.privacy-page h3 {
  letter-spacing: -0.025em;
}

.privacy-hero {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: var(--perla-burgundy);
  color: #fff;
}

.privacy-hero-image {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(48, 8, 13, 0.96) 0%, rgba(94, 10, 18, 0.78) 43%, rgba(94, 10, 18, 0.22) 100%), url('../images/perlaBuilding.png');
  background-position: center 48%;
  background-size: cover;
  opacity: 0.96;
}

.privacy-hero .container-xxl {
  position: relative;
  min-height: 360px;
}

.privacy-hero-copy {
  max-width: 520px;
  padding: 64px 0 54px;
}

.privacy-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 5vw, 4.65rem);
  line-height: 1;
}

.privacy-hero-rule {
  display: block;
  width: 40px;
  height: 3px;
  margin: 24px 0 17px;
  background: #e22d3d;
}

.privacy-hero-lead {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.9rem;
  line-height: 1.65;
}

.privacy-updated {
  display: flex;
  gap: 8px;
  align-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
}

.privacy-updated i { color: #f4aab0; }

.privacy-content {
  padding: 58px 0 72px;
  background: #fff;
}

.privacy-intro {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.privacy-intro-label {
  display: flex;
  gap: 13px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--perla-red);
}

.privacy-intro-label span {
  width: 46px;
  height: 1px;
  background: #e8c9ca;
}

.privacy-intro-label p {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.privacy-intro-label i { font-size: 0.9rem; }

.privacy-intro h2 {
  margin: 0 0 12px;
  color: #252124;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.14;
}

.privacy-intro > p:last-child {
  max-width: 760px;
  margin: 0 auto;
  color: var(--perla-muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.privacy-cards {
  display: grid;
  gap: 12px;
  max-width: 1080px;
  margin: 0 auto;
}

.privacy-card {
  display: grid;
  grid-template-columns: 52px 42px minmax(0, 1fr) 20px;
  gap: 15px;
  align-items: center;
  min-height: 92px;
  padding: 16px 20px;
  border: 1px solid #eee6e5;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(62, 30, 30, 0.035);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.privacy-card:hover,
.privacy-card:focus-within {
  border-color: #e2bfc1;
  box-shadow: 0 9px 24px rgba(62, 30, 30, 0.08);
  transform: translateY(-1px);
}

.privacy-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--perla-red-soft);
  color: #d0212e;
  font-size: 0.98rem;
}

.privacy-card-number {
  color: #c6252f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.privacy-card-copy { min-width: 0; }

.privacy-card-copy h3 {
  margin: 0 0 5px;
  color: #292426;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.3;
}

.privacy-card-copy p {
  margin: 0;
  color: var(--perla-muted);
  font-size: 0.74rem;
  line-height: 1.55;
}

.privacy-card-arrow {
  color: #c6252f;
  font-size: 0.72rem;
}

.privacy-dpo {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1080px;
  min-height: 120px;
  margin: 14px auto 0;
  padding: 22px 28px;
  overflow: hidden;
  border: 1px solid #f0dede;
  border-radius: 10px;
  background: linear-gradient(105deg, #fff6f5, #fffafa);
}

.privacy-dpo-icon {
  display: grid;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 2px solid var(--perla-red);
  border-radius: 12px 12px 16px 16px;
  color: var(--perla-red);
  font-size: 1.45rem;
}

.privacy-dpo h2 {
  margin: 0 0 5px;
  color: var(--perla-red);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
}

.privacy-dpo strong,
.privacy-dpo a {
  display: block;
  color: #302d2b;
  font-size: 0.75rem;
  line-height: 1.6;
  text-decoration: none;
}

.privacy-dpo a i { width: 15px; color: var(--perla-red); }
.privacy-dpo a:hover { color: var(--perla-red); }

.privacy-dpo-mark {
  position: absolute;
  right: 30px;
  color: rgba(151, 11, 23, 0.07);
  font-size: 5.2rem;
}

.privacy-footer-cta { background: #ad0c1d; }
.privacy-footer-cta .cta-icon { border-color: rgba(255, 255, 255, 0.75); }

@media (max-width: 767.98px) {
  .privacy-hero,
  .privacy-hero .container-xxl { min-height: 390px; }
  .privacy-hero-image { background-position: center 48%; }
  .privacy-hero-copy { padding: 55px 0 45px; }
  .privacy-content { padding-block: 42px 52px; }
  .privacy-card { grid-template-columns: 42px 30px minmax(0, 1fr) 14px; gap: 11px; padding: 14px 16px; }
  .privacy-card-icon { width: 38px; height: 38px; font-size: 0.9rem; }
  .privacy-card-copy h3 { font-size: 0.84rem; }
  .privacy-card-copy p { font-size: 0.72rem; line-height: 1.55; }
  .privacy-dpo { align-items: flex-start; padding: 20px; }
  .privacy-dpo-mark { right: -4px; bottom: 8px; font-size: 4.2rem; }
}

@media (max-width: 575.98px) {
  .privacy-hero,
  .privacy-hero .container-xxl { min-height: 410px; }
  .privacy-hero-copy h1 { font-size: clamp(2.75rem, 13vw, 4rem); }
  .privacy-hero-lead { font-size: 0.82rem; }
  .privacy-intro-label { gap: 7px; }
  .privacy-intro-label span { width: 20px; }
  .privacy-intro-label p { font-size: 0.57rem; }
  .privacy-card { grid-template-columns: 36px 28px minmax(0, 1fr); }
  .privacy-card-arrow { display: none; }
  .privacy-card-number { font-size: 1.15rem; }
  .privacy-card-copy p { font-size: 0.72rem; }
  .privacy-dpo { gap: 13px; }
  .privacy-dpo-icon { flex-basis: 42px; width: 42px; height: 42px; font-size: 1.15rem; }
}
