:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-pale: #f5e6c0;
  --gold-dim: #7a5f22;
  --ivory: #faf6ed;
  --dark: #0d0b08;
  --dark2: #1a1610;
  --dark3: #120f0b;
  --p2-bg: #ffffff;
  --p2-text: #0a0806;
  --ops-color: #e07830;
  --ops-bg: #ffe2cd;
  --dist-color: #3a7bd5;
  --dist-bg: #bed3fd;
  --guest-color: #2eaa72;
  --guest-bg: #8bffc1;
  --fin-color: #9b59b6;
  --fin-bg: #dbbfff;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #ffffff;
  color: #0a0806;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 600;
  overflow-x: hidden;
  cursor: default;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 800;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  animation: grain 0.5s steps(1) infinite;
}
@keyframes grain {
  0% {
    background-position: 0 0;
  }
  20% {
    background-position: -40px 20px;
  }
  40% {
    background-position: 60px -30px;
  }
  60% {
    background-position: -20px 50px;
  }
  80% {
    background-position: 30px -10px;
  }
}

/* Common */
.common-eyebrow {
  font-size: 18px;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0 16px;
  font-weight: 700;
  justify-content: center;
}
.common-eyebrow::before,
.common-eyebrow::after {
  content: "";
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.common-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #0a0806;
  text-align: center;
  margin-bottom: 12px;
}
.common-title em {
  font-style: normal;
  color: #7a5f22;
}

.common-sub {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16.5px;
  line-height: 1.7;
  color: #0a0806;
  letter-spacing: 0.03em;
  max-width: 600px;
  font-weight: 500;
  margin: 0 auto 16px;
  text-align: center;
}

/* For page 2 */
.suite-hero-left .common-sub {
  text-align: justify;
}
.suite-hero-left .common-eyebrow {
  justify-content: flex-start;
}

/* ====Cards Common===== */
.common-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  letter-spacing: 0.03em;
  color: #0a0806;
  margin-bottom: 7px;
  font-weight: 800;
  display: block;
  line-height: 1.25;
}
.pt-card .common-card-title {
  margin: 10px 0 20px;
}

.common-card-desc {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  line-height: 1.6;
  color: #4a3f2c;
  letter-spacing: 0.015em;
  font-weight: 500;
  max-width: 320px;
  display: block;
}

.mod-row:hover .mod-row-title {
  color: var(--gold-dim);
}

@media (max-width: 768px) {
  .suite-hero-left .common-eyebrow {
    margin: 0 0 25px;
  }
  .common-eyebrow {
    font-size: 14px;
  }
  .common-eyebrow::before,
  .common-eyebrow::after {
    content: "";
    width: 22px;
  }
  .cert-eyebrow {
    font-size: 12px !important;
    margin: 50px 30px 0;
  }
}

@media (max-width: 500px) {
  .common-card-title {
    font-size: 16px;
  }
  .common-card-desc {
    font-size: 14px;
  }
}

/* ═══════════════ PAGE 1 ═══════════════ */
.page1 {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.top-nav {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 7px 32px;
  background: linear-gradient(
    180deg,
    rgba(13, 11, 8, 0.72) 0%,
    transparent 100%
  );
  transition:
    background 0.5s,
    padding 0.4s;
}

.top-nav .nav-logo-wrap {
  grid-column: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-nav img {
  height: 75px;
  display: block;
  filter: brightness(0) invert(1);
  cursor: pointer !important;

}

.top-nav.scrolled {
  background: rgb(47 44 40 / 58%);
  padding: 7px 32px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(14px);
  top: 0;
}

.nav-left {
  grid-column: 1;
  display: flex;
  align-items: center;
}
.nav-right {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}
.nav-right .nav-menu {
  translate: none;
  gap: 28px;
}
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  padding: 0;
  margin: 0;

  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;

  color: #fff;

  cursor: pointer;
  transition: color 0.3s ease;
}
.nav-btn:hover {
  color: #6bbcff;
}

@keyframes fadeY {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ═══════════════════════════════════════════════════════
   NAV DROPDOWN — glassmorphism, no icons
   ═══════════════════════════════════════════════════════ */

.nav-menu li {
  position: static;
}

.nav-menu li.has-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
}

.nav-dd-arrow {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
  stroke: currentColor;
  opacity: 0.75;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-menu li.has-dropdown.dd-open .nav-dd-arrow {
  transform: rotate(180deg);
}

/* ── glass panel, floats below nav, never touches edges ── */
.nav-dropdown {
  position: fixed;
  top: var(--nav-h, 104px);
  left: 0;
  right: 0;
  width: 100%;
  padding: 18px 24px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition:
    opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.35s;
  z-index: 150;
}

.nav-menu li.has-dropdown.dd-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* the actual glass surface */
.nav-dd-glass {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 28px;
  background: rgb(0 0 0 / 7%);
  backdrop-filter: blur(34px) saturate(160%);
  -webkit-backdrop-filter: blur(34px) saturate(160%);
  border: 0.75px solid rgba(255, 255, 255);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 0 60px rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

/* soft top sheen, like light hitting curved glass */
.nav-dd-glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

/* faint blue-glow edge, echoes #6bbcff brand accent through the glass */
.nav-dd-glass::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  box-shadow: inset 0 0 1px rgba(107, 188, 255, 0.5);
  pointer-events: none;
}

/* default state: panel matches the transparent hero-overlay look */
.nav-dd-glass {
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* scrolled state: panel matches .top-nav.scrolled exactly */
.top-nav.scrolled ~ .nav-menu .nav-dropdown .nav-dd-glass,
#nav.scrolled .nav-dropdown .nav-dd-glass {
  background: rgb(0 0 0 / 70%);
  border-color: rgb(0, 0, 0);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-dd-inner {
  position: relative;
  z-index: 1;
  padding: 44px 50px 46px;
  display: grid;
  grid-template-columns: 0.85fr 2fr;
  gap: 50px;
}

/* ── left rail ── */
.nav-dd-rail {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding-right: 40px;
  margin: auto 0;
}
.nav-dd-rail-eyebrow {
  font-family: "Cinzel", Georgia, serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffbc12;
  margin-bottom: 14px;
  display: block;
}
.nav-dd-rail-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  text-shadow: 0 2.5px 15px rgb(0 0 0);
}
.nav-dd-rail-desc {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  color: rgb(232 232 232);
  line-height: 1.7;
  margin-bottom: 24px;
  text-shadow: 0 2.5px 15px rgb(0 0 0);
}
.nav-dd-rail .nav-dd-rail-cta {
  border-radius: 25px;
  font-family: "Cinzel", Georgia, serif !important;
  font-size: 11px;
  width: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 10px !important;
  background: linear-gradient(135deg, #6bbcff 0%, #6bbcff 50%, #6bbcff 100%);
  background-size: 200% auto;
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: all 0.45s;
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #000 !important;
}
.nav-dd-rail .nav-dd-rail-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s;
}
.nav-dd-rail .nav-dd-rail-cta:hover::before {
  transform: translateX(100%);
}
.nav-dd-rail .nav-dd-rail-cta:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.5);
}

/* ── right grid: text-only rows, glass chips on hover ── */
.nav-dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
  align-content: start;
}

.nav-dd-grid .nav-dd-row {
  display: flex;
  padding: 16px 18px;
  gap: 10px;
  align-items: baseline;
  text-decoration: none;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    backdrop-filter 0.3s ease;

  color: rgb(255 255 255);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.12em;
  padding: 15px 20px;
  border-radius: 7px;
  background: rgb(0 0 0 / 7.5%);
  cursor: pointer !important;
}
.nav-dd-row:hover {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-dd-row div {
  display: flex;
  flex-direction: column;
}

.nav-menu li a::after {
  background: none;
  display: none;
}

.nav-dd-title {
  font-family: "Raleway", sans-serif !important;

  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 5px;
  line-height: 1.3;
  display: block;
}
.nav-dd-desc {
  font-family: "Raleway", sans-serif !important;
  font-size: 12px;
  font-weight: 500;
  color: rgb(255 255 255 / 85%);
  line-height: 1.5;
  display: block;
}
.nav-dd-row:hover .nav-dd-desc {
  color: rgba(255, 255, 255, 0.8);
}

/* gold hairline under title, draws in on hover — same motif as .suite-check */
.nav-dd-rule {
  display: block;
  width: 0%;
  height: 1px;
  margin-top: 9px;
  background: #c9a84c;
  transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-dd-row:hover .nav-dd-rule {
  width: 28px;
}

@media (max-width: 1100px) {
  .nav-dd-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 32px 38px;
  }
  .nav-dd-rail {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 0;
    padding-bottom: 26px;
  }
}

@media (max-width: 991px) {
  .nav-dropdown {
    display: none;
  }
}

/* ___Navbar ends here___ */

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgb(13 11 8 / 6%) 0%,
    rgb(13 11 8 / 13%) 45%,
    rgba(13, 11, 8, 0.35) 100%
  );
}
.hero-grad2 {
  position: absolute;
  inset: 0;
}
.hero-content {
  position: absolute;
  left: clamp(20px, 6vw, 100px);
  bottom: clamp(80px, 18vh, 160px);
  max-width: min(680px, 55vw);
  z-index: 10;
}

