:root {
  --bg: #f7f9fd;
  --fg: #111827;
  --card: #ffffff;
  --muted: #5b6678;
  --primary: #006efa;
  --primary-foreground: #ffffff;
  --secondary: #0f172a;
  --secondary-foreground: #f3f7ff;
  --border: #d9e2f0;
  --offer-height: 36px;
  --radius-sm: 0.7rem;
  --radius-md: 0.9rem;
  --space-section-y: 5.8rem;
}

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

h1,
h2,
h3,
h4 {
  font-family: "Playfair Display", Georgia, serif;
  margin: 0;
  line-height: 1.12;
}

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

.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  line-height: 1;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 1.55rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.nav-links > a {
  color: #1f2937;
  font-size: 0.94rem;
  font-weight: 500;
}

.nav-links > a:hover {
  color: var(--primary);
}

.nav-links > a.user-login-link {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.9;
  color: #1f2937;
  max-width: 92px;
  line-height: 1.15;
  text-align: right;
}

.nav-links > a.user-login-link:hover {
  opacity: 1;
  color: var(--primary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.93rem;
  transition: 0.2s ease;
  min-height: 46px;
}

.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 110, 250, 0.28);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground) !important;
  padding: 0.7rem 1.35rem;
  box-shadow: 0 10px 24px rgba(0, 110, 250, 0.24);
}

.btn-primary:hover {
  background: #005fd7;
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--secondary-foreground);
  border-color: rgba(255, 255, 255, 0.35);
  padding: 0.7rem 1.3rem;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.8rem 1.3rem;
}

.btn-secondary:hover {
  background: #232938;
}

.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero.section-padding {
  padding: 0;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  overflow: hidden;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img,
.hero-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 19, 40, 0.8), rgba(10, 19, 40, 0.45), transparent 78%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: none;
  width: 100%;
  color: var(--secondary-foreground);
  padding-top: 3rem;
  padding-bottom: 0;
}

.hero-shell {
  width: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.04;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  max-width: 12ch;
  color: #fff;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(238, 241, 245, 0.85);
  max-width: 35rem;
  margin-bottom: 1.8rem;
  line-height: 1.45;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

.hero-proof {
  margin: 0 0 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 231, 255, 0.35);
  background: rgba(9, 20, 39, 0.44);
  color: #e8f1ff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 0.8rem;
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 19, 40, 0.55);
  color: white;
  font-size: 1.2rem;
}

.hero-prev {
  left: 1rem;
}

.hero-next {
  right: 1rem;
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 7;
  pointer-events: auto;
}

.hero-dots button {
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  transition: 0.2s ease;
}

.hero-dots button.is-active {
  width: 32px;
  background: var(--primary);
}

.section {
  padding: var(--space-section-y) 0;
}

.section-padding {
  padding: var(--space-section-y) 1rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 6rem 2rem;
  }
}

.section-alt {
  background: #f1f6ff;
}

.section-head {
  max-width: 52rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  margin-top: 0.5rem;
  margin-bottom: 0.9rem;
  line-height: 1.1;
}

.section-head h2 span {
  background: linear-gradient(90deg, #006efa, #2b86ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
  max-width: 60ch;
  margin-inline: auto;
}

.body-offer {
  margin-top: -3rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 9;
}

.body-offer.body-offer-after-pricing {
  margin-top: 1.6rem;
  margin-bottom: 0;
}

.body-offer-card {
  background: linear-gradient(135deg, #fff7e6 0%, #f5f9ff 50%, #ffffff 100%);
  border: 1px solid #e2e9f5;
  border-radius: 18px;
  box-shadow: 0 24px 48px rgba(11, 36, 73, 0.12);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.body-offer-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #10233f;
  margin-top: 0.5rem;
}

.body-offer-copy > p {
  margin: 0.8rem 0 0;
  color: #42516a;
  max-width: 52ch;
}

.body-offer-actions {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.body-offer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  color: #10345f;
}

.body-offer-link:hover {
  color: #006efa;
}

.body-offer-validity {
  margin-top: 0.9rem !important;
  font-size: 0.88rem;
  color: #4a5f7d !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.body-offer-list {
  display: grid;
  gap: 0.95rem;
}

.body-offer-item {
  border: 1px solid #d4deee;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  padding: 1rem 1rem 0.95rem;
}

.body-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.25rem 0.68rem;
  background: #0f2f57;
  color: #f2f8ff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.body-offer-item h3 {
  margin-top: 0.78rem;
  color: #11213a;
  font-size: 1.5rem;
}

.body-offer-item p {
  margin: 0.35rem 0 0;
  color: #4d5f7b;
  font-size: 0.92rem;
}

#why-muvi {
  background: #f4f8ff;
  padding-top: 4.6rem;
  padding-bottom: 4.6rem;
}

