:root {
  --brand-red: #d31148;
  --brand-black: #0f0f10;
  --text-dark: #151518;
  --text-soft: #66697a;
  --bg: #f5f4f3;
  --white: #ffffff;
  --line: #e7e5e4;
  --success: #198754;
  --shadow-lg: 0 18px 50px rgba(0, 0, 0, 0.14);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: linear-gradient(170deg, #faf9f8 0%, #f3f1ef 48%, #ece9e5 100%);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.5;
}

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

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
  transition: transform 0.28s ease, background 0.2s ease;
}

.site-header.nav-hidden {
  transform: translateY(-100%);
}

.nav-wrap {
  min-height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: grid;
  gap: 0.15rem;
}

.brand-title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.brand-sub {
  margin: 0;
  font-size: 0.75rem;
  color: var(--text-soft);
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--brand-red);
}

.nav-links .nav-secondary {
  opacity: 0.72;
  font-size: 0.84rem;
  border-inline-start: 1px solid rgba(15, 15, 16, 0.18);
  padding-inline-start: 0.85rem;
}

.nav-tools {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.lang-toggle,
.menu-toggle {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text-dark);
  min-height: 39px;
  border-radius: 999px;
  padding: 0 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.menu-toggle {
  display: none;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--text-dark);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle {
  padding: 0;
  width: 39px;
  min-width: 39px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--brand-red);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(211, 17, 72, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.btn-dark {
  background: var(--brand-black);
  color: var(--white);
}

.btn-outline {
  border: 1px solid rgba(15, 15, 16, 0.22);
  background: transparent;
  color: var(--text-dark);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #111114 0%, #2a1118 100%);
  border: 1px solid rgba(211, 17, 72, 0.55);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(15, 15, 16, 0.22);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d31148 0%, #a80e39 100%);
}

.btn-whatsapp i {
  font-size: 1rem;
  color: #25d366;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
}

.hero {
  position: relative;
  padding: 5.2rem 0 4rem;
  background:
    linear-gradient(180deg, rgba(5, 14, 36, 0.42) 0%, rgba(7, 16, 40, 0.9) 100%),
    url("../assets/images/background%20cover.jpeg") center 42% / cover no-repeat;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.hero-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 26px;
  box-shadow: none;
  backdrop-filter: none;
  padding: 3rem 2rem 1.6rem;
  text-align: center;
  max-width: 980px;
  margin-inline: auto;
}

.kicker {
  margin: 0;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: #f1f1f3;
  font-weight: 800;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  background: rgba(0, 0, 0, 0.3);
}

.hero-title {
  margin: 0.6rem 0;
  font-size: clamp(1.7rem, 3.5vw, 2.9rem);
  line-height: 1.15;
  color: var(--white);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
  margin-inline: auto;
}

.hero-meta {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.hero-scroll {
  margin: 1.15rem auto 0;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  border: none;
  background: #d31148;
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(211, 17, 72, 0.35);
  position: relative;
  display: grid;
  place-items: center;
}

.hero-scroll:hover {
  background: #af0e3c;
  color: var(--white);
}

.hero-scroll-icon {
  transform: translateY(-1px);
  font-size: 1.95rem;
}

.hero-scroll::after {
  content: none;
}

.bounce-btn {
  animation: bouncePulse 2.2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

@keyframes bouncePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  35% {
    transform: translateY(4px);
  }
  55% {
    transform: translateY(8px);
  }
  72% {
    transform: translateY(3px);
  }
}

.hero-stats {
  margin-top: 1.4rem;
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  align-content: stretch;
}

.stat-box {
  border-inline-end: 1px solid rgba(255, 255, 255, 0.16);
  padding: 1rem 0.75rem;
  text-align: center;
}

.stat-box:last-child {
  border-inline-end: none;
}

.stat-box span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.stat-box strong {
  display: block;
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.section {
  padding: 3.4rem 0;
}

.section-title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.section-subtitle {
  margin: 0 0 1.6rem;
  max-width: 66ch;
  color: var(--text-soft);
}

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

.unit-card,
.info-card,
.gallery-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.unit-meta {
  font-size: 0.9rem;
  color: var(--text-soft);
}

.gallery-cover {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  cursor: zoom-in;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-cover:hover {
  transform: scale(1.02);
  filter: saturate(1.05);
}

.gallery-cover:focus-visible {
  outline: 3px solid rgba(211, 17, 72, 0.35);
  outline-offset: 2px;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(8, 8, 10, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-image {
  width: min(92vw, 1200px);
  max-height: 86vh;
  border-radius: 14px;
  object-fit: contain;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.gallery-lightbox-btn {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-radius: 999px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.gallery-lightbox-btn:hover {
  background: rgba(211, 17, 72, 0.85);
}

.gallery-lightbox-close {
  top: 1rem;
  inset-inline-end: 1rem;
}

.gallery-lightbox-prev {
  inset-inline-start: 1rem;
}

.gallery-lightbox-next {
  inset-inline-end: 1rem;
}

.price {
  font-size: 1.4rem;
  margin: 0.2rem 0 0.7rem;
  font-weight: 800;
  color: var(--brand-red);
}

.units-section .section-subtitle {
  max-width: 74ch;
}

.units-note {
  margin: 0 0 1rem;
  font-weight: 800;
  color: var(--brand-red);
  background: rgba(211, 17, 72, 0.08);
  border: 1px solid rgba(211, 17, 72, 0.25);
  border-radius: 12px;
  padding: 0.62rem 0.85rem;
  display: inline-block;
}

.units-section .unit-card {
  overflow: hidden;
  border: 1px solid rgba(211, 17, 72, 0.16);
  box-shadow: 0 18px 36px rgba(15, 15, 16, 0.11);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
  padding: 0 1rem 1rem;
}

.units-section .unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px rgba(15, 15, 16, 0.16);
}

.unit-cover {
  width: calc(100% + 2rem);
  margin: 0 -1rem 0.85rem;
  height: 176px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  filter: saturate(1.06) contrast(1.04);
}

.units-section .unit-card h3 {
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  min-height: 2.6em;
}

.units-section .inline-ctas .btn {
  flex: 1 1 150px;
}

.unit-pill {
  display: inline-block;
  margin-bottom: 0.55rem;
  background: rgba(211, 17, 72, 0.11);
  color: var(--brand-red);
  border: 1px solid rgba(211, 17, 72, 0.24);
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  font-size: 0.76rem;
  font-weight: 800;
}

.units-section .price {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
  margin: 0.2rem 0 0.45rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(211, 17, 72, 0.18);
  border-radius: 10px;
  padding: 0.45rem 0.6rem;
}

.unit-card-note {
  margin: 0 0 0.75rem;
  font-size: 0.84rem;
  color: #535766;
}

.units-section .btn-whatsapp i {
  font-size: 1.05rem;
}

.units-eoi-card {
  margin: 1rem auto 0;
  border-color: rgba(211, 17, 72, 0.2);
  background:
    radial-gradient(circle at 0% 0%, rgba(211, 17, 72, 0.09), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fff8fa 100%);
}

.units-eoi-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  border-bottom: 1px solid rgba(211, 17, 72, 0.15);
  padding-bottom: 0.7rem;
  margin-bottom: 0.85rem;
}

.units-eoi-title {
  margin: 0;
  font-size: 1.15rem;
}

.units-eoi-sub {
  margin: 0;
  font-size: 0.83rem;
  color: var(--brand-red);
  font-weight: 700;
}

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

.why-shell {
  border-color: rgba(211, 17, 72, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 17, 72, 0.11), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
}

.proof-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.proof-chip {
  display: inline-flex;
  align-items: center;
  background: rgba(211, 17, 72, 0.1);
  border: 1px solid rgba(211, 17, 72, 0.22);
  color: var(--brand-red);
  border-radius: 999px;
  padding: 0.32rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

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

.feature-card {
  border: 1px solid rgba(15, 15, 16, 0.09);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 0.85rem;
  box-shadow: 0 10px 20px rgba(15, 15, 16, 0.06);
}

.feature-icon {
  color: var(--brand-red);
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.feature-title {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.feature-text {
  margin: 0;
  color: #505465;
  font-size: 0.87rem;
}

.why-cta-strip {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(211, 17, 72, 0.18);
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.why-cta-strip .btn {
  flex: 1 1 200px;
}

.eoi-item {
  border: 1px solid rgba(211, 17, 72, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.85rem;
  box-shadow: 0 10px 20px rgba(15, 15, 16, 0.06);
}

.eoi-label {
  display: block;
  color: #505465;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.eoi-amount {
  font-size: 1.15rem;
  color: var(--brand-red);
  letter-spacing: 0.01em;
}

@media (min-width: 981px) {
  .units-eoi-card {
    max-width: 920px;
  }

  .units-eoi-head {
    justify-content: center;
    text-align: center;
  }

  .units-eoi-grid {
    max-width: 860px;
    margin-inline: auto;
  }
}

.list {
  margin: 0;
  padding-inline-start: 1.1rem;
  color: var(--text-soft);
}

.list li + li {
  margin-top: 0.35rem;
}

.inline-ctas {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

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

.palm-about-shell {
  border-color: rgba(211, 17, 72, 0.2);
  background:
    radial-gradient(circle at 100% 0%, rgba(211, 17, 72, 0.1), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
}

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

.palm-about-item {
  border: 1px solid rgba(15, 15, 16, 0.1);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 12px;
  padding: 0.9rem;
  box-shadow: 0 8px 20px rgba(15, 15, 16, 0.06);
}

.palm-about-icon {
  color: var(--brand-red);
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.palm-about-item-title {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.palm-about-item-text {
  margin: 0;
  color: #505465;
  font-size: 0.87rem;
}

.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.6rem;
  max-width: 920px;
  margin-inline: auto;
}

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

.form-field {
  display: grid;
  gap: 0.45rem;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.86rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  min-height: 50px;
  padding: 0.78rem 0.85rem;
  font: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(211, 17, 72, 0.22);
  border-color: var(--brand-red);
}

.form-note {
  margin: 0.6rem 0 0;
  color: var(--text-soft);
  font-size: 0.83rem;
}

.footer {
  margin-top: 2.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.4rem 0 2.5rem;
}

.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.cookie-banner {
  position: fixed;
  inset-inline: 1rem;
  bottom: 1rem;
  background: rgba(15, 15, 16, 0.95);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  display: none;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  z-index: 2000;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
}

.cookie-close {
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.sticky-mobile-cta {
  display: none;
}

.floating-lang-toggle {
  display: none;
}

.page-hero {
  padding: 2.8rem 0 1.5rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.page-hero p {
  color: var(--text-soft);
  max-width: 70ch;
}

.text-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 1.15rem;
  margin-bottom: 1rem;
}

.text-block h2,
.text-block h3 {
  margin-top: 0;
}

.business-card-slot {
  margin-top: 1rem;
  border: 2px dashed rgba(211, 17, 72, 0.35);
  border-radius: 14px;
  background: rgba(211, 17, 72, 0.04);
  padding: 1rem;
  text-align: center;
}

.business-card-image {
  display: block;
  width: min(100%, 420px);
  margin: 0 auto 0.7rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 15, 16, 0.14);
  box-shadow: 0 12px 30px rgba(15, 15, 16, 0.12);
}

.business-card-slot h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}

.business-card-slot p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.about-contact-wrap {
  margin-top: 1rem;
}

.about-contact-wrap h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
}

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

.about-contact-grid .btn {
  width: 100%;
  min-height: 46px;
}

.about-email-link {
  font-weight: 700;
}

.success-card {
  background: var(--white);
  border: 1px solid rgba(25, 135, 84, 0.22);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.8rem;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.thanks-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 0.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #198754;
  background: rgba(25, 135, 84, 0.12);
  border: 1px solid rgba(25, 135, 84, 0.3);
  font-size: 2rem;
}

.thanks-quick-title {
  margin: 1rem 0 0.65rem;
  font-size: 1.05rem;
}

.thanks-quick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.thanks-quick-grid .btn {
  width: 100%;
  min-height: 46px;
}

@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .thanks-quick-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding-inline: 1.2rem;
  }

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

  .units-eoi-grid {
    grid-template-columns: 1fr;
  }

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

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

  .stat-box:nth-child(2n) {
    border-inline-end: none;
  }

  .stat-box:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 760px) {
  .nav-wrap {
    min-height: 56px;
    gap: 0.55rem;
  }

  .brand-title {
    font-size: 0.92rem;
  }

  .nav-tools {
    gap: 0.35rem;
  }

  .lang-toggle,
  .menu-toggle {
    min-height: 34px;
  }

  .lang-toggle {
    padding-inline: 0.72rem;
    font-size: 0.78rem;
  }

  .menu-toggle {
    width: 34px;
    min-width: 34px;
  }

  .menu-toggle span {
    width: 16px;
  }

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

  .nav-links {
    position: absolute;
    top: 56px;
    inset-inline: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0.65rem 0.9rem;
    display: none;
    flex-direction: column;
    align-items: start;
  }

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

  .cards-grid,
  .payment-wrap,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .success-card {
    padding: 1.35rem;
  }

  .palm-about-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.2rem;
  }

  .cookie-banner {
    inset-inline: 0.55rem;
    bottom: 4.2rem;
    border-radius: 10px;
    padding: 0.45rem 0.6rem;
    gap: 0.5rem;
    align-items: center;
  }

  .cookie-banner p {
    font-size: 0.74rem;
    line-height: 1.25;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cookie-close {
    font-size: 1rem;
    min-width: 28px;
    min-height: 28px;
    padding: 0.1rem;
  }

  .sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    inset-inline: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
    padding: 0.55rem;
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    z-index: 1200;
  }

  .sticky-mobile-cta .btn {
    min-height: 44px;
    padding-inline: 0.85rem;
    font-size: 0.9rem;
  }

  .sticky-mobile-cta .btn i {
    font-size: 1rem;
  }

  .floating-lang-toggle {
    position: fixed;
    inset-inline-end: 0.75rem;
    bottom: 4.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-height: 42px;
    min-width: 42px;
    border-radius: 999px;
    border: 1px solid rgba(15, 15, 16, 0.18);
    box-shadow: 0 12px 26px rgba(15, 15, 16, 0.18);
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    z-index: 1250;
    padding: 0;
    font-size: 0.82rem;
  }

  .footer {
    padding-bottom: 5.2rem;
  }

  .proof-chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .gallery-lightbox-btn {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

html[dir="rtl"] body {
  letter-spacing: 0;
}

html[dir="rtl"] .nav-links {
  align-items: end;
}

html[dir="rtl"] .inline-ctas,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer-links {
  flex-direction: row-reverse;
}

html[dir="rtl"] .list {
  padding-inline-start: 0;
  padding-inline-end: 1.1rem;
}
/* ===== MOBILE HERO FIT TO SCREEN ===== */
@media (max-width: 760px) {
  .hero {
    padding-top: 1rem;
    padding-bottom: 1rem;
    min-height: calc(100dvh - 56px);
    display: flex;
    align-items: center;
  }

  .hero-card {
    padding: 1rem 0.85rem 0.75rem;
    gap: 0;
  }

  .kicker {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    margin-bottom: 0.3rem;
  }

  .hero-title {
    font-size: 1.15rem;
    line-height: 1.2;
    margin: 0.3rem 0 0.3rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
  }

  .hero-meta {
    font-size: 0.8rem;
    margin-top: 0.3rem;
  }

  .hero-stats {
    margin-top: 0.7rem;
    border-radius: 12px;
    padding: 0.1rem;
  }

  .stat-box {
    padding: 0.55rem 0.4rem;
  }

  .stat-box span {
    font-size: 0.72rem;
    display: block;
    line-height: 1.2;
  }

  .stat-box strong {
    font-size: 1.1rem;
    margin-bottom: 0.1rem;
  }

  .hero-scroll {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
    margin-top: 0.7rem;
  }

  .hero-scroll-icon {
    font-size: 1.4rem;
  }
}