.hero-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 3.5vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s both;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.feature-ticker {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  text-align: right;
  pointer-events: none;
  max-width: min(340px, 42vw);
}
.feature-ticker-label {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5em;
  color: #6bbcff;
  text-shadow:
    0 0 6px rgba(107, 188, 255, 0.6),
    0 0 12px rgba(107, 188, 255, 0.4);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.ticker-item {
  display: none;
  opacity: 0;
  transform: translateY(10px);
}
.ticker-item.active {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  animation: ticker-in 0.65s forwards;
}

@keyframes ticker-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ticker-num {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(0.68rem, 1.2vw, 0.9rem);
  color: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}
.ticker-text {
  /* font-family: "Playfair Display", Georgia, serif; */
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 2vw, 1.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.75);
  letter-spacing: 0.06em;
}
.ticker-dots {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  margin-top: 18px;
  pointer-events: auto;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.3);
  transition:
    background 0.4s,
    transform 0.4s;
  cursor: pointer;
}
.ticker-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}
.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 13px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  translate: 66px -26px;
  color: white;
  opacity: 0;
  animation: fadeUp 0.8s 2s both;
}
.sh-line {
  width: 35px;
  height: 1.4px;
  background: white;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.sh-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 100%;
  background: var(--gold);
  animation: sp 2s ease-in-out infinite;
}
@keyframes sp {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.discover-words {
  display: flex;
  align-items: center;
  min-width: 220px;
  height: 1.7em;
}
#tw-word {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 30px;
  letter-spacing: 0.3em;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  color: #6bbcff;
  text-shadow:
    0 0 6px rgba(107, 188, 255, 0.6),
    0 0 12px rgba(107, 188, 255, 0.4);
}
.discover {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 30px;
  margin-right: 5px;
  line-height: 1.08;
  letter-spacing: 0.06em;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s both;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

@media (max-width: 700px) {
  .top-nav.scrolled {
    padding: 8px 16px;
  }
  .top-nav,
  .strip {
    padding: 10px 16px;
  }
  .feature-ticker {
    position: absolute;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    bottom: 72px;
    text-align: center;
    max-width: 90vw;
    pointer-events: auto;
  }
  .ticker-item.active {
    justify-content: center;
  }
  .ticker-dots {
    justify-content: center;
  }
}
@media (max-width: 800px) {
  .hero-content {
    left: 20px;
    right: 20px;
    max-width: 100%;
    bottom: auto;
    top: 40%;
    transform: translateY(-70%);
  }
}
@media (max-width: 900px) {
  .hero-title {
    font-size: clamp(1.3rem, 4vw, 2.4rem);
  }
}
@media (max-width: 540px) {
  .hero-title {
    font-size: clamp(1.05rem, 5.5vw, 1.6rem);
    white-space: normal;
  }
}
/* ═══════════════ PAGE 2 — PURE WHITE ═══════════════ */
.page2 {
  background: #ffffff;
  position: relative;
  color: #0a0806;
}
.p2-divider {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.suite-hero {
  position: relative;
  padding: 40px 50px;
  overflow: hidden;
  background: #ffffff;
}
.suite-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 80% 50%,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.suite-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 70%
  );
  right: -100px;
  top: -100px;
  animation: orb-float 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-20px, 30px) scale(1.05);
  }
}
.suite-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1.75fr 1.1fr;
  gap: 15px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 1024px) {
  .suite-hero-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .suite-hero-center {
    order: 3;
    grid-column: 1/-1;
  }
}
@media (max-width: 640px) {
  .suite-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .suite-hero-center {
    order: 2;
  }
}
.sec-tag {
  font-size: 18px;
  letter-spacing: 0.5em;
  color: var(--gold-dim);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-weight: 700;
}
.sec-tag::before {
  content: "";
  width: 22px;
  height: 1.5px;
  background: var(--gold-dim);
}
.suite-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 3.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #0a0806;
  text-align: center;
}
.suite-title em {
  font-style: normal;
  color: var(--gold-dim);
  display: block;
}
.suite-desc {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16.5px;
  line-height: 1.9;
  color: #0a0806;
  letter-spacing: 0.03em;
  margin-top: 20px;
  max-width: 600px;
  font-weight: 500;
  text-align: justify;
}
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
.phone-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.22) 0%,
    transparent 70%
  );
  animation: phone-glow-pulse 3s ease-in-out infinite;
  pointer-events: none;
}
@keyframes phone-glow-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}
.phone-frame {
  position: relative;
  width: 300px;
  height: 500px;
  background: linear-gradient(160deg, #2c2520 0%, #1a1410 40%, #0f0c09 100%);
  border-radius: 42px;
  padding: 10px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 2px #0a0806,
    0 0 0 4px rgba(201, 168, 76, 0.35),
    0 0 0 6px rgba(0, 0, 0, 0.6),
    0 40px 90px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: phone-levitate 4s ease-in-out infinite;
}

@keyframes phone-levitate {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}
.phone-frame::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 90px;
  width: 4px;
  height: 36px;
  background: linear-gradient(180deg, #2a2218, #1a1410, #2a2218);
  border-radius: 2px 0 0 2px;
}
.phone-frame::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 110px;
  width: 4px;
  height: 56px;
  background: linear-gradient(180deg, #2a2218, #1a1410, #2a2218);
  border-radius: 0 2px 2px 0;
}
.phone-screen-wrap {
  background: #f0ede6;
  border-radius: 34px;
  height: 425px;
  overflow: hidden;
  position: relative;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px 6px;
  background: #f0ede6;
}
.sb-time {
  font-weight: 800;
  font-size: 0.52rem;
  color: #1a1410;
  letter-spacing: 0.04em;
}
.sb-icons {
  display: flex;
  gap: 5px;
  align-items: center;
}
.phone-screen {
  padding: 6px 10px 14px;
  background: #f5f2eb;
}
.phone-header {
  font-size: 0.46rem;
  letter-spacing: 0.22em;
  color: #7a5f22;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid rgba(201, 168, 76, 0.3);
  padding-bottom: 6px;
}
.phone-card {
  background: #2a2218;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  padding: 9px 10px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.phone-card-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.phone-card-icon.orange {
  background: linear-gradient(135deg, #e07830, #c05820);
}
.phone-card-icon.blue {
  background: linear-gradient(135deg, #3a8ce8, #2060c0);
}
.phone-card-icon.green {
  background: linear-gradient(135deg, #30c870, #189050);
}
.phone-card-icon.purple {
  background: linear-gradient(135deg, #a050e0, #7030b0);
}
.phone-card-text {
  flex: 1;
  min-width: 0;
}
.phone-card-title {
  color: #f5f0e8;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  margin-bottom: 2px;
}
.phone-card-sub {
  color: rgba(240, 230, 210, 0.65);
  font-size: 0.5rem;
}
.phone-stat-row {
  display: flex;
  gap: 5px;
  margin-top: 8px;
}
.phone-stat {
  flex: 1;
  background: #2a2218;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 10px;
  padding: 8px 4px;
  text-align: center;
}
.phone-stat-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  color: #e8c97a;
  font-weight: 700;
  line-height: 1;
}
.phone-stat-lbl {
  font-size: 0.3rem;
  letter-spacing: 0.2em;
  color: rgba(240, 230, 210, 0.6);
  text-transform: uppercase;
  margin-top: 3px;
}
.suite-checks {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  counter-reset: ledger-row;
}
.suite-checks::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 4px;
  bottom: 4px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(201, 168, 76, 0.45) 6%,
    rgba(201, 168, 76, 0.45) 94%,
    transparent 100%
  );
  z-index: 0;
}
.suite-check {
  counter-increment: ledger-row;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 10px 18px 15px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid rgba(122, 95, 34, 0.14);
  overflow: visible;
  isolation: isolate;
}

.suite-checks .suite-check:last-child {
  border-bottom: none;
}

/* soft page-lift backdrop on hover, replacing the old diagonal shine sweep */
.suite-check::before {
  content: "";
  position: absolute;
  inset: 2px -8px;
  background: linear-gradient(
    90deg,
    rgba(250, 246, 237, 0.92) 0%,
    rgba(250, 246, 237, 0.45) 55%,
    transparent 100%
  );
  border-radius: 10px;
  opacity: 0;
  transform: scaleY(0.86);
  transition:
    opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
  pointer-events: none;
}
.suite-check:hover {
  transform: none;
  box-shadow: none;
}
.suite-check:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.suite-check:hover::after {
  height: 100%;
}
/* ---------- the wax-seal medallion ---------- */
.check-icon {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  color: #000;
  /* background: #6bbcff; */
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 10px -3px rgba(122, 95, 34, 0.4);
  z-index: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.check-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  pointer-events: none;
}
.check-icon::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition:
    border-color 0.35s,
    inset 0.35s;
}
.check-icon.icon-1 {
  background: #f7cba4;
}
.check-icon.icon-2 {
  background: #9cd1ff;
}
.check-icon.icon-3 {
  background: #80ffa0;
}
.check-icon.icon-4 {
  background: #ffa7cc;
}
.check-icon svg {
  width: 20px;
  height: 20px;
}
.suite-check:hover .check-icon {
  transform: translateY(-1px) rotate(-4deg) scale(1.06);
}
.suite-check:hover .check-icon::after {
  inset: -6px;
  border-color: rgba(201, 168, 76, 0.35);
}

.suite-check > div:not(.check-icon)::after {
  content: "";
  display: block;
  width: 38px;
  height: 1.5px;
  margin-top: 12px;
  background-color: rgba(201, 168, 76, 0.3);
  background-image: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.suite-check:hover > div:not(.check-icon)::after {
  background-size: 100% 100%;
}

.app-badges {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 28px;
  align-items: center;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 175px;
}
.store-badge:hover {
  background: #1c1c1e;
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
}
.store-badge-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.store-badge-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.store-badge-sub {
  font-family: "Montserrat", sans-serif;
  font-size: 0.48rem;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.04em;
  font-weight: 600;
  white-space: nowrap;
}
.store-badge-name {
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.1;
  white-space: nowrap;
}
.cta-group {
  gap: 14px;
  display: flex;
  width: 100%;
  gap: 10px;
  margin: 10px 0;
}
.btn-trial {
  border-radius: 25px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  width: 100%;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 10px;
  background: linear-gradient(135deg, #6bbcff 0%, #6bbcff 50%, #6bbcff 100%);
  background-size: 200% auto;
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-weight: 900;
  position: relative;
  overflow: hidden;
  transition: all 0.45s;
  box-shadow: 0 8px 28px rgba(201, 168, 76, 0.35);
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-trial::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 30%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s;
}
.btn-trial:hover::before {
  transform: translateX(100%);
}
.btn-trial:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(201, 168, 76, 0.5);
}
.btn-book {
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;

  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 10px;
  background: transparent;
  color: #0a0806;
  border: 1.5px solid #0a0806;
  cursor: pointer;
  transition: all 0.4s;
  align-self: flex-start;
  border-radius: 25px;
  font-weight: 900;
  width: 100%;
}
.btn-book:hover {
  background: linear-gradient(135deg, #6bbcff 0%, #6bbcff 50%, #6bbcff 100%);
  border: 1px solid #6bbcff;
  color: #fff;
  transform: translateY(-2px);
}
.rv {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rv-l {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rv-r {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rv.on,
.rv-l.on,
.rv-r.on {
  opacity: 1;
  transform: translate(0);
}

.core-modules-page {
  position: relative;
  background: #ffffff;
  padding-bottom: 75px;
  overflow: hidden;
}

.core-modules-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.169) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.158) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.7;

  /* fade only top/bottom edges by a FIXED pixel amount,
     not based on total element height */
  mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    black 120px,
    black calc(100% - 200px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    black 120px,
    black calc(100% - 200px),
    transparent 100%
  );

  pointer-events: none;
}

/* illustration + glows — much less white-wash so it's actually visible */
.core-modules-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%),
    radial-gradient(
      circle at right -170px top -330px,
      rgba(201, 168, 76, 0.3) 0%,
      rgba(201, 168, 76, 0.15) 28%,
      rgba(201, 168, 76, 0.04) 55%,
      transparent 75%
    ),
    radial-gradient(
      circle at left -170px bottom -340px,
      rgba(107, 188, 255, 0.26) 0%,
      rgba(107, 188, 255, 0.12) 32%,
      rgba(107, 188, 255, 0.04) 60%,
      transparent 78%
    );

  background-repeat: no-repeat;
  background-position:
    bottom center,
    right -170px top -330px,
    left -170px bottom -340px;
  background-size:
    100% 140px,
    900px 900px,
    800px 800px;
}

@media (max-width: 991px) {
  .core-modules-page::after {
    background-size:
      100% 110px,
      650px 650px,
      580px 580px;
  }
}

@media (max-width: 600px) {
  .core-modules-page::before {
    opacity: 0.5;
  }
  .core-modules-page::after {
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%),
      radial-gradient(circle at top right, rgba(201, 168, 76, 0.14), transparent 38%),
      radial-gradient(circle at bottom left, rgba(107, 188, 255, 0.1), transparent 42%);
    background-position: bottom center, top right, bottom left;
    background-size: 100% 70px, auto, auto;
  }
}

/* removed the full-bleed white overlay that was blanking the header area */
.mod-section-header {
  text-align: center;
  padding: 40px 24px 0;
  position: relative;
  z-index: 2;
}

.mod-rule {
  width: 300px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 24px auto 0;
}
.mod-filters {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  padding: 0 10px;
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.mod-filters-mobile {
  display: none;
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 20;
}

.mod-dd-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 2px solid #6bbcff;
  border-radius: 50px;
  padding: 14px 20px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0a0806;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    border-radius 0.2s ease;
}

.mod-dd-toggle:hover {
  border-color: #008cff;
  box-shadow: 0 4px 16px rgba(107, 188, 255, 0.25);
}

.mod-dd-chevron {
  color: #1a6fa8;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.mod-filters-mobile.open .mod-dd-toggle {
  border-radius: 20px 20px 0 0;
  border-bottom-color: transparent;
}

.mod-filters-mobile.open .mod-dd-chevron {
  transform: rotate(180deg);
}

.mod-dd-menu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: 100%;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border: 2px solid #6bbcff;
  border-top: none;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.3s ease,
    opacity 0.25s ease;
}

.mod-filters-mobile.open .mod-dd-menu {
  max-height: 300px;
  opacity: 1;
}

.mod-dd-item {
  display: block;
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 12px 14px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #0a0806;
  border-radius: 30px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.mod-dd-item:hover {
  background: #eaf6ff;
  color: #1a6fa8;
}

.mod-dd-item.active {
  background: #6bbcff;
  color: #ffffff;
}

@media (max-width: 800px) {
  .mod-filters {
    display: none;
  }
  .mod-filters-mobile {
    display: block;
  }
  .mod-list-wrap {
    margin: 20px auto 0 !important;
  }
}

.filter-pill {
  --fp-color: #0a0806;
  --fp-bg: #f0ede6;
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  background: #ffffff;
  color: #0a0806;
  border: 1.5px solid rgb(107, 188, 255);
  cursor: pointer;
  border-radius: 130px;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  font-weight: 700;
  font-size: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  min-width: 0;
}

.fp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fp-color);
  flex-shrink: 0;
  transition: all 0.35s ease;
  box-shadow: 0 0 0 3px var(--fp-bg);
}

.filter-pill[data-filter="all"] .fp-dot {
  background: #c9a84c;
  box-shadow: 0 0 0 3px #f5e6c0;
}