.why-head {
  margin-bottom: 2.2rem;
}

.why-head h2 {
  color: #10233f;
}

.why-head p {
  max-width: 68ch;
}

.why-intro {
  text-align: center;
  background: #0f70f5;
  color: #fff;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: 2rem 1.2rem 1.3rem;
}

.why-intro h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-family: "DM Sans", sans-serif;
  font-weight: 800;
}

.why-sub {
  margin: 0.4rem 0 0;
  font-size: clamp(1.2rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.92);
}

.why-hero-image {
  border: 1px solid #d8e6fb;
  border-top: 0;
  overflow: hidden;
}

.why-hero-image img {
  width: 100%;
  height: clamp(200px, 36vw, 360px);
  object-fit: cover;
  display: block;
}

.why-copy {
  margin: 0;
  text-align: center;
  padding: 1.45rem 1.1rem;
  background: #fff;
  border: 1px solid #d8e6fb;
  border-top: 0;
  color: #2d3a4e;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.45;
  font-weight: 500;
}

.why-title {
  margin: 0;
  text-align: center;
  padding: 1rem 1rem 0.95rem;
  background: #e3eefc;
  border: 1px solid #cddcf4;
  border-top: 0;
  color: #0d64d8;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-family: "DM Sans", sans-serif;
  font-size: 1.68rem;
  font-weight: 800;
}

.why-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid #cddcf4;
  border-top: 0;
  background: #fff;
}

.why-benefit {
  padding: 2rem 1rem 1.7rem;
  text-align: center;
}

.why-benefit + .why-benefit {
  border-left: 1px solid #d9e5f8;
}

.why-benefit i {
  font-size: 2.25rem;
  color: #0f172a;
  line-height: 1;
}

.icon-crown {
  font-style: normal;
  font-size: 2.55rem;
  display: inline-block;
  transform: translateY(-2px);
}

.icon-three-people {
  position: relative;
  width: 2.8rem;
  height: 2.2rem;
  display: inline-block;
}

.icon-three-people .person {
  position: absolute;
  color: #0f172a;
}

.icon-three-people .person-center {
  font-size: 1.35rem;
  left: 50%;
  top: 0.2rem;
  transform: translateX(-50%);
}

.icon-three-people .person-left {
  font-size: 1.05rem;
  left: 0.3rem;
  bottom: 0.05rem;
}

.icon-three-people .person-right {
  font-size: 1.05rem;
  right: 0.3rem;
  bottom: 0.05rem;
}

.why-benefit h4 {
  margin: 0.72rem 0 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  line-height: 1.06;
  color: #121d2f;
}

.why-benefit p {
  margin: 0;
  color: #2d3a4e;
  font-size: 1.04rem;
  line-height: 1.42;
}

.why-infra {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border: 1px solid #243b60;
  border-top: 0;
}

.overview-video-cta {
  margin-top: 1rem;
  text-align: center;
}

.infra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.infra-item {
  min-height: 114px;
  padding: 1.1rem 0.75rem;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 0.45rem;
  background: #1a2d4a;
  color: #f5f9ff;
  border-right: 1px solid rgba(226, 236, 255, 0.16);
  border-bottom: 1px solid rgba(226, 236, 255, 0.16);
}

.infra-item:nth-child(even) {
  background: #253b5f;
}

.infra-item i {
  font-size: 1.6rem;
}

.infra-item span {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.24;
}

.infra-highlight {
  background: #0f70f5;
  color: #fff;
  padding: 1.65rem 1.5rem;
}

.infra-highlight h4 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.04;
  margin: 0;
}

.infra-highlight h4 i {
  color: #ffc4a5;
}

.parking-main-icon {
  color: #ff9d7a !important;
  font-size: 1.05em;
}

.infra-highlight ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.6;
}

