:root {
  --bg: #ffffff;
  --text: #1c2227;
  --muted: #56606a;
  --brand: #fd3101;
  --brand-dark: #e92c00;
  --brand-online: #0f9db2;
  --dark: #0b1418;
  --line: #e6eaef;
  --soft: #f7f9fb;
  --radius: 14px;
  --shadow: 0 10px 28px rgba(12, 22, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

[id] {
  scroll-margin-top: 160px;
}

.section-light {
  background: var(--soft);
}

.eyebrow {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0 0 8px;
}

.eyebrow.center,
.center {
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 4.8vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 3.3vw, 2.4rem);
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0 0 12px;
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
}

.brand-takaful {
  color: var(--brand);
}

.brand-online {
  color: var(--brand-online);
}

.brand-prubsn-lockup {
  display: inline-flex;
  align-items: baseline;
  gap: 0.28em;
}

.brand-prubsn-word {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
}

.brand-pru,
.brand-prubsn-takaful {
  color: var(--brand);
}

.brand-bsn {
  color: var(--brand-online);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.header-row {
  height: 80px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 216px;
  height: 100%;
  overflow: visible;
}

.brand img {
  width: auto;
  height: 62px;
  display: block;
  object-fit: contain;
  transform: scale(2);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  min-width: 0;
  overflow: visible;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #33404d;
}

.site-nav a:hover {
  color: var(--brand);
  border-color: #ffd6cc;
  background: #fff4f1;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.2;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: #33404d;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.nav-dropdown[open] summary::after {
  transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  color: var(--brand);
  border-color: #ffd6cc;
  background: #fff4f1;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 260px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 25, 35, 0.14);
  display: grid;
  gap: 14px;
  z-index: 80;
}

.nav-dropdown-group {
  display: grid;
  gap: 6px;
}

.nav-dropdown-group p {
  margin: 0 0 2px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a8794;
}

.nav-dropdown-menu a {
  justify-content: flex-start;
  min-height: 0;
  padding: 8px 10px;
  border-radius: 12px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 8px;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle-line {
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-cta {
  white-space: nowrap;
  min-height: 40px;
  padding: 10px 14px;
  line-height: 1;
}

.site-nav .mobile-nav-cta {
  display: none;
}

.header-highlights {
  border-top: 1px solid #f25b37;
  border-bottom: 1px solid #d92300;
  background: linear-gradient(90deg, #fd3101 0%, #f03a0f 55%, #df2a00 100%);
}

.header-highlights-row {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: #fff;
  font-weight: 700;
  padding: 4px 0;
}

.header-highlights-row span {
  position: relative;
  white-space: nowrap;
  line-height: 1.2;
}

.header-highlights-row span:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-outline {
  border-color: var(--brand);
  color: var(--brand);
}

.btn-outline:hover {
  background: var(--brand);
  color: #fff;
}

.hero {
  padding-top: 108px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfe 100%);
}

.hero-grid,
.two-col,
.promo-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-image-wrap {
  width: 100%;
  aspect-ratio: 3 / 2;
  max-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.stats-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}

.stat-card h3 {
  margin-bottom: 6px;
  color: var(--text);
}

.stat-card p {
  margin: 0;
}

.rounded-image {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.image-carousel {
  position: relative;
}

.image-carousel-viewport {
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.image-carousel-track {
  display: flex;
  transition: transform 0.35s ease;
  will-change: transform;
  touch-action: pan-y pinch-zoom;
}

.image-carousel-slide {
  min-width: 100%;
  margin: 0;
  aspect-ratio: 1 / 1;
}

.image-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow: none;
}

.image-carousel-control {
  position: absolute;
  top: calc(50% - 18px);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(253, 49, 1, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12, 22, 32, 0.12);
  transition: 0.2s ease;
}

.image-carousel-control:hover {
  background: var(--brand);
  color: #fff;
}

.image-carousel-control.prev {
  left: 10px;
}

.image-carousel-control.next {
  right: 10px;
}

.image-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(11, 20, 24, 0.22);
  backdrop-filter: blur(8px);
}

.image-carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: 0.2s ease;
}

.image-carousel-dot.is-active {
  width: 8px;
  background: #fff;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--muted);
}

.check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 700;
}

.promo-section {
  background: linear-gradient(120deg, #10212b 0%, #1f3d4f 100%);
}

.promo-section h2,
.promo-section p,
.promo-section .eyebrow {
  color: #f3f7fa;
}

.promo-section .eyebrow {
  opacity: 0.95;
}

.card-grid.three {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.info-card {
  position: relative;
  border-radius: 16px;
  perspective: 1400px;
  outline: none;
}

.info-card-inner {
  display: grid;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.info-card:hover .info-card-inner,
.info-card:focus .info-card-inner,
.info-card:focus-within .info-card-inner,
.info-card.is-flipped .info-card-inner {
  transform: rotateY(180deg);
}

.info-card-face {
  grid-area: 1 / 1;
  position: relative;
  border-radius: 16px;
  backface-visibility: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(17, 32, 45, 0.12);
  padding: 26px 20px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.info-card-front {
  background: linear-gradient(160deg, #ffffff 0%, #edf3f8 100%);
  justify-content: flex-start;
  text-align: left;
  overflow: hidden;
  padding: 0;
}

.info-card-front img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  object-position: center center;
  border-radius: 16px 16px 0 0;
  display: block;
  flex-shrink: 0;
  padding: 10px 10px 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
}

.info-card-front-body {
  padding: 18px 20px 20px;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
}

.info-card-front h3 {
  margin: 0 0 10px;
}

.info-card-front p {
  margin: 0;
  color: #415162;
}

.info-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(160deg, #11222e 0%, #0b1418 100%);
  color: #ecf2f7;
  justify-content: center;
}

.info-card-back h3 {
  color: #fff;
}

.info-card-back p {
  color: #c8d5df;
  margin-bottom: 20px;
}

.info-card-cta {
  width: 100%;
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
}

.info-card-cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.logos-section {
  background: #fff;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  align-items: center;
}

.logo-grid + .logo-grid {
  margin-top: 16px;
}

.logo-grid img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  padding: 8px;
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2a34;
  list-style: none;
  position: relative;
  padding-right: 26px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 10px 0 0;
}

.final-cta {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.final-cta-action {
  display: flex;
  justify-content: flex-end;
}

.site-footer {
  background: var(--dark);
  color: #dce6ee;
  padding-top: 52px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 28px;
}

.footer-grid h3 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
  color: #dce6ee;
}

.footer-grid a:hover {
  color: #fff;
}

.quotation-section {
  background:
    radial-gradient(circle at top left, rgba(253, 49, 1, 0.08), transparent 30%),
    radial-gradient(circle at top right, rgba(15, 157, 178, 0.08), transparent 24%),
    linear-gradient(180deg, #f5f8fb 0%, #ffffff 100%);
}

.quotation-card {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid #e8edf3;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 44px rgba(14, 25, 35, 0.08);
}

.quotation-card-copy h2 {
  max-width: 11ch;
  font-size: clamp(1.8rem, 3.4vw, 2.95rem);
  line-height: 0.96;
  margin-bottom: 14px;
}

.quotation-card-copy p:not(.eyebrow) {
  max-width: 32ch;
  font-size: 0.98rem;
  color: #5d6873;
}

.quotation-steps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.quotation-step {
  padding: 7px 12px;
  border-radius: 999px;
  background: #f0f4f7;
  color: #6f7a85;
  font-size: 0.78rem;
  font-weight: 700;
}

.quotation-step.is-active {
  background: rgba(253, 49, 1, 0.1);
  color: var(--brand);
}

.quotation-form {
  display: block;
}

.quotation-form-step {
  display: none;
  gap: 14px;
}

.quotation-form-step.is-active {
  display: grid;
}

.quotation-form-step[hidden] {
  display: none !important;
}

.form-field {
  display: grid;
  gap: 6px;
}

.form-field label {
  font-size: 0.94rem;
  font-weight: 600;
  color: #2a323a;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d6dee7;
  border-radius: 12px;
  background: #fff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: rgba(253, 49, 1, 0.5);
  box-shadow: 0 0 0 4px rgba(253, 49, 1, 0.12);
}

.quotation-form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.quotation-prev {
  min-width: 116px;
}

.quotation-next,
.quotation-submit {
  min-width: 156px;
}

.quotation-submit {
  box-shadow: 0 12px 24px rgba(233, 44, 0, 0.18);
}

.footer-logo {
  width: 130px;
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 28px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #b9c8d3;
}

.floating-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  line-height: 0;
}

.floating-wa img {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
}

.back-to-top {
  position: fixed;
  left: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
  border-radius: 8px;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 1024px) {
  .header-row {
    position: relative;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "brand . menu";
    min-height: 72px;
    height: 72px;
    gap: 12px;
    padding: 0;
  }

  .brand {
    grid-area: brand;
    width: 176px;
  }

  .desktop-header-cta {
    display: none;
  }

  .menu-toggle {
    grid-area: menu;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-area: unset;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 12px 26px rgba(15, 25, 35, 0.14);
    padding: 6px 12px;
    z-index: 70;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 9px 4px;
    border-bottom: 1px solid #eef3f7;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    background: transparent;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown summary {
    width: 100%;
    position: relative;
    justify-content: center;
    padding: 9px 4px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #eef3f7;
    background: transparent;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    padding: 8px 0 4px 12px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    gap: 12px;
  }

  .nav-dropdown-group {
    gap: 4px;
  }

  .nav-dropdown-group p {
    font-size: 0.68rem;
  }

  .nav-dropdown summary::after {
    position: absolute;
    right: calc(50% - 32px);
    margin-left: 0;
  }

  .nav-dropdown-menu a {
    padding: 8px 0;
    border-radius: 0;
    border: 0;
    min-height: 0;
    justify-content: flex-start;
  }

  .site-nav .mobile-nav-cta {
    display: inline-flex;
    width: auto;
    min-width: 220px;
    max-width: 100%;
    align-self: center;
    margin-top: 10px;
    justify-content: center;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    box-shadow: 0 10px 24px rgba(233, 44, 0, 0.22);
  }

  .header-highlights-row {
    justify-content: center;
    gap: 12px;
    min-height: auto;
    padding: 6px 0;
    overflow: visible;
    flex-wrap: wrap;
    font-size: 0.76rem;
  }

  .header-highlights-row span {
    white-space: normal;
    text-align: center;
    max-width: 30ch;
  }

  .header-highlights-row span::after {
    display: none;
  }

  .hero-grid,
  .two-col,
  .promo-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 500px;
  }

  .final-cta-action {
    justify-content: flex-start;
  }

  .card-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .image-carousel {
    max-width: 540px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quotation-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .quotation-card-copy h2,
  .quotation-card-copy p:not(.eyebrow) {
    max-width: none;
  }

  .desktop-only {
    display: none;
  }
}

@media (max-width: 640px) {
  .header-highlights {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .header-row {
    min-height: 68px;
    height: 68px;
    gap: 8px;
  }

  .brand {
    width: 156px;
  }

  .card-grid.three {
    grid-template-columns: 1fr;
  }

  .brand img {
    height: 50px;
    transform: scale(2);
  }

  .header-cta {
    width: auto;
    max-width: 150px;
    text-align: center;
    min-height: 36px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }

  .header-highlights-row {
    font-size: 0.72rem;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 2px;
    min-height: auto;
    padding: 4px 0 3px;
    line-height: 1.2;
  }

  .header-highlights-row span {
    max-width: 100%;
    text-align: right;
  }

  .hero-actions .btn,
  .final-cta-action .btn,
  .info-card-cta {
    width: 100%;
  }

  .quotation-card {
    padding: 20px 16px;
    border-radius: 22px;
    gap: 18px;
  }

  .quotation-card-copy h2 {
    max-width: none;
    font-size: clamp(1.5rem, 8.8vw, 2.25rem);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .quotation-card-copy p:not(.eyebrow) {
    font-size: 0.92rem;
    max-width: 30ch;
  }

  .quotation-card-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  .quotation-steps {
    margin-top: 12px;
  }

  .quotation-form-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .quotation-prev,
  .quotation-next,
  .quotation-submit {
    width: 100%;
    min-width: 0;
  }

  .image-carousel {
    padding-bottom: 0;
  }

  .image-carousel-control {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .image-carousel-control.prev {
    left: 8px;
  }

  .image-carousel-control.next {
    right: 8px;
  }

  .hero-image-wrap {
    aspect-ratio: 3 / 2;
    max-height: 380px;
  }

  [id] {
    scroll-margin-top: 120px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
  }

  .stats-grid,
  .footer-grid,
  .logo-grid {
    grid-template-columns: 1fr 1fr;
  }

  .info-card-face {
    padding: 22px 18px 18px;
  }

  .info-card-front {
    padding: 0;
  }

  .info-card-front img {
    width: 100%;
    aspect-ratio: auto;
    height: auto;
    padding: 0;
    background: none;
  }

  .info-card-front-body {
    padding: 16px 18px 18px;
  }

  .floating-wa {
    right: 12px;
    bottom: 12px;
  }

  .floating-wa img {
    width: 50px;
    height: 50px;
  }

  .back-to-top {
    left: 12px;
    bottom: 12px;
  }
}