.filter-pill:hover {
  background: rgb(215, 237, 255);
  border-color: rgb(0, 140, 255);
  color: var(--fp-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.filter-pill[data-filter="all"]:hover {
  background: rgb(107, 188, 255);
  border-color: rgb(107, 188, 255);
  color: #7a5f22;
}

.filter-pill:hover .fp-dot {
  transform: scale(1.3);
}

.filter-pill.active {
  background: rgb(107, 188, 255);
  color: #000;
  border-color: rgb(107, 188, 255);
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.filter-pill.active .fp-dot {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}

.filter-pill[data-filter="all"].active .fp-dot {
  background: #e8c97a;
  box-shadow: 0 0 0 3px rgba(232, 201, 122, 0.25);
}

.filter-pill:active {
  transform: translateY(0) scale(0.97);
}
.mod-list-wrap {
  max-width: 1200px;
  margin: 60px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  align-items: start;
}

.mod-col {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mod-col::before {
  display: none;
}

.mod-row.visible {
  opacity: 1;
  transform: translateY(0);
}

.mod-dot {
  display: none;
}

.mod-row {
  position: relative;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media (max-width: 860px) {
  .mod-list-wrap {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.mod-row.visible {
  opacity: 1;
  transform: translateY(0);
}
.mod-dot {
  position: absolute;
  left: clamp(18px, 4vw, 29px);
  top: 30px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.3);
  z-index: 3;
  transition: transform 0.4s;
  transform: translateX(-50%);
}
.mod-dot {
  display: none;
}
.mod-row:hover .mod-dot {
  transform: translateX(-50%) scale(1.35);
}
.mod-card-row {
  position: relative;
  margin-left: 0;
  background: #ffffff;
  border: 1.4px solid #6bbcff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 3px 14px rgba(10, 8, 6, 0.05);
  transition:
    box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.4s,
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mod-card-row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  border-radius: 22px 0 0 22px;
  opacity: 0;
  transition: opacity 0.4s;
}
.mod-row:hover .mod-card-row::before {
  opacity: 1;
}
.mod-row[data-cat="operations"] .mod-card-row::before {
  /* background: linear-gradient(180deg, var(--ops-color), #f5a855); */
  background: linear-gradient(180deg, var(--dist-color), #6aaff0);
}
.mod-row[data-cat="distribution"] .mod-card-row::before {
  background: linear-gradient(180deg, var(--dist-color), #6aaff0);
}
.mod-row[data-cat="guest"] .mod-card-row::before {
  /* background: linear-gradient(180deg, var(--guest-color), #5dd4a0); */
  background: linear-gradient(180deg, var(--dist-color), #6aaff0);
}
.mod-row[data-cat="finance"] .mod-card-row::before {
  /* background: linear-gradient(180deg, var(--fin-color), #c08fe0); */
  background: linear-gradient(180deg, var(--dist-color), #6aaff0);
}
.mod-row[data-cat="operations"] .mod-dot {
  background: var(--ops-color);
  box-shadow: 0 0 0 4px rgba(224, 120, 48, 0.2);
}
.mod-row[data-cat="distribution"] .mod-dot {
  background: var(--dist-color);
  box-shadow: 0 0 0 4px rgba(58, 123, 213, 0.2);
}
.mod-row[data-cat="guest"] .mod-dot {
  background: var(--guest-color);
  box-shadow: 0 0 0 4px rgba(46, 170, 114, 0.2);
}
.mod-row[data-cat="finance"] .mod-dot {
  background: var(--fin-color);
  box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.2);
}

.mod-card-row:hover {
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(10, 8, 6, 0.1);
  border-color: #864efe;
  transform: translateY(-4px);
}
.mod-card-header {
  display: flex;
  gap: 18px;
  padding: 26px 15px;
  cursor: pointer;
  user-select: none;
  flex-wrap: nowrap;
  height: auto;
  min-height: 132px;
  align-items: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;

  /* layered gradient mesh instead of flat color */
  background: linear-gradient(160deg, #f5fafe 0%, #e3f1ff 100%);
}
.mod-card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    135deg,
    rgba(107, 188, 255, 0.05) 0px,
    rgba(107, 188, 255, 0.05) 1px,
    transparent 1px,
    transparent 12px
  );
  pointer-events: none;
  z-index: 1;
}
/* soft top highlight + bottom edge line, glass feel without the glow blobs */
.mod-card-header::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(107, 188, 255, 0.18);
  pointer-events: none;
  z-index: 1;
}

.mod-card-header > * {
  position: relative;
  z-index: 2;
}
/* ── NEW: left-edge accent border, single color, draws in on hover ── */
.mod-card-header .mod-edge-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #6bbcff, rgb(0, 140, 255));
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 3;
  position: absolute !important;
  margin: 0;
}
.mod-row:hover .mod-card-header .mod-edge-bar {
  transform: scaleY(1);
}

.mod-row a {
  text-decoration: none;
  cursor: pointer !important;
}

.mod-row-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.mod-row-icon svg {
  width: 35px;
  color: #000;
  height: 35px;
}

@media (max-width: 480px) {
  .mod-row-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
}
.mod-row[data-cat="operations"] .mod-row-icon {
  background: var(--ops-bg);
}
.mod-row[data-cat="distribution"] .mod-row-icon {
  background: var(--dist-bg);
}
.mod-row[data-cat="guest"] .mod-row-icon {
  background: var(--guest-bg);
}
.mod-row[data-cat="finance"] .mod-row-icon {
  background: var(--fin-bg);
}
.mod-row:hover .mod-row-icon {
  transform: rotate(-6deg) scale(1.1);
}

.mod-row-text {
  flex: 1;
  padding-top: 2px;
  width: 100%;
}

.mod-row-cat {
  font-family: "Cinzel", Georgia, serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  font-weight: 800;
  white-space: nowrap;
  display: inline-block;
  margin-bottom: 8px;
}
.mod-row[data-cat="operations"] .mod-row-cat {
  background: var(--ops-bg);
  color: var(--ops-color);
}
.mod-row[data-cat="distribution"] .mod-row-cat {
  background: var(--dist-bg);
  color: var(--dist-color);
}
.mod-row[data-cat="guest"] .mod-row-cat {
  background: var(--guest-bg);
  color: var(--guest-color);
}
.mod-row[data-cat="finance"] .mod-row-cat {
  background: var(--fin-bg);
  color: var(--fin-color);
}

.mod-row-action {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  white-space: nowrap;
  transition:
    gap 0.3s,
    color 0.3s;
}
.mod-row[data-cat="operations"] .mod-row-action {
  color: var(--ops-color);
}
.mod-row[data-cat="distribution"] .mod-row-action {
  color: var(--dist-color);
}
.mod-row[data-cat="guest"] .mod-row-action {
  color: var(--guest-color);
}
.mod-row[data-cat="finance"] .mod-row-action {
  color: var(--fin-color);
}
.mod-row:hover .mod-row-action {
  gap: 11px;
}

.mod-row-action .chevron {
  display: inline-block;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mod-row.open .mod-row-action .chevron {
  transform: rotate(90deg);
}

.mod-list-wrap.single-col {
  grid-template-columns: 1fr;
}
.mod-row.hidden {
  display: none;
}
@media (max-width: 560px) {
  .mod-expand-inner {
    grid-template-columns: 1fr;
  }
}
.mod-expand-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}
.mod-expand-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92) saturate(0.95);
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.mod-row.open .mod-expand-img img {
  transform: scale(1.04);
}
.mod-expand-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 55%,
    rgba(255, 255, 255, 0.65) 100%
  );
}
.mod-expand-detail {
  padding: 24px 26px 24px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: #ffffff;
}
.mod-expand-detail h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 800;
  color: #0a0806;
  letter-spacing: 0.03em;
}
.mod-expand-detail p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  line-height: 1.9;
  color: #2a1a08;
  letter-spacing: 0.03em;
  font-weight: 600;
}
.mod-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mod-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.77rem;
  color: #0a0806;
  letter-spacing: 0.03em;
  line-height: 1.6;
  font-weight: 600;
}
.mod-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}
.mod-row[data-cat="operations"] .mod-features li::before {
  background: var(--ops-color);
}
.mod-row[data-cat="distribution"] .mod-features li::before {
  background: var(--dist-color);
}
.mod-row[data-cat="guest"] .mod-features li::before {
  background: var(--guest-color);
}
.mod-row[data-cat="finance"] .mod-features li::before {
  background: var(--fin-color);
}
.mod-expand-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.52rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  padding: 11px 22px;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.35s;
  margin-top: 4px;
}
.mod-row[data-cat="operations"] .mod-expand-cta {
  background: var(--ops-color);
  color: #fff;
}
.mod-row[data-cat="distribution"] .mod-expand-cta {
  background: var(--dist-color);
  color: #fff;
}
.mod-row[data-cat="guest"] .mod-expand-cta {
  background: var(--guest-color);
  color: #fff;
}
.mod-row[data-cat="finance"] .mod-expand-cta {
  background: var(--fin-color);
  color: #fff;
}
.mod-expand-cta:hover {
  opacity: 0.85;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.mod-row.hidden {
  display: none;
}
.mod-list-wrap.single-col {
  grid-template-columns: 1fr;
}

* {
  cursor: default !important;
}
a,
button,
[onclick],
.store-badge,
.filter-pill,
.ticker-dot,
.mod-row-action,
.mod-card-header {
  cursor: pointer !important;
}
.nav-menu {
  display: flex;
  gap: 32px;
  font-family: "Montserrat", Arial, sans-serif;
  list-style: none;
  align-items: center;
}
.nav-menu li a {
  text-decoration: none;
  color: rgb(255 255 255);
  font-size: 14.5px;
  font-weight: 400;
  letter-spacing: 0.12em;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease;
  font-family: "Raleway", sans-serif;
}
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 1.5px;
  background: #6bbcff;

  transition: width 0.3s ease;
}
.nav-menu li a:hover::after {
  width: 100%;
}
.nav-menu li a:hover {
  color: #fff;
}

/* ═══ PROPERTY TYPE SECTION — PURE WHITE ═══ */
/* ═══ PROPERTY TYPE SECTION — PURE WHITE, glow only (matches trust-page/testi-section) ═══ */
.pt-section {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position:
    right -170px top -330px,
    left -170px bottom -340px,
    bottom center;
  background-size:
    900px 900px,
    800px 800px,
    100% 140px;
  background-image:
    /* gold glow — top right, toned to match other sections */
    radial-gradient(
      circle at right -170px top -330px,
      rgba(201, 168, 76, 0.3) 0%,
      rgba(201, 168, 76, 0.15) 28%,
      rgba(201, 168, 76, 0.04) 55%,
      transparent 75%
    ),
    /* blue glow — bottom left, toned to match other sections */
    radial-gradient(
      circle at left -170px bottom -340px,
      rgba(107, 188, 255, 0.26) 0%,
      rgba(107, 188, 255, 0.12) 32%,
      rgba(107, 188, 255, 0.04) 60%,
      transparent 78%
    ),
    /* bottom fade to white */
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
}

@media (max-width: 991px) {
  .pt-section {
    background-size:
      650px 650px,
      580px 580px,
      100% 100px;
  }
}

@media (max-width: 600px) {
  .pt-section {
    background-image:
      radial-gradient(circle at top right, rgba(201, 168, 76, 0.14), transparent 38%),
      radial-gradient(circle at bottom left, rgba(107, 188, 255, 0.1), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
    background-position: top right, bottom left, bottom center;
    background-size: auto, auto, 100% 70px;
  }
}

.pt-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.6),
    transparent
  );
  z-index: 2;
  pointer-events: none;
}
.pt-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1.4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.6),
    transparent
  );
  z-index: 2;
  pointer-events: none;
}