.why-contact-strip {
  border: 1px solid #cddcf4;
  border-top: 0;
  background: #e9f0fb;
  padding: 1rem 1.1rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0.85rem;
  align-items: center;
}

.why-contact-strip div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: #16263d;
}

.why-contact-strip i {
  color: #0f70f5;
  font-size: 1.45rem;
}

.why-tagline {
  margin: 0;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  background: #0f70f5;
  color: #fff;
  text-align: center;
  padding: 1.15rem 1rem;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 700;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.stat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.5rem 1.15rem;
  text-align: center;
  transition: 0.22s ease;
}

.stat-card:hover {
  border-color: rgba(0, 110, 250, 0.4);
  box-shadow: 0 16px 32px rgba(30, 37, 48, 0.1);
}

.stat-card i {
  font-size: 1.75rem;
  margin-bottom: 0.65rem;
  display: block;
  color: var(--primary);
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  font-family: "Playfair Display", Georgia, serif;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.pricing-polished {
  align-items: stretch;
}

.plan-card {
  background: linear-gradient(145deg, #f7faff, #eef4ff);
  border-radius: 16px;
  border: 1px solid #dbe3ee;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.plan-card:hover {
  box-shadow: 0 16px 32px rgba(30, 37, 48, 0.12);
  transform: translateY(-3px);
  background: linear-gradient(145deg, #ffffff, #eff5ff);
}

.plan-card.featured {
  border-color: #9fc2f2;
  box-shadow: 0 18px 34px rgba(0, 110, 250, 0.12);
}

.plan-badge {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  border-radius: 999px;
  padding: 0.2rem 0.58rem;
  background: #e8f1ff;
  border: 1px solid #b9d2f6;
  color: #f2f8ff;
  color: #0e4e9e;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.plan-body {
  padding: 0.7rem 0.7rem 1rem;
}

.plan-top {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 1.1rem 0 0.8rem;
  text-align: center;
  margin-bottom: 1rem;
}

.plan-body h3 {
  font-size: 2rem;
  line-height: 1.18;
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 800;
  color: #091a31;
}

.price {
  font-size: 40px;
  color: var(--primary);
  font-weight: 800;
  line-height: 1;
  margin: 0.7rem 0 0;
}

.price small {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 400;
}

.plan-price-note {
  margin: 0.35rem 0 0;
  color: #6a7a8f;
  font-size: 0.95rem;
  font-weight: 600;
}

.plan-feature-title {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.02rem;
  font-weight: 800;
  color: #18263a;
}

.plan-features {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  color: #2d3e56;
  font-size: 0.95rem;
}

.plan-features li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--primary);
  margin-right: 0.5rem;
}

.pricing-actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.meeting-room-card {
  border: 1px solid #d8e3f3;
  border-radius: 18px;
  background: #f6f9ff;
  box-shadow: 0 14px 32px rgba(16, 31, 54, 0.08);
  padding: 1rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.meeting-room-main {
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  background: #0f70f5;
  color: #f5f9ff;
}

.meeting-room-rate-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  padding: 0.2rem 0.62rem;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #eaf3ff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meeting-room-main h3 {
  font-size: 1.9rem;
  color: #fff;
  margin: 0.55rem 0 0;
}

.meeting-room-main .price {
  color: #fff;
  margin-top: 0.45rem;
}

.meeting-room-main .price small {
  color: rgba(238, 245, 255, 0.82);
}

.meeting-rate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 0.65rem;
}

.meeting-rate-item {
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.meeting-rate-item .price {
  margin-top: 0.25rem;
  font-size: 1.85rem;
}

.meeting-rate-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meeting-rate-item-nonmember {
  background: rgba(10, 29, 64, 0.3);
}

.meeting-rate-item-member {
  background: rgba(58, 220, 161, 0.2);
  border-color: rgba(157, 255, 220, 0.5);
}

.meeting-room-main p {
  margin: 0.45rem 0 0;
  color: rgba(228, 239, 255, 0.92);
}

.meeting-room-side {
  display: grid;
  gap: 0.85rem;
}

.meeting-room-perks {
  background: #fff;
  border: 1px solid #d7e2f2;
  border-radius: 14px;
  padding: 1rem;
}

.meeting-room-perks h4 {
  margin: 0;
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #425874;
}

.meeting-room-perks ul {
  margin: 0.7rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: #3b4d67;
  font-size: 0.95rem;
}

.meeting-room-perks li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--primary);
  margin-right: 0.5rem;
}

.meeting-room-features {
  margin-top: 0.7rem !important;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.gallery-item {
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.42s ease, filter 0.3s ease;
}

.gallery-item span {
  position: absolute;
  inset: auto 0 0;
  background: linear-gradient(180deg, transparent, rgba(20, 26, 35, 0.72));
  color: white;
  padding: 2.1rem 0.9rem 0.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0;
  transition: 0.25s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.gallery-item:hover span {
  opacity: 1;
}

.gallery-item-hidden {
  display: none;
}

.gallery-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.1rem;
}

.video-tour-section {
  background:
    radial-gradient(circle at top right, rgba(182, 206, 240, 0.35), transparent 48%),
    linear-gradient(180deg, #f9fbff 0%, #edf3ff 100%);
}

.video-tour-frame {
  position: relative;
  border: 1px solid #d8e3f5;
  border-radius: 16px;
  background: #fff;
  padding: 0.7rem;
  box-shadow: 0 10px 24px rgba(30, 52, 88, 0.08);
  max-width: 820px;
  margin: 0 auto;
}

.video-tour-player {
  width: 100%;
  display: block;
  border-radius: 12px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-tour-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 999px;
  background: rgba(14, 26, 48, 0.72);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  z-index: 2;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-tour-frame.is-playing .video-tour-play-icon {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.9);
}

.amenity-tabs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.amenities-mobile {
  display: none;
}

.amenity-tab {
  border: 1px solid #c9d6ea;
  background: #eef4ff;
  color: #22324d;
  border-radius: 999px;
  min-height: 40px;
  padding: 0.48rem 1rem;
  font-weight: 700;
  font-size: 0.86rem;
  cursor: pointer;
  transition: 0.2s ease;
}

.amenity-tab:hover {
  border-color: rgba(0, 110, 250, 0.45);
  color: #0f172a;
}

.amenity-tab.is-active {
  background: linear-gradient(135deg, #005fd7, #006efa);
  border-color: #005fd7;
  color: #fff;
  box-shadow: 0 8px 18px rgba(0, 110, 250, 0.25);
}

.amenity-panel-wrap {
  background: #fff;
  border: 1px solid #d8e3f3;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 14px 36px rgba(16, 31, 54, 0.07);
}

.amenity-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.amenity-panel-head h3 {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.amenity-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.amenity-card {
  border: 1px solid #d9e2f0;
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff, #f7fbff);
  transition: 0.22s ease;
}

.amenity-card:hover {
  border-color: rgba(0, 110, 250, 0.36);
  box-shadow: 0 10px 22px rgba(16, 31, 54, 0.1);
  transform: translateY(-1px);
}

.amenity-card i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--primary);
  background: rgba(0, 110, 250, 0.12);
  margin-bottom: 0.75rem;
}

.amenity-card h4 {
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  color: #132136;
  margin: 0 0 0.3rem;
}

.amenity-card p {
  margin: 0;
  color: #5b6678;
  font-size: 0.9rem;
}

.amenity-accordion {
  display: grid;
  gap: 0.75rem;
}

.amenity-accordion-item {
  background: #fff;
  border: 1px solid #d8e3f3;
  border-radius: 14px;
  overflow: hidden;
}

.amenity-accordion-item summary {
  list-style: none;
  position: relative;
  padding: 0.9rem 2.9rem 0.9rem 1rem;
  cursor: pointer;
  font-weight: 800;
  color: #15233a;
}

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

.amenity-accordion-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 110, 250, 0.35);
  color: var(--primary);
  font-weight: 700;
}

.amenity-accordion-item[open] summary {
  border-bottom: 1px solid #d8e3f3;
}

.amenity-accordion-item[open] summary::after {
  content: "\2212";
}