.pt-bg-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 70%
  );
  top: -100px;
  right: -100px;
  pointer-events: none;
}
.pt-header {
  text-align: center;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.pt-rule {
  width: 180px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 8px auto 0;
  opacity: 0.6;
}

/* PT-GIRD STARTS HERE */

/* ═══ PROPERTY TYPE GRID — illustrated icon-circle cards ═══ */
.pt-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pt-card {
  background: linear-gradient(180deg, #f5fafe 0%, #f1f8ff 10%);
  border: 1.4px solid #6bbcff;
  border-radius: 20px;
  box-shadow: 0 3px 14px rgba(10, 8, 6, 0.05);
  padding: 20px 15px 10px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer !important;
  outline: none;
  justify-content: space-between;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}
.pt-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 44px rgba(10, 8, 6, 0.1);
  border: 1.4px solid #6bbcff;
}

/* icon circle */
.pt-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  flex-shrink: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pt-card:hover .pt-icon-circle {
  transform: scale(1.08) rotate(-4deg);
}

.pt-tint-orange {
  background: linear-gradient(160deg, #ffe4cc, #ffd2a8);
}
.pt-tint-blue {
  background: linear-gradient(160deg, #d6ecff, #bfe0ff);
}
.pt-tint-green {
  background: linear-gradient(160deg, #ddf5e3, #c2edcd);
}
.pt-tint-purple {
  background: linear-gradient(160deg, #e9e0fb, #dccdf7);
}
.pt-tint-teal {
  background: linear-gradient(160deg, #d9f3ef, #bfe9e2);
}
.pt-tint-pink {
  background: linear-gradient(160deg, #fbe1ec, #f6c9dd);
}

/* underline rule */
.pt-card-rule {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.pt-rule-orange {
  background: #e07830;
}
.pt-rule-blue {
  background: #3a9bdc;
}
.pt-rule-green {
  background: #2e8b4f;
}
.pt-rule-purple {
  background: #6a3fb5;
}
.pt-rule-teal {
  background: #1a8f7d;
}
.pt-rule-pink {
  background: #c23a72;
}

/* description */
.pt-card-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  color: #4a3f2c;
  margin-bottom: 20px;
  flex: 1;
}

/* bottom tag pill */
.pt-card-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
}
.pt-tag-orange {
  background: #f7cba4;
  color: #c2620f;
}
.pt-tag-blue {
  background: #9cd1ff;
  color: #1a6fa8;
}
.pt-tag-green {
  background: #80ffa0;
  color: #2e8b4f;
}
.pt-tag-purple {
  background: #cfb8fc;
  color: #6a3fb5;
}
.pt-tag-teal {
  background: #00f8d2;
  color: #1a8f7d;
}
.pt-tag-pink {
  background: #ffa7cc;
  color: #c23a72;
}

.pt-icon-circle svg {
  width: 48px;
  height: 48px;
}
/* ── Responsive ── */
@media (max-width: 1280px) {
  .pt-grid {
    gap: 16px;
    max-width: 1100px;
  }
}
@media (max-width: 1024px) {
  .pt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 900px;
  }
}
@media (max-width: 900px) {
  .pt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 100%;
  }
  .pt-card {
    padding: 20px 20px 10px;
  }
  .pt-icon-circle {
    width: 74px;
    height: 74px;
  }
}
@media (max-width: 768px) {
  .pt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .pt-icon-circle {
    width: 68px;
    height: 68px;
    margin-bottom: 14px;
  }
  .pt-icon-circle svg {
    width: 44px;
    height: 44px;
  }
  .pt-card-desc {
    font-size: 12px;
    margin-bottom: 16px;
  }
}
@media (max-width: 600px) {
  .pt-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px;
  }
  .pt-section {
    padding: 20px 10px 80px;
  }
}
@media (max-width: 480px) {
  .pt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pt-icon-circle {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }
  .pt-icon-circle svg {
    width: 36px;
    height: 36px;
  }
  .pt-card-rule {
    margin-bottom: 10px;
  }
  .pt-card-desc {
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 14px;
  }
  .pt-card-tag {
    font-size: 10px;
    padding: 6px 14px;
  }
}
@media (max-width: 375px) {
  .pt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .pt-icon-circle {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }
  .pt-icon-circle svg {
    width: 30px;
    height: 30px;
  }
  .pt-card-desc {
    font-size: 10.5px;
  }
  .pt-card-tag {
    font-size: 9.5px;
    padding: 5px 12px;
  }
}
@media (max-width: 320px) {
  .pt-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .pt-icon-circle {
    width: 46px;
    height: 46px;
    margin-bottom: 8px;
  }
  .pt-icon-circle svg {
    width: 26px;
    height: 26px;
  }
  .pt-card-tag {
    font-size: 9px;
    padding: 4px 10px;
  }
}
@media (min-width: 1440px) {
  .pt-grid {
    gap: 22px;
    max-width: 1400px;
  }
  .pt-card {
    padding: 36px 20px 28px;
  }
  .pt-icon-circle {
    width: 92px;
    height: 92px;
  }
}

.pt-bottom {
  text-align: center;
  margin-top: 25px;
  position: relative;
  margin-bottom: 15px;
  z-index: 2;
}
.pt-bottom-note {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16.5px;
  line-height: 1.9;
  color: #0a0806;
  letter-spacing: 0.03em;
  margin-top: 20px;
  font-weight: 500;
  margin: 0 auto 15px;
  width: 100%;
}
.pt-bottom button {
  width: fit-content;
  padding: 10px 20px;
  margin: 0 auto;
}

/* ═══ PAGE 4 — TRUST & INTEGRATIONS — PURE WHITE ═══ */
.trust-page {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 0 0 100px;
}

.trust-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    radial-gradient(
      circle at right -170px top -330px,
      rgba(201, 168, 76, 0.3) 0%,
      rgba(201, 168, 76, 0.15) 28%,
      rgba(201, 168, 76, 0.04) 55%,
      transparent 75%
    ),
    radial-gradient(
      circle at left -170px bottom -340px,
      rgba(107, 188, 255, 0.26) 0%,
      rgba(107, 188, 255, 0.12) 32%,
      rgba(107, 188, 255, 0.04) 60%,
      transparent 78%
    );

  background-repeat: no-repeat;
  background-position:
    right -170px top -330px,
    left -170px bottom -340px;
  background-size:
    900px 900px,
    800px 800px;
}

.trust-page::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(201, 168, 76, 0.6) 50%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 991px) {
  .trust-page::before {
    background-size:
      650px 650px,
      580px 580px;
  }
}

@media (max-width: 600px) {
  .trust-page::before {
    background-image:
      radial-gradient(circle at top right, rgba(201, 168, 76, 0.14), transparent 38%),
      radial-gradient(circle at bottom left, rgba(107, 188, 255, 0.1), transparent 42%);
    background-position: top right, bottom left;
    background-size: auto, auto;
  }
}

/* keep all real content above the glow layer */
.trust-page > * {
  position: relative;
  z-index: 2;
}
.metric {
  position: relative;
}
.metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.15);
}
.trust-metrics-band {
  background: #ffffff;
  padding: 30px 40px;
  position: relative;
  border: 1.4px solid #6bbcff;
  border-radius: 22px;
  margin: 75px 50px 0;
  box-shadow: 0 3px 14px rgba(10, 8, 6, 0.05);
  overflow: visible;
}
.trust-metrics-band::before,
.trust-metrics-band::after {
  display: none;
}
.trust-metrics-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 640px) {
  .trust-metrics-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.trust-metric-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  position: relative;
  border-right: 1px solid rgba(107, 188, 255, 0.25);
  border-radius: 16px;
  transition:
    background 0.35s,
    transform 0.35s;
}
.trust-metric-item:last-child {
  border-right: none;
}
.trust-metric-item:hover {
  background: #f4faff;
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .trust-metric-item {
    border-right: none;
    border-bottom: 1px solid rgba(107, 188, 255, 0.2);
    border-radius: 0;
    padding: 16px 8px;
  }
  .trust-metric-item:last-child {
    border-bottom: none;
  }
}
.tm-icon-ring {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1.5px solid #6bbcff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background: #eaf6ff;
  transition:
    background 0.35s,
    border-color 0.35s,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.trust-metric-item:hover .tm-icon-ring {
  background: #6bbcff;
  border-color: #6bbcff;
  transform: rotate(-6deg) scale(1.08);
}
.trust-metric-item:hover .tm-icon-ring svg {
  stroke: #ffffff;
}
.tm-icon-ring svg {
  display: block;
  transition: stroke 0.35s;
}

.tm-text {
  flex: 1;
  min-width: 0;
}
.tm-value {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: #0a0806;
  line-height: 1.1;
  margin-bottom: 4px;
}
.tm-label {
  font-family: "Cinzel", Georgia, serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: #1a6fa8;
  text-transform: uppercase;
  font-weight: 800;
}
.tm-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #4a3f2c;
  margin-top: 3px;
  letter-spacing: 0.3px;
  font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .trust-metrics-band {
    margin: 40px 24px 0;
    padding: 26px 24px;
  }
}
@media (max-width: 768px) {
  .trust-metrics-band {
    margin: 32px 20px 0;
    padding: 24px 20px;
    border-radius: 18px;
  }
  .tm-value {
    font-size: 24px;
  }
}
@media (max-width: 600px) {
  .trust-metrics-band {
    margin: 28px 16px 0;
    padding: 20px 14px;
  }
  .tm-icon-ring {
    width: 48px;
    height: 48px;
  }
  .tm-icon-ring svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 480px) {
  .trust-metrics-band {
    margin: 24px 14px 0;
    padding: 18px 12px;
    border-radius: 16px;
  }
  .trust-metric-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 8px;
  }
  .tm-value {
    font-size: 22px;
  }
  .tm-label {
    font-size: 11px;
  }
  .tm-desc {
    font-size: 11px;
  }
}
@media (max-width: 375px) {
  .trust-metrics-band {
    margin: 20px 10px 0;
    padding: 16px 10px;
  }
  .tm-icon-ring {
    width: 44px;
    height: 44px;
  }
}

.trust-header {
  text-align: center;
  padding: 15px;
  position: relative;
  z-index: 2;
  margin: 25px 0 0;
}

.trust-rule {
  width: 200px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  margin: 22px auto 0;
  opacity: 0.55;
}

.marquee-section {
  position: relative;
  padding: 10px 60px;
}

.integration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.ig-card {
  flex: 0 0 calc((100% - 6 * 16px) / 7);
  max-width: 210px;
  background: linear-gradient(180deg, #f5fafe 0%, #f1f8ff 10%);
  border-radius: 16px;
  border: 1.75px solid #6bbcff;
  padding: 15px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
  box-shadow: 0 2px 10px rgba(107, 188, 255, 0.07);
  border-bottom: none;
}

.ig-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(107, 188, 255, 0.18);
}

.ig-icon-wrap {
  width: fit-content;
  height: fit-content;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ig-card:hover .ig-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
}

.ig-name {
  font-family: "Cinzel", Georgia, serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #0a0806;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.ig-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6a6a6a;
  line-height: 1.4;
  margin-bottom: 5px;
}

.ig-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 0 0 16px 16px;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ig-card:hover .ig-bar {
  transform: scaleX(1);
}

.ig-bar-blue {
  background: #0057b8;
}
.ig-bar-navy {
  background: #00529b;
}
.ig-bar-darkblue {
  background: #3395ff;
}
.ig-bar-purple {
  background: #635bff;
}
.ig-bar-orange {
  background: #ff6600;
}
.ig-bar-sky {
  background: #00a1e0;
}
.ig-bar-yellow {
  background: #f2c811;
}
.ig-bar-green {
  background: #25d366;
}
.ig-bar-red {
  background: #ea4335;
}
.ig-bar-calblue {
  background: #1a73e8;
}
.ig-bar-googlemulti {
  background: linear-gradient(
    90deg,
    #4285f4 25%,
    #ea4335 50%,
    #fbbc04 75%,
    #34a853 100%
  );
}
.ig-bar-cloudblue {
  background: #1a73e8;
}
.ig-bar-link {
  background: #6bbcff;
}