.amenity-accordion-content {
  padding: 0.85rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.map-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 400px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-meta {
  display: grid;
  gap: 1.15rem;
  align-content: center;
}

.location-item {
  display: flex;
  gap: 0.8rem;
}

.location-item i {
  width: 44px;
  height: 44px;
  border-radius: 0.6rem;
  background: rgba(0, 110, 250, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}

.location-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.location-item p,
.location-item a {
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.form-container {
  max-width: 700px;
}

.faq-container {
  max-width: 900px;
}

.pixel-container {
  max-width: 980px;
}

.pixel-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 360px) 1fr;
  gap: 1.2rem;
  border-radius: 24px;
  padding: 1.15rem;
  background:
    radial-gradient(circle at top right, rgba(46, 138, 255, 0.18), transparent 45%),
    linear-gradient(145deg, #ffffff, #eef6ff 78%);
  border: 1px solid rgba(0, 89, 201, 0.16);
  box-shadow: 0 16px 34px rgba(12, 43, 84, 0.12);
  overflow: hidden;
}

.pixel-card::after {
  content: "";
  position: absolute;
  inset: auto -70px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 95, 219, 0.2), rgba(0, 95, 219, 0));
  pointer-events: none;
}

.pixel-media {
  border-radius: 18px;
  overflow: hidden;
  min-height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 22px rgba(9, 28, 54, 0.2);
}

.pixel-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 25%;
}

.pixel-content {
  align-self: center;
}

.pixel-content h2 {
  margin: 0.3rem 0 0.75rem;
}

.pixel-content p {
  margin: 0 0 1rem;
  color: #425977;
  line-height: 1.7;
  max-width: 58ch;
}

.pixel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.pixel-tags span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(0, 89, 201, 0.22);
  background: rgba(255, 255, 255, 0.78);
  color: #153b6d;
  border-radius: 999px;
  padding: 0.38rem 0.75rem;
  font-size: 0.83rem;
  font-weight: 700;
}

.pixel-tags i {
  color: #0b66f0;
}

.book-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.55rem;
  display: grid;
  gap: 1.1rem;
}

.form-help {
  margin: -0.1rem 0 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #3a4f6a;
  font-size: 0.89rem;
  font-weight: 600;
}

.form-note {
  margin: -0.2rem 0 0.35rem;
  color: #53667f;
  font-size: 0.84rem;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.book-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.book-form input,
.book-form select,
.book-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 0.55rem;
  background: #fff;
  color: var(--fg);
  padding: 0.72rem 0.84rem;
  font-size: 0.92rem;
}

.book-form input:focus,
.book-form select:focus,
.book-form textarea:focus {
  outline: none;
  border-color: rgba(0, 110, 250, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 110, 250, 0.16);
}

.book-form input[type="date"] {
  min-height: 44px;
  padding-right: 0.55rem;
  color: var(--fg);
  cursor: pointer;
}

.book-form input[type="date"]::-webkit-calendar-picker-indicator {
  border-radius: 0.4rem;
  padding: 0.28rem;
  background-color: #eef5ff;
  cursor: pointer;
}

.book-form input[type="date"]::-webkit-calendar-picker-indicator:hover {
  background-color: #dbeafe;
}

.book-form .is-invalid {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.field-error {
  display: block;
  margin-top: 0.28rem;
  font-size: 0.8rem;
  color: #b42318;
}

.btn-submit {
  width: 100%;
  margin-top: 0.2rem;
  padding: 0.8rem 1rem;
}

.me {
  margin-right: 0.45rem;
}

.spin {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-alert {
  border-radius: 0.45rem;
  padding: 0.66rem 0.85rem;
  font-size: 0.88rem;
}

.form-alert.success {
  background: #ecfdf3;
  border: 1px solid #b7ebcb;
  color: #126c3c;
}

.form-alert.error {
  background: #fff1f2;
  border: 1px solid #ffc8cc;
  color: #a52334;
}

.contact-success-message {
  border-radius: 0.65rem;
  padding: 0.95rem 1.1rem;
  margin-bottom: 1rem;
  background: #ecfdf3;
  border: 1px solid #86efac;
  color: #166534;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.d-none {
  display: none;
}

.offer-marquee {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.offer-marquee::before,
.offer-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.offer-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(9, 20, 39, 0.95), transparent);
}

.offer-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(9, 20, 39, 0.95), transparent);
}

.offer-track {
  display: inline-flex;
  gap: 0.8rem;
  padding: 0.36rem 0.8rem;
  min-width: max-content;
  animation: offer-slide 40s linear infinite;
}

.offer-marquee:hover .offer-track {
  animation-play-state: paused;
}

.offer-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid #4f89d8;
  border-radius: 999px;
  background: #16345f;
  color: #f6fbff;
  padding: 0.2rem 0.72rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
  text-shadow: none;
}

.offer-chip i {
  color: #9ec9ff;
}

.offer-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--offer-height);
  z-index: 70;
  background: #0c1e3a;
  border-bottom: 1px solid #254f87;
  backdrop-filter: none;
}

@keyframes offer-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-track {
    animation: none;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  position: relative;
  padding: 1rem 3rem 1rem 1rem;
  cursor: pointer;
  font-weight: 700;
  color: #1a2638;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 110, 250, 0.35);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--border);
}

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

.faq-item p {
  margin: 0;
  padding: 0.95rem 1rem 1.1rem;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 3.3rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  margin-bottom: 0.85rem;
  display: block;
}

.site-footer h4 {
  margin-bottom: 0.75rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.site-footer p,
.site-footer a {
  color: rgba(238, 241, 245, 0.62);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.policy-note {
  margin-top: 0.7rem !important;
  color: rgba(238, 241, 245, 0.75) !important;
  font-size: 0.82rem !important;
}

.highlight-link {
  color: #0b66f0;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.highlight-link:hover {
  color: #084db6;
}

.site-footer a:hover {
  color: var(--primary);
}

.copyright {
  border-top: 1px solid rgba(238, 241, 245, 0.1);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(238, 241, 245, 0.44);
  padding: 1.5rem 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(235, 244, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  color: #eef4ff;
  transition: 0.2s ease;
}

.footer-social a:hover {
  border-color: rgba(0, 110, 250, 0.6);
  background: rgba(0, 110, 250, 0.22);
  color: #fff;
}

.mobile-sticky-cta {
  position: fixed;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.75rem;
  z-index: 90;
  display: none;
  box-shadow: 0 14px 28px rgba(0, 110, 250, 0.3);
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f7a42, #25d366);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: grid;
  place-items: center;
  z-index: 95;
  box-shadow: 0 14px 30px rgba(16, 96, 53, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.whatsapp-float-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #46e889, #1fb85f 70%);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 8px 16px rgba(7, 78, 40, 0.35);
}

.whatsapp-float-icon i {
  font-size: 1.5rem;
}

.whatsapp-float::after {
  content: attr(data-title);
  position: absolute;
  right: 66px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(15, 23, 42, 0.92);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.34rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(16, 96, 53, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.whatsapp-float:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(23, 30, 39, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 2000;
}

.lightbox.show {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 0.7rem;
  object-fit: contain;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  color: #fff;
  background: rgba(20, 26, 35, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 0;
  background: rgba(10, 19, 40, 0.6);
  color: white;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 3;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 19, 40, 0.6);
  color: #fff;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
  z-index: 2;
}

.lightbox-nav:hover {
  background: rgba(10, 19, 40, 0.85);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

body.modal-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 1023px) {
  .amenities-desktop {
    display: none;
  }

  .amenities-mobile {
    display: block;
  }

  .amenity-items-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --offer-height: 34px;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #2b3240;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .nav-links > a {
    color: rgba(243, 247, 255, 0.9);
  }

  .nav-links > a.btn {
    color: #ffffff !important;
  }

  .nav-links > a.user-login-link {
    color: rgba(243, 247, 255, 0.9);
    text-align: left;
    max-width: none;
  }

  .nav-links.open {
    display: flex;
  }

  .stats-grid,
  .plans-grid,
  .gallery-grid,
  .location-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-benefits {
    grid-template-columns: 1fr;
  }

  .why-benefit + .why-benefit {
    border-left: 0;
    border-top: 1px solid #d9e5f8;
  }

  .why-benefit h4 {
    font-size: 1.95rem;
  }

  .why-infra {
    grid-template-columns: 1fr;
  }

  .why-contact-strip {
    grid-template-columns: 1fr;
  }

  .body-offer {
    margin-top: -2rem;
  }

  .body-offer.body-offer-after-pricing {
    margin-top: 1.2rem;
  }

  .body-offer-card {
    grid-template-columns: 1fr;
    padding: 1.45rem;
  }

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

  .plan-body {
    padding: 0.65rem;
  }

  .price {
    font-size: 34px;
  }

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

  .hero-nav {
    display: none;
  }

  .offer-track {
    animation-duration: 36s;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 5.2rem;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float-icon {
    width: 52px;
    height: 52px;
  }

  body {
    padding-bottom: 74px;
  }

}

@media (max-width: 640px) {
  :root {
    --offer-height: 32px;
  }

  .section {
    padding: 4.4rem 0;
  }

  .section-head {
    margin-bottom: 2.2rem;
  }

  .video-tour-frame {
    padding: 0.5rem;
    max-width: 100%;
  }

  .hero {
    height: 88vh;
  }

  .hero-content {
    padding-top: 2.4rem;
  }

  .hero-proof {
    font-size: 0.75rem;
    padding: 0.28rem 0.52rem;
    margin-bottom: 0.75rem;
  }

  .hero-cta {
    flex-wrap: wrap;
  }

  .body-offer {
    margin-top: -1.45rem;
    margin-bottom: 0.55rem;
  }

  .body-offer.body-offer-after-pricing {
    margin-top: 1rem;
  }

  .body-offer-card {
    border-radius: 14px;
    padding: 1.1rem;
  }

  .body-offer-copy h2 {
    font-size: 1.55rem;
  }

  .body-offer-item h3 {
    font-size: 1.28rem;
  }

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

  .plan-body {
    padding: 0.6rem;
  }

  .price {
    font-size: 30px;
  }

  .meeting-room-card {
    padding: 1.05rem;
    border-radius: 14px;
  }

  .meeting-room-main {
    padding: 1.05rem 0.95rem;
  }

  .meeting-room-main h3 {
    font-size: 1.45rem;
  }

  .meeting-rate-grid {
    grid-template-columns: 1fr;
  }

  .meeting-rate-item .price {
    font-size: 1.55rem;
  }

  .meeting-room-perks {
    padding: 0.85rem;
  }

  .stats-grid,
  .plans-grid,
  .gallery-grid,
  .location-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .amenity-panel-wrap {
    padding: 0.95rem;
    border-radius: 14px;
  }

  .amenity-panel-head h3 {
    font-size: 1.08rem;
  }

  .amenity-accordion-content {
    padding: 0.75rem;
  }

  .amenity-items-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .offer-marquee::before,
  .offer-marquee::after {
    width: 28px;
  }

  .offer-track {
    gap: 0.6rem;
    padding: 0.3rem 0.55rem;
    animation-duration: 30s;
  }

  .offer-chip {
    font-size: 0.75rem;
    padding: 0.18rem 0.6rem;
  }

  .why-intro {
    padding: 1.45rem 0.85rem 1rem;
  }

  .why-copy {
    font-size: 1rem;
    padding: 1.1rem 0.85rem;
  }

  .why-title {
    font-size: 1.1rem;
  }

  .why-benefit {
    padding: 1.2rem 0.85rem 1.15rem;
  }

  .why-benefit h4 {
    font-size: 1.6rem;
  }

  .why-benefit p {
    font-size: 0.96rem;
  }

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

  .infra-item {
    min-height: 96px;
    padding: 0.8rem 0.55rem;
  }

  .infra-item span {
    font-size: 0.88rem;
  }

  .infra-highlight {
    padding: 1.15rem 0.9rem;
  }

  .infra-highlight ul {
    font-size: 0.94rem;
  }

  .why-contact-strip div {
    font-size: 0.94rem;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding-right: 2.6rem;
  }

  .pixel-card {
    grid-template-columns: 1fr;
    padding: 0.9rem;
    border-radius: 18px;
  }

  .pixel-media {
    min-height: 270px;
  }

  .pixel-content p {
    font-size: 0.95rem;
  }

  .faq-item p {
    font-size: 0.92rem;
  }

  .footer-social {
    margin-top: 0.85rem;
  }

  .lightbox {
    padding: 0.75rem;
  }

  .lightbox img {
    max-height: 72vh;
  }

  .lightbox-close {
    top: 0.7rem;
    right: 0.7rem;
    width: 44px;
    height: 44px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 1rem;
    transform: none;
    width: 48px;
    height: 48px;
    background: rgba(10, 19, 40, 0.8);
  }

  .lightbox-prev {
    left: 0.75rem;
  }

  .lightbox-next {
    right: 0.75rem;
  }

  .lightbox-caption {
    bottom: 4.2rem;
    max-width: calc(100% - 7.5rem);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