@media (max-width: 1200px) {
  .marquee-section {
    padding: 36px 40px;
  }
  .integration-grid {
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
  }
  .ig-icon-wrap {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 1024px) {
  .integration-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
  .marquee-section {
    padding: 32px 32px;
  }
}

@media (max-width: 768px) {
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .marquee-section {
    padding: 28px 24px;
  }
  .ig-icon-wrap {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 600px) {
  .integration-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .marquee-section {
    padding: 24px 20px;
  }
  .ig-card {
    padding: 16px 8px 14px;
    border-radius: 14px;
  }
  .ig-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .ig-icon-wrap {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 375px) {
  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .marquee-section {
    padding: 20px 16px;
  }
  .ig-card {
    padding: 14px 6px 12px;
    border-radius: 12px;
  }
  .ig-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .logo-card {
    width: 144px;
    height: 84px;
    gap: 8px;
    padding: 12px 14px;
  }
  .logo-card-icon {
    width: 34px;
    height: 34px;
  }
  .marquee-fade {
    width: 70px;
  }
}
@media (max-width: 600px) {
  .logo-card {
    width: 132px;
    height: 78px;
    border-radius: 16px;
  }
  .logo-card-name {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .marquee-track {
    gap: 14px;
  }
  .marquee-fade {
    width: 56px;
  }
}
@media (max-width: 480px) {
  .logo-card {
    width: 118px;
    height: 72px;
    gap: 7px;
    padding: 10px 12px;
  }
  .logo-card-icon {
    width: 30px;
    height: 30px;
  }
  .logo-card-name {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .marquee-track {
    gap: 12px;
  }
  .marquee-fade {
    width: 44px;
  }
}
@media (max-width: 375px) {
  .logo-card {
    width: 108px;
    height: 66px;
  }
  .logo-card-icon {
    width: 26px;
    height: 26px;
  }
  .marquee-fade {
    width: 36px;
  }
}

/* ===== Responsive card-count breakpoints ===== */

/* Bigger devices: 5+ cards per row (900px and up) */
@media (min-width: 901px) {
  .ig-card {
    flex: 0 0 calc((100% - 6 * 16px) / 7);
    max-width: 210px;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .marquee-section {
    padding: 36px 40px;
  }
  .integration-grid {
    gap: 12px;
  }
  .ig-card {
    flex: 0 0 calc((100% - 6 * 12px) / 7);
  }
  .ig-icon-wrap {
    width: 54px;
    height: 54px;
  }
}

/* Medium devices: exactly 3 cards per row (400px - 900px) */
@media (min-width: 401px) and (max-width: 900px) {
  .integration-grid {
    gap: 14px;
  }
  .marquee-section {
    padding: 32px 32px;
  }
  .ig-card {
    flex: 0 0 calc((100% - 2 * 14px) / 3);
    max-width: none;
  }
}

@media (min-width: 401px) and (max-width: 768px) {
  .integration-grid {
    gap: 12px;
  }
  .marquee-section {
    padding: 28px 24px;
  }
  .ig-card {
    flex: 0 0 calc((100% - 2 * 12px) / 3);
  }
  .ig-icon-wrap {
    width: 50px;
    height: 50px;
  }
}

@media (min-width: 401px) and (max-width: 600px) {
  .integration-grid {
    gap: 10px;
  }
  .marquee-section {
    padding: 24px 20px;
  }
  .ig-card {
    flex: 0 0 calc((100% - 2 * 10px) / 3);
    padding: 16px 8px 14px;
    border-radius: 14px;
  }
  .ig-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
  .ig-name {
    font-size: 12px;
  }
  .ig-desc {
    font-size: 10.5px;
  }
}

/* Small devices: 2 cards per row (400px and under) */
@media (max-width: 400px) {
  .integration-grid {
    gap: 10px;
  }
  .ig-card {
    flex: 0 0 calc((100% - 1 * 10px) / 2);
    max-width: none;
  }
  .ig-icon-wrap {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 375px) {
  .integration-grid {
    gap: 8px;
  }
  .marquee-section {
    padding: 20px 16px;
  }
  .ig-card {
    flex: 0 0 calc((100% - 1 * 8px) / 2);
    padding: 14px 6px 12px;
    border-radius: 12px;
  }
  .ig-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    margin-bottom: 8px;
  }
}

@media (max-width: 768px) {
  .logo-card {
    width: 144px;
    height: 84px;
    gap: 8px;
    padding: 12px 14px;
  }
  .logo-card-icon {
    width: 34px;
    height: 34px;
  }
  .marquee-fade {
    width: 70px;
  }
}
@media (max-width: 600px) {
  .logo-card {
    width: 132px;
    height: 78px;
    border-radius: 16px;
  }
  .logo-card-name {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .marquee-track {
    gap: 14px;
  }
  .marquee-fade {
    width: 56px;
  }
}
@media (max-width: 480px) {
  .logo-card {
    width: 118px;
    height: 72px;
    gap: 7px;
    padding: 10px 12px;
  }
  .logo-card-icon {
    width: 30px;
    height: 30px;
  }
  .logo-card-name {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .marquee-track {
    gap: 12px;
  }
  .marquee-fade {
    width: 44px;
  }
}
@media (max-width: 375px) {
  .logo-card {
    width: 108px;
    height: 66px;
  }
  .logo-card-icon {
    width: 26px;
    height: 26px;
  }
  .marquee-fade {
    width: 36px;
  }
}

/* ═══ INTEGRATION STATS — REDESIGNED ═══ */
.integration-stats {
  max-width: 1100px;
  margin: 60px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .integration-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 420px) {
  .integration-stats {
    grid-template-columns: 1fr;
  }
}
.int-stat-card {
  background: #ffffff;
  border: 1.5px solid #6bbcff;
  border-radius: 20px;
  padding: 30px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease,
    background 0.4s ease;
  box-shadow: 0 3px 14px rgba(107, 188, 255, 0.1);
  isolation: isolate;
}
/* top accent bar that draws in on hover */
.int-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6bbcff, #a8d8ff, #6bbcff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px 20px 0 0;
  z-index: 2;
}

/* soft glow blob behind number */
.int-stat-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(107, 188, 255, 0.14) 0%,
    transparent 70%
  );
  top: -40px;
  right: -40px;
  z-index: -1;
  transition:
    transform 0.5s ease,
    opacity 0.5s ease;
  opacity: 0;
}
.int-stat-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgb(0, 140, 255);
  background: #f4faff;
  box-shadow:
    0 20px 44px rgba(107, 188, 255, 0.22),
    0 6px 16px rgba(107, 188, 255, 0.12);
}

.int-stat-card:nth-child(1)::after {
  background: linear-gradient(90deg, #e07830, #f5a855);
}
.int-stat-card:nth-child(2)::after {
  background: linear-gradient(90deg, #3a7bd5, #6aaff0);
}
.int-stat-card:nth-child(3)::after {
  background: linear-gradient(90deg, #2eaa72, #5dd4a0);
}
.int-stat-card:nth-child(4)::after {
  background: linear-gradient(90deg, #c9a84c, #e8c97a);
}
.int-stat-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.09),
    0 4px 16px rgba(201, 168, 76, 0.12);
}
.int-stat-card:hover::before {
  transform: scaleX(1);
}
.int-stat-card:hover::after {
  opacity: 1;
  transform: scale(1.15);
}
.int-stat-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  color: #0a0806;
  line-height: 1;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: color 0.35s;
}
.int-stat-card:hover .int-stat-num {
  color: #005aa8;
}
.int-stat-num span {
  color: #6bbcff;
  font-style: italic;
  font-weight: 600;
  transition: color 0.35s;
}
.int-stat-card:hover .int-stat-num span {
  color: rgb(0, 140, 255);
}
.int-stat-label {
  font-family: Cinzel, Georgia, serif;
  font-size: 13px;
  letter-spacing: 2px;
  color: rgb(14 67 103);
  text-transform: uppercase;
  line-height: 1.5;
  font-weight: 800;
  position: relative;
  z-index: 1;
  transition: color 0.35s;
}
.int-stat-card:hover .int-stat-label {
  color: #0a0806;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .integration-stats {
    padding: 0 28px;
    gap: 16px;
  }
  .int-stat-card {
    padding: 26px 18px;
  }
  .int-stat-num {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .integration-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 50px;
  }
  .int-stat-card {
    border-radius: 18px;
    padding: 24px 16px;
  }
  .int-stat-num {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .int-stat-label {
    font-size: 12px;
    letter-spacing: 1.5px;
  }
}
@media (max-width: 600px) {
  .integration-stats {
    padding: 0 20px;
    gap: 14px;
  }
  .int-stat-card {
    padding: 22px 14px;
  }
  .int-stat-num {
    font-size: 28px;
  }
  .int-stat-label {
    font-size: 11px;
    letter-spacing: 1px;
  }
}
@media (max-width: 420px) {
  .integration-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
  }
  .int-stat-card {
    padding: 20px 12px;
    border-radius: 16px;
  }
  .int-stat-num {
    font-size: 26px;
  }
  .int-stat-label {
    font-size: 10px;
    letter-spacing: 0.8px;
  }
  .int-stat-card::after {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 375px) {
  .int-stat-card {
    padding: 18px 10px;
  }
  .int-stat-num {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .int-stat-label {
    font-size: 9.5px;
  }
}
@media (max-width: 320px) {
  .integration-stats {
    gap: 8px;
    padding: 0 12px;
  }
  .int-stat-card {
    padding: 16px 8px;
    border-radius: 14px;
  }
  .int-stat-num {
    font-size: 22px;
  }
  .int-stat-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
}

/* ═══ FOOTER — PURE WHITE ═══ */
.pre-footer-rule {
  width: 100%;
  height: 1.5px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 168, 76, 0.55),
    transparent
  );
}

.rk-footer {
  background: #052149;
  position: relative;
  overflow: hidden;
  padding: 70px 40px 0;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}
.footer-bg-illustration {
  display: none;
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  padding-bottom: 15px;
}

.foot-columns {
  display: flex;
  justify-content: space-around;
  background: #01132c;
  padding: 20px 15px;
  border-radius: 4px;
}

/* ── Brand column ── */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #01132c;
  padding: 20px;
  border-radius: 4px;
}
.footer-logo-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(180deg, #f5fafe 0%, #f1f8ff 10%);
  box-shadow: 0 3px 14px rgba(107, 188, 255, 0.12);
  overflow: hidden;
}
.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer-logo-text {
  font-family: "Cinzel", Georgia, serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1.1px;
  color: #00a8ff;
  margin-bottom: 10px;
  display: block;
}
.footer-logo-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  margin-bottom: 18px;
}
.footer-brand-desc {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15.5px;
  line-height: 24px;
  color: #fff;
  max-width: fit-content;
  margin-bottom: 22px;
  font-weight: 500;
  text-align: justify;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}
.footer-social a:hover {
  border-color: #6bbcff;
  background: #6bbcff;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  opacity: 0.92;
}

/* Facebook */
.footer-social a[aria-label="Facebook"] {
  background: #1877f2;
}

/* Instagram — signature gradient */
.footer-social a[aria-label="Instagram"] {
  background: radial-gradient(
    circle at 30% 110%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
}

/* LinkedIn */
.footer-social a[aria-label="LinkedIn"] {
  background: #0a66c2;
}

/* YouTube */
.footer-social a[aria-label="YouTube"] {
  background: #ff0000;
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  cursor: pointer;
}

/* ── Link columns ── */
.footer-col-title {
  font-family: "Cinzel", Georgia, serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffb100;
  font-weight: 800;
  margin-bottom: 8px;
}
.footer-col-title::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  margin-top: 10px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 22px;
}
.footer-links li,
.footer-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.25s,
    gap 0.25s;
}
.footer-links li {
  align-items: baseline;
}
.footer-links li a:hover {
  color: #b4e1ff;
  gap: 13px;
}
.footer-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: #008afd;
}

/* ── Bottom bar ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 26px 0 26px;
  border-top: 1.5px solid rgba(201, 168, 76, 0.3);
}
.footer-copy {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #d2d2d2;
  font-weight: 500;
  white-space: nowrap;
}
.footer-copy strong,
a {
  color: #00a8ff;
  font-weight: 800;
  text-decoration: none;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-legal a {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  color: #d2d2d2;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.25s;
}
.footer-legal a:hover {
  color: #1a6fa8;
}
.footer-legal-sep {
  color: #c9bca0;
  font-size: 13px;
}
.footer-badges {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-iso-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2a2008;
  line-height: 14px;
  white-space: nowrap;
}
.footer-pay-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ═══════════ FOOTER RESPONSIVE ═══════════ */
@media (max-width: 1100px) {
  .rk-footer {
    padding: 60px 30px 0;
  }
  .footer-inner {
    max-width: 100%;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .foot-columns {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .rk-footer {
    padding: 50px 24px 0;
  }
  .footer-top {
    gap: 24px;
    padding-bottom: 10px;
  }
  .footer-brand {
    padding: 18px;
  }
  .foot-columns {
    flex-direction: column;
    gap: 28px;
    padding: 24px 20px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0;
    text-align: center;
    align-items: center;
  }
}

@media (max-width: 600px) {
  .rk-footer {
    padding: 40px 18px 0;
  }
  .footer-brand {
    align-items: flex-start;
    padding: 16px;
  }
  .footer-brand-desc {
    max-width: 100%;
    text-align: left;
  }
  .foot-columns {
    padding: 20px 16px;
    gap: 26px;
  }
  .footer-links {
    gap: 14px;
    margin-top: 18px;
  }
  .footer-legal {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .rk-footer {
    padding: 36px 14px 0;
  }
  .footer-top {
    gap: 20px;
  }
  .footer-brand {
    padding: 14px;
  }
  .footer-social {
    gap: 8px;
  }
  .footer-social a {
    width: 32px;
    height: 32px;
  }
  .foot-columns {
    padding: 18px 12px;
    gap: 22px;
  }
  .footer-col-title::after {
    margin-top: 8px;
  }
  .footer-links {
    gap: 12px;
    margin-top: 16px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
  .footer-copy {
    white-space: normal;
  }
}

@media (max-width: 375px) {
  .rk-footer {
    padding: 30px 12px 0;
  }
  .footer-brand {
    padding: 12px;
  }
  .foot-columns {
    padding: 16px 10px;
    gap: 20px;
  }
  .footer-links {
    gap: 10px;
  }
  .footer-bottom {
    gap: 8px;
    padding: 18px 0;
  }
}

/* ═══════════════ MOBILE NAV — HAMBURGER + OVERLAY ═══════════════ */
.hamburger-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0);
  border: none;
  cursor: pointer !important;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 110;
}
.hamburger-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}
.hamburger-btn svg {
  width: 18px;
  height: 18px;
  display: block;
}
.hamburger-line {
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  transition: all 0.3s ease;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(13, 11, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease,
    visibility 0.4s ease;
  pointer-events: none;
}
.nav-overlay.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
body.menu-open {
  overflow: hidden;
}
.nav-overlay-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 18px 20px 0px;
  position: relative;
  flex-shrink: 0;
}
.nav-overlay-logo img {
  cursor: pointer !important;
  height: 65px;
  display: block;
}
.nav-overlay-close {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer !important;
  transition: all 0.3s ease;
}
.nav-overlay-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold);
}
.nav-overlay-close svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 2;
}
.nav-overlay-menu {
  flex: 0.8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vh, 36px);
  width: 100%;
  padding: 0 20px 20px;
  list-style: none;
}
/* Non-landing pages: nav is always in scrolled state */
.nav-static {
  position: fixed !important;
  top: 0 !important;
}
.nav-overlay-menu li {
  opacity: 0;
  transform: translateY(-14px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.nav-overlay.open .nav-overlay-menu li {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay-menu li a {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.2em;
  color: #fff;
  text-decoration: none;
  position: relative;
  padding: 10px 2px;
  transition: color 0.3s ease;
}
/* .nav-overlay-menu li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition:
    width 0.3s ease,
    left 0.3s ease;
} */
.nav-overlay-menu li a:hover,
.nav-overlay-menu li a:focus {
  color: var(--gold-light);
}
.nav-overlay-menu li a:hover::after,
.nav-overlay-menu li a:focus::after {
  width: 100%;
  left: 0;
}
.nav-overlay-menu li a.active::after {
  width: 50%;
  left: 25%;
}
.nav-overlay-menu li.cta-item a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.9rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 28px;
  border: 1.5px solid var(--gold);
  border-radius: 50px;
  color: var(--gold-light);
  background: rgba(201, 168, 76, 0.08);
}
.nav-overlay-menu li.cta-item a:hover {
  background: rgba(201, 168, 76, 0.2);
}
.nav-overlay-menu li.cta-item a::after {
  display: none;
}
.nav-overlay-acc {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav-overlay-acc-trigger {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  letter-spacing: 0.2em;
  color: #fff;
  cursor: pointer !important;
  padding: 4px 2px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-overlay-acc-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-overlay-acc-trigger:hover,
.nav-overlay-acc-trigger.active {
  color: var(--gold-light);
}

.nav-overlay-acc-trigger.active::after {
  width: 100%;
}

.nav-overlay-acc-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke: var(--gold);
  transition: transform 0.35s ease;
}

.nav-overlay-acc-trigger.active .nav-overlay-acc-chevron {
  transform: rotate(180deg);
}

.nav-overlay-acc-panel {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    margin-top 0.4s ease;
  margin-top: 0;
}

.nav-overlay-acc-panel.open {
  max-height: 400px;
  opacity: 1;
  margin-top: 18px;
}

.nav-overlay-sublink {
  width: 100%;
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  padding: 11px 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.14);
  transition: color 0.25s ease;
}

.nav-overlay-acc-panel a.nav-overlay-sublink:last-child {
  border-bottom: none;
}

.nav-overlay-sublink:hover {
  color: var(--gold-light);
}

@media (max-width: 480px) {
  .nav-overlay-sublink {
    font-size: 13px;
    padding: 9px 8px;
  }
}

/* ═══════════════ RESPONSIVE FIXES ═══════════════ */
html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 991px) {
  .nav-left .nav-menu,
  .nav-right .nav-menu {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .nav-left {
    justify-content: flex-start;
  }
  .nav-right {
    justify-content: flex-end;
  }
  .top-nav {
    grid-template-columns: 1fr 5fr 1fr;
  }
}

@media (max-width: 1024px) {
  .suite-hero-inner {
    row-gap: 56px;
  }
  .pt-grid {
    gap: 12px;
  }
}

@media (max-width: 900px) {
  .cta-group {
    translate: 0 0;
    padding: 0 20px 50px;
  }
  .metric:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 800px) {
  .hero-content {
    left: 16px;
    right: 16px;
  }
  .hero-title {
    white-space: normal;
    word-break: break-word;
    text-align: center;
  }
}

@media (max-width: 700px) {
  .nav-overlay-menu {
    gap: clamp(18px, 4.5vh, 28px);
  }
}

@media (max-width: 640px) {
  .pt-bottom-note {
    translate: 0;
    padding: 0 10px;
  }
  .pt-bottom {
    margin-bottom: 30px;
  }
  .trust-metric-item {
    padding: 14px 16px;
  }
}

@media (max-width: 600px) {
  .top-nav img {
    height: 60px;
  }
  .hamburger-btn {
    width: 36px;
    height: 36px;
  }
  .suite-hero {
    padding: 60px 16px 50px;
  }
  .mod-card-header {
    height: auto;
    padding: 16px 14px;
  }
  .mod-row-action {
    width: 100%;
    justify-content: flex-start;
    margin-top: 4px;
  }
  .filter-pill {
    font-size: 0.6rem;
    padding: 9px 10px;
  }
}

@media (max-width: 480px) {
  .suite-title {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
  }
  .suite-desc {
    max-width: 100%;
  }
  .app-badges {
    flex-direction: column;
    align-items: stretch;
  }
  .store-badge {
    width: 100%;
    justify-content: center;
  }
  .btn-trial,
  .btn-book {
    width: 100%;
    align-self: stretch;
    text-align: center;
  }
  .phone-frame {
    width: 200px;
    height: 388px;
  }
  .phone-screen-wrap {
    height: 368px;
  }
  .tc-quote {
    font-size: 13.5px;
  }
  .tc-author {
    flex-wrap: wrap;
  }
  .int-stat-card {
    padding: 20px 14px;
  }
  .nav-overlay-menu li.cta-item a {
    width: 80%;
    justify-content: center;
  }
  .nav-btn {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}

@media (max-width: 375px) {
  .mod-row-icon {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .trust-metric-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 370px) {
  .top-nav,
  .strip {
    padding: 8px 10px;
  }
  .top-nav.scrolled {
    padding: 6px 10px;
  }
  .top-nav img {
    height: 50px;
  }
  .hero-title {
    font-size: clamp(0.95rem, 6vw, 1.3rem);
  }
  .logo-card {
    width: 140px;
    height: 76px;
  }
}

/* ═══════════════════════════════════════════════════════
         ADDITIONAL RESPONSIVE COVERAGE — 1440px+, 1024px, 768px,
         and gap-fixes for sections not yet fully covered
         ═══════════════════════════════════════════════════════ */

/* ---------- 1440px+ : large desktop / wide monitor ---------- */
@media (min-width: 1440px) {
  .suite-hero-inner {
    max-width: 1320px;
    margin: 0 auto;
  }
  .mod-list-wrap {
    max-width: 1320px;
  }
  .pt-grid {
    max-width: 1150px;
  }
  .trust-metrics-inner,
  .integration-stats,
  .hero-title {
    font-size: clamp(2.6rem, 3.2vw, 4.4rem);
  }
  .cta-group {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- 1024px : laptop / small desktop ---------- */
@media (max-width: 1024px) {
  .cta-group {
    translate: 0 0;
  }
  .integration-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .trust-metrics-band {
    padding: 32px clamp(16px, 4vw, 60px);
  }
  .mod-card-header {
    height: auto;
    min-height: 130px;
  }
}

/* ---------- 768px : tablet (portrait) ---------- */
@media (max-width: 768px) {
  .suite-hero {
    padding: 60px clamp(16px, 4vw, 40px) 50px;
  }
  .suite-checks {
    gap: 12px;
  }
  .suite-check {
    padding: 12px 16px;
  }
  .pt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .mod-list-wrap {
    padding: 0 clamp(12px, 3vw, 24px);
  }
  .mod-card-header {
    height: auto;
    min-height: auto;
    padding: 16px 18px;
  }
  .mod-row-subtitle {
    font-size: 0.85rem;
  }
  .trust-metrics-band::after,
  .trust-metrics-band::before {
    display: none;
  }
  .trust-metrics-band {
    padding: 28px 20px;
  }
  .integration-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .marquee-fade {
    width: 60px;
  }
}

/* ---------- 600–700px shared cleanup ---------- */
@media (max-width: 700px) {
  .suite-hero-inner {
    gap: 28px;
  }
  .check-desc {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .mod-section-header {
    padding: 40px 20px 0;
  }
  .mod-main-title {
    font-size: clamp(1.9rem, 7vw, 3rem);
  }
  .mod-filters {
    gap: 0;
    padding: 32px 10px 0;
  }
  .filter-pill {
    font-size: 0.56rem;
    padding: 8px 6px;
    letter-spacing: 0.08em;
  }
  .trust-main-title {
    font-size: clamp(1.7rem, 6vw, 2.6rem);
  }
  .tm-value {
    font-size: 1.5rem;
  }
  .tm-label {
    font-size: 0.78rem;
  }
}

/* ---------- 480px : large phones ---------- */
@media (max-width: 480px) {
  .sec-tag {
    font-size: 17px;
    letter-spacing: 0.3em;
  }
  .suite-checks {
    gap: 10px;
  }
  .mod-row-subtitle {
    font-size: 0.78rem;
    line-height: 1.5;
  }
  .mod-expand-detail {
    padding: 18px 18px 18px 16px;
  }
  .mod-expand-detail h4 {
    font-size: 0.98rem;
  }
  .mod-expand-detail p {
    font-size: 0.78rem;
  }
  .mod-features li {
    font-size: 0.72rem;
  }
  .mod-expand-img {
    height: 170px;
  }
  .trust-metric-item {
    gap: 14px;
    padding: 12px 14px;
  }
  .tm-icon-ring {
    width: 46px;
    height: 46px;
  }
  .tm-icon-ring svg {
    width: 20px;
    height: 20px;
  }
  .logo-card {
    width: 130px;
    height: 76px;
    padding: 10px 12px;
  }
  .integration-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .int-stat-num {
    font-size: 1.9rem;
  }
}

/* ---------- 375px : standard small phones ---------- */
@media (max-width: 375px) {
  .suite-hero {
    padding: 50px 14px 40px;
  }
  .suite-title {
    font-size: clamp(1.6rem, 9vw, 2.2rem);
  }
  .suite-desc {
    font-size: 0.88rem;
    line-height: 1.7;
  }
  .store-badge {
    min-width: 0;
    padding: 9px 14px;
  }
  .store-badge-name {
    font-size: 0.85rem;
  }
  .phone-frame {
    width: 175px;
    height: 340px;
  }
  .phone-screen-wrap {
    height: 320px;
  }
  .mod-subtitle {
    font-size: 0.85rem;
    padding: 0 6px;
  }
  .mod-rule {
    width: 200px;
  }
  .int-stat-label {
    font-size: 0.44rem;
  }
}

.suite-hero-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

/* ---------- 320px : smallest supported phones ---------- */
@media (max-width: 320px) {
  .suite-hero-left .app-badges {
    gap: 8px;
  }
  .store-badge {
    padding: 8px 10px;
  }
  .check-icon {
    width: 26px;
    height: 26px;
  }
  .mod-row-icon {
    width: 32px;
    height: 32px;
    font-size: 0.95rem;
  }
  .mod-card-header {
    padding: 12px 10px;
    gap: 10px;
  }
  .filter-pill {
    font-size: 0.5rem;
    padding: 7px 4px;
  }
  .trust-metrics-inner {
    gap: 0;
  }
  .int-stat-card {
    padding: 16px 10px;
  }
  .int-stat-num {
    font-size: 1.6rem;
  }
}

/* ---------- Universal overflow safety net ---------- */
img,
svg,
video {
  max-width: 100%;
}
.suite-checks,
.mod-features {
  word-break: break-word;
}

/* ═══════════════════════════════════════════════════════
    FIX: scroll-hint / feature-ticker overlap & overflow
   ═══════════════════════════════════════════════════════ */

/* Neutralize the desktop-only translate offset as soon as
         the ticker starts stacking at the bottom (700px), so the
         two elements never compete for the same space. */
@media (max-width: 991px) {
  .scroll-hint {
    translate: 0 0;
    left: clamp(16px, 4vw, 40px);
    bottom: 20px;
  }
}

/* Below 700px the ticker already moves to bottom-center;
         push scroll-hint above it instead of stacking underneath,
         and shrink it so the typed word never clips off-screen. */
@media (max-width: 700px) {
  .scroll-hint {
    left: 50%;
    translate: -50% 0;
    bottom: 18px;
    gap: 8px;
  }
  .sh-line {
    width: 30px;
  }
  .discover-words {
    min-width: 0;
  }
  #tw-word {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }
  .discover {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }
  .feature-ticker {
    bottom: 110px;
  }
}

@media (max-width: 480px) {
  .scroll-hint {
    letter-spacing: 0.25em;
    font-size: 0.65rem;
    bottom: 14px;
  }
  #tw-word {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
  }
  .discover {
    font-size: 1.15rem;
    letter-spacing: 0.12em;
  }
  .feature-ticker {
    bottom: 98px;
  }
}

@media (max-width: 375px) {
  .scroll-hint {
    gap: 6px;
  }
  .sh-line {
    width: 25px;
  }
  #tw-word {
    font-size: 1rem;
  }
  .discover {
    font-size: 1rem;
  }
  .feature-ticker {
    bottom: 90px;
  }
}

.strip {
  padding: 8px 32px;
  z-index: 100;
  width: 100%;
  display: block;
  background: #000;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.strip a {
  color: #f1f1f1;
  text-decoration: none;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
}

.strip a svg {
  width: 16px;
  height: 16px;
}

.strip a:hover {
  color: #fff;
}
.strip a:focus {
  color: #fff;
}

/* ── Responsive tweaks inside the overrides ── */
@media (max-width: 700px) {
  .feature-ticker {
    bottom: 68px;
  }
  #tw-word {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }
  .discover {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
  }
  .sh-line {
    width: 30px;
  }
  /* ── PAGE 1: always fill the visible screen, no overflow ── */
  .page1 {
    height: 100dvh; /* dynamic viewport height on mobile */
    min-height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  /* ── Hero content: vertically centred in upper half ── */
  .hero-content {
    position: absolute;
    top: 50%;
    left: clamp(20px, 6vw, 100px);
    right: clamp(20px, 6vw, 100px);
    max-width: 100%;
    bottom: auto;
    transform: translateY(-160%);
    z-index: 10;
  }

  /* ── Feature ticker: anchored above scroll-hint ── */
  .feature-ticker {
    position: absolute;
    bottom: 72px; /* leaves room for scroll-hint */
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90vw;
    pointer-events: auto;
  }
  .ticker-item.active {
    justify-content: center;
  }
  .ticker-dots {
    justify-content: center;
  }

  /* ── Scroll hint: pinned to very bottom ── */
  .scroll-hint {
    position: absolute;
    bottom: 18px;
    left: 50%;
    translate: -50% 0;
    gap: 8px;
    letter-spacing: 0.3em;
  }
}
@media (max-width: 540px) {
  .feature-ticker {
    bottom: 200px;
  }
  .hero-title {
    font-size: 24px;
  }
  .feature-ticker-label {
    font-size: 13px;
  }
  .ticker-text {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .hero-content {
    transform: translateY(-170%);
  }
  .feature-ticker {
    bottom: 160px;
  }
  #tw-word {
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }
  .discover {
    font-size: 1.25rem;
    letter-spacing: 0.12em;
  }
  .scroll-hint {
    font-size: 0.75rem;
    bottom: 14px;
  }
}
@media (max-width: 375px) {
  .hero-content {
    transform: translateY(-180%);
  }
  .feature-ticker {
    bottom: 140px;
  }
  #tw-word {
    font-size: 1.1rem;
  }
  .discover {
    font-size: 1.1rem;
  }
  .sh-line {
    width: 25px;
  }
}

#phone-img {
  position: relative;
  width: 520px;
  height: auto;
  display: block;
  animation: phone-img-levitate 4s ease-in-out infinite;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.35))
    drop-shadow(0 8px 14px rgba(201, 168, 76, 0.25));
}
@keyframes phone-img-levitate {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

@media (max-width: 480px) {
  #phone-img {
    width: 450px;
  }
}
@media (max-width: 375px) {
  #phone-img {
    width: 400px;
  }
}

@media (max-width: 480px) {
  .check-icon {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
  .suite-checks::before {
    left: 23px;
  }
  .suite-check::after {
    left: 64px;
    top: 20px;
  }
  .suite-check {
    gap: 18px;
    padding: 18px 14px 20px 0;
  }
  .check-title {
    font-size: 16.5px;
  }
  .check-desc {
    font-size: 14.5px;
  }
}

/* ---------- motion & accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  .check-icon,
  .check-icon::after,
  .suite-check::before,
  .suite-check > div:not(.check-icon)::after {
    transition: none !important;
  }
}
.suite-check:focus-within .check-icon::after {
  inset: -6px;
  border-color: rgba(201, 168, 76, 0.6);
}

@media (max-width: 450px) {
  .cta-group {
    margin: 25px 0 5px;
    translate: 0 0;
    padding: 0 5px 0;
  }
}

@media (max-width: 991px) {
  .mod-filters {
    gap: 8px;
  }
  .filter-pill {
    padding: 10px 8px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .mod-filters {
    gap: 6px;
    padding: 0 16px;
  }
  .filter-pill {
    padding: 9px 6px;
    font-size: 10px;
    letter-spacing: 1px;
    gap: 5px;
  }
  .fp-dot {
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 600px) {
  .mod-filters {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 0 14px;
  }
  .filter-pill {
    padding: 9px 6px;
    font-size: 10px;
    letter-spacing: 0.5px;
    gap: 4px;
    border-radius: 60px;
  }
  .fp-dot {
    width: 5px;
    height: 5px;
  }
}

@media (max-width: 480px) {
  .mod-filters {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    padding: 0 12px;
  }
  .filter-pill {
    padding: 8px 4px;
    font-size: 9px;
    letter-spacing: 0.3px;
    gap: 3px;
    border-radius: 40px;
  }
  .fp-dot {
    width: 4px;
    height: 4px;
    box-shadow: 0 0 0 2px var(--fp-bg);
  }
}

@media (max-width: 375px) {
  .mod-filters {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0 10px;
  }
  .filter-pill {
    padding: 8px 4px;
    font-size: 9px;
    letter-spacing: 0.2px;
    gap: 3px;
  }
}

@media (max-width: 320px) {
  .mod-filters {
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    padding: 0 8px;
  }
  .filter-pill {
    padding: 7px 3px;
    font-size: 8px;
    letter-spacing: 0;
    border-radius: 30px;
  }
}
@media (max-width: 991px) {
  .mod-list-wrap {
    padding: 0 28px;
    gap: 22px 24px;
  }
  .mod-card-header {
    padding: 22px 20px;
    gap: 16px;
    min-height: 120px;
  }
  .mod-row-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
    border-radius: 14px;
  }
}

@media (max-width: 860px) {
  .mod-list-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 640px;
  }
}

@media (max-width: 600px) {
  .mod-list-wrap {
    padding: 0 20px;
    gap: 16px;
  }
  .mod-card-row {
    border-radius: 18px;
  }
  .mod-card-header {
    padding: 20px 18px;
    gap: 14px;
    min-height: auto;
    flex-direction: column;
  }
  .mod-row-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 13px;
  }
  .mod-row-cat {
    font-size: 8.5px;
    padding: 3px 9px;
    margin-bottom: 7px;
  }
  .mod-row-action {
    font-size: 11.5px;
    letter-spacing: 1.5px;
  }
}

@media (max-width: 480px) {
  .mod-list-wrap {
    padding: 0 16px;
    gap: 14px;
  }
  .mod-card-header {
    padding: 18px 16px;
    gap: 12px;
  }
  .mod-row-icon {
    width: 42px;
    height: 42px;
    font-size: 17px;
    border-radius: 12px;
  }
  .mod-card-row::before {
    width: 4px;
  }
}

@media (max-width: 375px) {
  .mod-list-wrap {
    padding: 0 14px;
    gap: 12px;
  }
  .mod-card-header {
    padding: 16px 14px;
    gap: 11px;
  }
  .mod-row-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 11px;
  }
  .mod-row-cat {
    font-size: 8px;
    padding: 3px 8px;
  }
}

@media (max-width: 320px) {
  .mod-list-wrap {
    padding: 0 10px;
    gap: 10px;
  }
  .mod-card-header {
    padding: 14px 12px;
    gap: 10px;
  }
  .mod-row-icon {
    width: 38px;
    height: 38px;
    font-size: 15px;
    border-radius: 10px;
  }
}

/* ═══ CERTIFICATE STRIP — pastel icon-circle stat cards, matches reference layout ═══ */
.cert-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 75px auto 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dim);
}
.ce-dash {
  width: 40px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.6;
}
.ce-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.cert-strip {
  margin: 40px 50px 0;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 1px 8px rgb(131 199 255);
  display: flex;
  align-items: stretch;
  padding: 40px 10px 32px;
  position: relative;
  border: 1.5px solid #6bbcff;
}

.cert-strip-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 18px;
  min-width: 0;
}

.cert-strip-sep {
  width: 1px;
  align-self: stretch;
  background: rgba(10, 8, 6, 0.1);
  flex-shrink: 0;
}

/* icon circle */
.cs-icon-circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  flex-shrink: 0;
}
.cs-icon-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed currentColor;
  opacity: 0.22;
}
.cs-tint-gold {
  background: #f5ecd2;
  color: #7a5f22;
}
.cs-tint-blue {
  background: #dcedfb;
  color: #1a6fa8;
}
.cs-tint-amber {
  background: #fbe8cf;
  color: #a8742a;
}

/* value */
.cs-value {
  font-family: "Cinzel", Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 4px;
}

/* label */
.cs-label {
  font-family: "Cinzel", Georgia, serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cs-color-gold {
  color: #7a5f22;
}
.cs-color-blue {
  color: #1a6fa8;
}
.cs-color-amber {
  color: #a8742a;
}

/* small underline rule */
.cs-rule {
  width: 30px;
  height: 2px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.cs-rule-gold {
  background: #c9a84c;
}
.cs-rule-blue {
  background: #6bbcff;
}
.cs-rule-amber {
  background: #e8a23c;
}

/* description */
.cs-desc {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #4a3f2c;
  line-height: 1.6;
  max-width: fit-content;
  margin-bottom: 18px;
}

/* bottom pill badge */
.cs-badge {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  white-space: nowrap;
}
.cs-badge-gold {
  background: #f5ecd2;
  color: #7a5f22;
}
.cs-badge-blue {
  background: #dcedfb;
  color: #1a6fa8;
}
.cs-badge-amber {
  background: #fbe8cf;
  color: #a8742a;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .cert-strip {
    margin: 40px 24px 0;
    padding: 32px 24px 26px;
  }
  .cs-icon-circle {
    width: 76px;
    height: 76px;
    margin-bottom: 14px;
  }
  .cs-value {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .cert-strip {
    margin: 32px 20px 0;
    padding: 28px 20px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 20px;
  }
  .cert-strip-item {
    padding: 22px 10px;
  }
  .cert-strip-sep {
    width: auto;
    height: 1px;
    align-self: auto;
  }
}
@media (max-width: 600px) {
  .cert-strip {
    margin: 28px 16px 0;
    padding: 24px 16px;
  }
  .cs-icon-circle {
    width: 72px;
    height: 72px;
  }
  .cs-icon-circle svg {
    width: 30px;
    height: 30px;
  }
  .cert-strip-item {
    padding: 20px 8px;
  }
}
@media (max-width: 480px) {
  .cert-strip {
    margin: 24px 14px 0;
    padding: 20px 14px;
    border-radius: 18px;
  }
  .cs-icon-circle {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
  .cs-icon-circle svg {
    width: 26px;
    height: 26px;
  }
  .cs-value {
    font-size: 16px;
  }
  .cs-label {
    font-size: 11px;
    margin-bottom: 8px;
  }
  .cs-desc {
    font-size: 12px;
    margin-bottom: 14px;
    max-width: 100%;
  }
  .cs-badge {
    font-size: 10px;
    padding: 7px 14px;
  }
  .cert-strip-item {
    padding: 18px 6px;
  }
}
@media (max-width: 375px) {
  .cert-strip {
    margin: 20px 10px 0;
    padding: 18px 12px;
  }
  .cs-icon-circle {
    width: 58px;
    height: 58px;
  }
  .cs-icon-circle svg {
    width: 24px;
    height: 24px;
  }
  .cs-value {
    font-size: 15px;
  }
  .cs-label {
    font-size: 10.5px;
  }
}
/* purple tint set — Secure Cloud */
.cs-tint-purple {
  background: #ece3fb;
  color: #6a3fb5;
}
.cs-color-purple {
  color: #6a3fb5;
}
.cs-rule-purple {
  background: #9b6fe0;
}
.cs-badge-purple {
  background: #ece3fb;
  color: #6a3fb5;
}

/* Wave */
.pt-section {
  padding-bottom: 0;
}

.pt-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  line-height: 0;
  pointer-events: none;
}

.pt-wave svg {
  width: 100%;
  height: 100px;
  display: block;
}

@media (max-width: 768px) {
  .pt-wave svg {
    height: 70px;
  }
}

@media (max-width: 480px) {
  .pt-wave svg {
    height: 50px;
  }
}

/* ════════════════════════ TESTIMONIALS ═══════════════════════════ */
.testi-section {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  padding: 50px 0 50px;
}

/* grid pattern, fixed-height fade top/bottom (not tied to element height) */
.testi-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.169) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.158) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;

  mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    black 80px,
    black calc(100% - 80px),
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0px,
    black 80px,
    black calc(100% - 80px),
    transparent 100%
  );
}

/* glow layer + top hairline (replaces old ::before hairline) */
.testi-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background-image:
    linear-gradient(
      90deg,
      transparent,
      rgba(201, 168, 76, 0.55),
      transparent
    ),
    radial-gradient(
      circle at right -170px top -330px,
      rgba(201, 168, 76, 0.3) 0%,
      rgba(201, 168, 76, 0.15) 28%,
      rgba(201, 168, 76, 0.04) 55%,
      transparent 75%
    ),
    radial-gradient(
      circle at left -170px bottom -340px,
      rgba(107, 188, 255, 0.26) 0%,
      rgba(107, 188, 255, 0.12) 32%,
      rgba(107, 188, 255, 0.04) 60%,
      transparent 78%
    );

  background-repeat: no-repeat;
  background-position:
    top center,
    right -170px top -330px,
    left -170px bottom -340px;
  background-size:
    100% 1.5px,
    900px 900px,
    800px 800px;
}

@media (max-width: 991px) {
  .testi-section::after {
    background-size:
      100% 1.5px,
      650px 650px,
      580px 580px;
  }
}

@media (max-width: 600px) {
  .testi-section::before {
    opacity: 0.4;
  }
  .testi-section::after {
    background-image:
      linear-gradient(
        90deg,
        transparent,
        rgba(201, 168, 76, 0.55),
        transparent
      ),
      radial-gradient(circle at top right, rgba(201, 168, 76, 0.14), transparent 38%),
      radial-gradient(circle at bottom left, rgba(107, 188, 255, 0.1), transparent 42%);
    background-position: top center, top right, bottom left;
    background-size: 100% 1.5px, auto, auto;
  }
}

/* keep content above both layers */
.testi-section > * {
  position: relative;
  z-index: 2;
}

.testi-inner {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}
.testi-header {
  text-align: center;
  margin-bottom: 25px;
}
.testi-carousel-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testi-stage {
  display: grid;
  grid-template-columns: 1fr 1.35fr 1fr;
  gap: 20px;
  width: 100%;
  align-items: stretch;
  position: relative;
}
.testi-slot {
  will-change: transform, opacity;
  transition:
    transform 440ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 440ms cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateX(0) scale(1);
  opacity: 1;
  background: #ffffff;
  border: 1.5px solid rgba(107, 188, 255, 0.35);
  border-radius: 24px;
  padding: 20px 28px 25px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107, 188, 255, 0.08);
  cursor: pointer !important;
  height: 360px;
  display: flex;
  flex-direction: column;
}
.testi-slot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 188, 255, 0.5),
    transparent
  );
  border-radius: 24px 24px 0 0;
}
.slot-center {
  border-color: #6bbcff;
  box-shadow: 0 8px 40px rgba(107, 188, 255, 0.18);
  cursor: default !important;
  display: flex !important;
  flex-direction: column;
  justify-content: space-evenly;
}

.slot-center::before {
  background: linear-gradient(90deg, #6bbcff, #6bbcff, #6bbcff);
}

.slot-side {
  opacity: 0.68;
  transform: translateY(18px) scale(0.97);
}

.slot-side:hover {
  opacity: 0.85;
  transform: translateY(10px) scale(0.98);
}

/* ── exit: fly out ── */
.slot-exit-left {
  transform: translateX(-60px) scale(0.93) !important;
  opacity: 0 !important;
}
.slot-exit-right {
  transform: translateX(60px) scale(0.93) !important;
  opacity: 0 !important;
}

/* ── enter: start position before transition kicks in ── */
.slot-enter-left {
  transform: translateX(-60px) scale(0.93);
  opacity: 0;
  transition: none !important;
}
.slot-enter-right {
  transform: translateX(60px) scale(0.93);
  opacity: 0;
  transition: none !important;
}

/* hide testi-card class if it still appears (JS creates slots now) */
.testi-card {
  display: none;
}

.testi-card {
  background: #ffffff;
  border: 1.5px solid #6bbcff;
  border-radius: 24px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(107, 188, 255, 0.08);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.4s,
    border-color 0.4s,
    opacity 0.4s;
  cursor: pointer !important;

  overflow: hidden;
  height: 450px;
}
.testi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(107, 188, 255, 0.5),
    transparent
  );
  border-radius: 24px 24px 0 0;
}
.tc-center {
  border: 1.5px solid rgba(107, 188, 255, 0.6);
  box-shadow: 0 8px 40px rgba(107, 188, 255, 0.18);
  transform: translateY(0px);
  z-index: 2;
}
.tc-center::before {
  background: linear-gradient(90deg, transparent, #6bbcff, transparent);
  height: 3px;
}
.tc-side {
  opacity: 0.72;
  transform: translateY(20px);
}
.tc-side:hover {
  opacity: 0.9;
  transform: translateY(14px);
}
.tc-quote-mark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  line-height: 1;
  color: #6bbcff;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -2px;
}
.tc-center .tc-quote-mark {
  font-size: 52px;
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.stars span {
  color: #c9a84c;
  font-size: 16px;
}
.tc-center .stars span {
  font-size: 18px;
}
.tc-quote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  color: #2a1a08;
  font-style: italic;
  margin-bottom: 24px;
}
.tc-center .tc-quote {
  font-size: 15px;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(107, 166, 255, 0.653);
  padding-top: 20px;
}
.tc-avatar-ring {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(107, 188, 255, 0.5);
  padding: 3px;
  flex-shrink: 0;
}
.tc-center .tc-avatar-ring {
  border-color: #6bbcff;
}
.tc-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(107, 188, 255, 0.15),
    rgba(107, 188, 255, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel", Georgia, serif;
  font-size: 14px;
  font-weight: 800;
  color: #1a6fa8;
}
.tc-name {
  font-family: "Cinzel", Georgia, serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0a0806;
  font-weight: 800;
  margin-bottom: 3px;
}
.tc-center .tc-name {
  color: #1a6fa8;
  font-size: 13px;
}
.tc-role {
  font-family: "Montserrat", sans-serif;
  font-size: 12.5px;
  color: #098cf7;
  font-weight: 700;
  margin-bottom: 2.5px;
}
.tc-hotel {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  color: #7a5f22;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.testi-arrow-abs {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 140, 255, 0.5);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  transition: all 0.3s ease;
  color: #1a6fa8;
  box-shadow: 0 2px 16px rgba(107, 188, 255, 0.15);
}
.testi-arrow-abs.testi-arrow-right {
  left: auto;
  right: -20px;
}
.testi-arrow-abs:hover {
  background: #6bbcff;
  border-color: #6bbcff;
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(107, 188, 255, 0.35);
}
.testi-dots-row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(107, 188, 255, 0.3);
  cursor: pointer !important;
  transition:
    background 0.35s,
    transform 0.35s,
    width 0.35s;
  border: none;
  padding: 0;
}
.testi-dot.active {
  background: #6bbcff;
  transform: scale(1.3);
  width: 24px;
  border-radius: 4px;
}
/* ── STATS STRIP ── */
.testi-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1.4px solid rgba(107, 188, 255, 0.35);
  border-radius: 60px;
  padding: 22px 48px;
  margin-top: 50px;
  box-shadow: 0 2px 16px rgba(107, 188, 255, 0.08);
  gap: 0;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.testi-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.tsi-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.tsi-icon svg {
  display: block;
}
.tsi-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: #0a0806;
  line-height: 1;
}
.tsi-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #7a6a5a;
  letter-spacing: 0.5px;
}
.testi-stat-sep {
  width: 1px;
  height: 50px;
  background: rgba(107, 188, 255, 0.25);
  flex-shrink: 0;
  margin: 0 10px;
}
.tr-rv {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.tr-rv.on {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ TESTI-CAROUSEL-WRAP — RESPONSIVE ═══ */

@media (max-width: 1200px) {
  .testi-stage {
    gap: 16px;
  }
  .testi-slot,
  .testi-card {
    height: 400px;
    padding: 28px 24px 24px;
  }
}

@media (max-width: 1024px) {
  .testi-stage {
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 14px;
  }
  .testi-slot,
  .testi-card {
    height: 420px;
    padding: 26px 22px 22px;
  }
  .testi-arrow-abs {
    width: 44px;
    height: 44px;
    left: -10px;
  }
  .testi-arrow-abs.testi-arrow-right {
    right: -10px;
  }
}

@media (max-width: 991px) {
  .testi-carousel-wrap {
    padding: 0 50px;
  }
  .testi-arrow-abs {
    left: 0px;
  }
  .testi-arrow-abs.testi-arrow-right {
    right: 0px;
  }
}

@media (max-width: 860px) {
  .testi-stage {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 520px;
    margin: 0 auto;
  }
  .slot-side,
  .tc-side {
    display: none;
  }
  .testi-slot,
  .testi-card {
    height: auto;
    min-height: 320px;
  }
  .slot-center,
  .tc-center {
    transform: none;
  }
  .testi-carousel-wrap {
    padding: 0;
    margin-bottom: 40px;
  }
  .testi-arrow-abs {
    top: auto;
    bottom: -64px;
    transform: none;
    left: calc(50% - 64px);
  }
  .testi-arrow-abs.testi-arrow-right {
    left: calc(50% + 16px);
    right: auto;
  }
  .testi-dots-row {
    margin-top: 20px;
  }
  .testi-inner {
    padding: 0 20px;
  }
}

@media (max-width: 700px) {
  .testi-stage {
    max-width: 460px;
  }
  .testi-slot,
  .testi-card {
    padding: 24px 20px 20px;
    min-height: 300px;
  }
  .tc-quote-mark {
    font-size: 36px;
  }
  .tc-center .tc-quote-mark {
    font-size: 42px;
  }
  .tc-quote {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .testi-stage {
    max-width: 100%;
  }
  .testi-slot,
  .testi-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
    min-height: 280px;
  }
  .tc-quote {
    font-size: 13.5px;
    margin-bottom: 18px;
  }
  .tc-center .tc-quote {
    font-size: 13.5px;
  }
  .tc-avatar-ring {
    width: 46px;
    height: 46px;
  }
  .tc-name {
    font-size: 11px;
  }
  .tc-center .tc-name {
    font-size: 12px;
  }
  .tc-role {
    font-size: 11px;
  }
  .tc-hotel {
    font-size: 11px;
  }
  .testi-arrow-abs {
    width: 40px;
    height: 40px;
    bottom: -58px;
  }
  .testi-arrow-abs svg {
    width: 17px;
    height: 17px;
  }
}

@media (max-width: 480px) {
  .testi-slot,
  .testi-card {
    padding: 20px 16px 16px;
    border-radius: 18px;
    min-height: 270px;
  }
  .tc-quote-mark {
    font-size: 30px;
    margin-bottom: 8px;
  }
  .tc-center .tc-quote-mark {
    font-size: 34px;
  }
  .stars span {
    font-size: 14px;
  }
  .tc-center .stars span {
    font-size: 15px;
  }
  .tc-quote {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 16px;
  }
  .tc-center .tc-quote {
    font-size: 13px;
  }
  .tc-author {
    gap: 12px;
    padding-top: 16px;
  }
  .tc-avatar-ring {
    width: 42px;
    height: 42px;
  }
  .tc-avatar {
    font-size: 12px;
  }
  .testi-arrow-abs {
    width: 38px;
    height: 38px;
    bottom: -54px;
    left: calc(50% - 56px);
  }
  .testi-arrow-abs.testi-arrow-right {
    left: calc(50% + 18px);
  }
}

@media (max-width: 375px) {
  .testi-slot,
  .testi-card {
    padding: 18px 14px 14px;
    border-radius: 16px;
    min-height: 260px;
  }
  .tc-quote-mark {
    font-size: 26px;
  }
  .tc-center .tc-quote-mark {
    font-size: 30px;
  }
  .tc-quote {
    font-size: 12.5px;
    line-height: 1.7;
  }
  .tc-center .tc-quote {
    font-size: 12.5px;
  }
  .tc-name {
    font-size: 10px;
  }
  .tc-center .tc-name {
    font-size: 11px;
  }
  .testi-arrow-abs {
    width: 36px;
    height: 36px;
    bottom: -50px;
    left: calc(50% - 50px);
  }
  .testi-arrow-abs.testi-arrow-right {
    left: calc(50% + 16px);
  }
}

@media (max-width: 320px) {
  .testi-slot,
  .testi-card {
    padding: 16px 12px 12px;
    min-height: 250px;
  }
  .tc-quote-mark {
    font-size: 22px;
  }
  .tc-center .tc-quote-mark {
    font-size: 26px;
  }
  .tc-quote {
    font-size: 12px;
  }
  .tc-center .tc-quote {
    font-size: 12px;
  }
  .tc-avatar-ring {
    width: 38px;
    height: 38px;
  }
  .testi-dot {
    width: 7px;
    height: 7px;
  }
  .testi-dot.active {
    width: 20px;
  }
}


/* ============================================================
   Banner treatment reused from .rk-page-banner, applied to
   .page2 and .suite-hero
   ============================================================ */

/* ============================================================
   Add the gold + blue glow orbs from .rk-page-banner-bg
   These sit UNDER the grid and fade, so they aren't masked
   ============================================================ */

.page2,
.suite-hero {
  background:
    /* gold glow — top right, matches rk-page-banner-bg::before */
    radial-gradient(
      circle at right -170px top -330px,
      rgba(201, 168, 76, 0.22) 0%,
      rgba(201, 168, 76, 0.1) 28%,
      rgba(201, 168, 76, 0.03) 55%,
      transparent 75%
    ),
    /* blue glow — bottom left, matches rk-page-banner-bg::after */
    radial-gradient(
      circle at left -170px bottom -340px,
      rgba(107, 188, 255, 0.18) 0%,
      rgba(107, 188, 255, 0.08) 32%,
      rgba(107, 188, 255, 0.03) 60%,
      transparent 78%
    ),
    /* base wash, same as before */
    radial-gradient(circle at top right, rgba(201, 168, 76, 0.08), transparent 38%),
    radial-gradient(circle at bottom left, rgba(107, 188, 255, 0.06), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fdfcf9 100%);
  background-repeat: no-repeat;
}

/* soft luxury grid, radially masked so it fades toward the edges */
.page2::before,
.suite-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.169) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.158) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.55;

  mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 45%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 100%
  );
  -webkit-mask-image: radial-gradient(
    circle at center,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.95) 45%,
    rgba(0, 0, 0, 0.55) 72%,
    transparent 100%
  );

  pointer-events: none;
}

/* bottom fade to white, same as the banner */
.page2::after,
.suite-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  pointer-events: none;
  z-index: 1;
}

/* keep real content above the new background layers */
.suite-hero-inner {
  position: relative;
  z-index: 2;
}
.page2 > * {
  position: relative;
  z-index: 2;
}

