:root {
  --bg: #edf3fa;
  --bg-2: #ffffff;
  --panel: rgba(20, 70, 120, 0.06);
  --panel-border: rgba(20, 70, 120, 0.16);
  --text: #10233e;
  --muted: #4f6280;
  --brand: #d7a328;
  --brand-2: #b98617;
  --accent: #c7921c;
  --shadow: 0 16px 40px rgba(9, 43, 77, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
body {
  margin: 0;
  font-family: Outfit, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(1000px 460px at 50% 20%, rgba(168, 206, 216, 0.32), rgba(168, 206, 216, 0) 64%),
    radial-gradient(960px 420px at 50% 100%, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 74%),
    linear-gradient(180deg, #d9dee6 0%, #e4e8ee 52%, #e8ebf0 100%);
  color: var(--text);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.shell { width: min(1140px, 92vw); margin: 0 auto; }
.section { padding: 90px 0; }
.section--panel {
  background: transparent;
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
}
.muted { color: var(--muted); }

.soft-backdrop { position: fixed; inset: 0; pointer-events: none; z-index: -2; overflow: hidden; }
.soft-backdrop__orb { position: absolute; border-radius: 999px; filter: blur(72px); }
.soft-backdrop__orb--primary {
  width: 920px;
  height: 420px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(140deg, rgba(14, 165, 164, 0.26), transparent);
}
.soft-backdrop__orb--secondary {
  width: 390px;
  height: 220px;
  right: 8%;
  bottom: 7%;
  background: linear-gradient(145deg, rgba(212, 175, 55, 0.18), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(228, 232, 238, 0.94);
  border-bottom: 1px solid rgba(6, 34, 66, 0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  box-shadow: none;
  padding: 12px 4px;
  min-height: 92px;
}
.logo-link { display: inline-flex; align-items: center; gap: 10px; margin-right: 8px; flex-shrink: 0; }
.logo { height: 80px; width: auto; }
.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #0d5f95;
  display: none;
}
.nav-links {
  list-style: none;
  margin: 0 0 0 10px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
}
.nav-links li {
  white-space: nowrap;
}
.nav-links a {
  color: #1f2348;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.01em;
  padding: 8px 0;
}
.nav-links li:first-child a { color: #1f2348; }
.nav-links a:hover { color: #0d5fad; }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: 14px; flex-shrink: 0; }
.nav-utility { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
  display: none !important;
  border: 1px solid rgba(11, 78, 145, 0.22);
  background: #ffffff;
  color: #113a6a;
  border-radius: 12px;
  min-height: 42px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 10px 17px;
  font-weight: 600;
  transition: 0.2s ease;
}
.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { border-color: var(--panel-border); background: rgba(255, 255, 255, 0.05); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }
.btn-link { color: #dce7f8; padding-inline: 10px; border-color: var(--panel-border); background: rgba(255, 255, 255, 0.03); }

@media (min-width: 961px) {
  .nav-utility {
    margin-left: 2px;
  }
  .header-contact-btn {
    min-width: auto;
    min-height: auto;
    border-radius: 0;
    padding: 6px 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #1f2348;
  }
  .header-contact-btn:hover { background: transparent; color: #0d5fad; transform: none; }
}

.hero { padding: 78px 0 48px; min-height: calc(100vh - 84px); display: flex; align-items: center; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 44px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(13, 95, 173, 0.08);
  border-radius: 999px;
  padding: 6px 14px 6px 8px;
  margin-bottom: 20px;
  color: #27466f;
  font-size: 13px;
}
.trust-avatars { display: flex; margin-right: 6px; }
.trust-avatars img { width: 24px; height: 24px; border-radius: 50%; border: 1px solid rgba(0,0,0,.55); margin-left: -8px; }
.trust-avatars img:first-child { margin-left: 0; }
.hero h1 { font-size: clamp(34px, 5vw, 58px); line-height: 1.07; margin: 0 0 18px; }
.hero h1 span { color: var(--accent); }
.hero-copy > p { color: #4a5f7b; max-width: 560px; line-height: 1.62; }
.hero-actions { display: flex; gap: 12px; margin: 24px 0; flex-wrap: wrap; }
.hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 16px; }
.hero-points div { background: rgba(255, 255, 255, 0.85); border: 1px solid rgba(20, 70, 120, 0.15); border-radius: 10px; padding: 12px; }
.hero-points strong { display: block; font-size: 14px; }
.hero-points small { color: var(--muted); }
.hero-card { position: relative; border-radius: 22px; overflow: hidden; border: 1px solid var(--panel-border); box-shadow: var(--shadow); }
.hero-card img { width: 100%; min-height: 370px; object-fit: cover; }
.hero-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255,255,255,.14);
  color: #eef5ff;
}
.hero-strip { margin-top: 14px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.hero-strip img { width: 56px; height: 40px; object-fit: cover; border-radius: 8px; border: 1px solid rgba(255,255,255,.18); }

/* =========================
   Properties slider (like screenshot)
   ========================= */
.properties-section {
  background: transparent;
  color: #0f172a;
  padding: 72px 0 84px;
}

.properties-section .shell {
  width: min(1400px, 98vw);
}

.properties-section .reveal { opacity: 1; transform: none; }

.properties-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.properties-title {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 36px);
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.properties-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.properties-viewall {
  color: #0b4c9a;
  font-weight: 700;
  font-size: 18px;
}
.properties-viewall:hover { text-decoration: underline; }

.properties-nav {
  display: none;
  align-items: center;
  gap: 10px;
}

.properties-nav__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.16);
  background: #ffffff;
  color: rgba(15, 23, 42, 0.72);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.15s ease;
}

.properties-nav__btn:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 23, 42, 0.28);
}

.properties-nav__btn span {
  font-size: 26px;
  line-height: 1;
  margin-top: -2px;
}

.properties-lanes {
  display: grid;
  gap: 18px;
}
.props-lane {
  overflow: hidden;
  border-radius: 10px;
}
.props-track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
  animation: props-marquee-rtl 78s linear infinite;
}
.props-lane--ltr .props-track {
  animation-name: props-marquee-ltr;
}
.props-lane--rtl .props-track {
  animation-name: props-marquee-rtl;
}
.props-lane:hover .props-track {
  animation-play-state: paused;
}

@media (max-width: 1100px) {
  .properties-section .shell { width: min(1200px, 96vw); }
}
@media (max-width: 820px) {
  .properties-section .shell { width: min(1140px, 94vw); }
  .props-track { animation-duration: 56s; }
}
@media (max-width: 520px) {
  .properties-section .shell { width: 100%; padding-left: 12px; padding-right: 12px; }
}

.property-card {
  flex: 0 0 clamp(300px, 31vw, 410px);
  background: #ffffff;
  border: 1px solid #cfd5dd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.08);
  width: 100%;
  min-height: 380px;
  height: 380px;
  display: grid;
  grid-template-rows: 210px 1fr;
}

.property-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card__body {
  padding: 12px 16px 22px;
  display: grid;
  grid-template-rows: 50px 34px 1fr auto;
  row-gap: 4px;
}

.property-card__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  min-height: 50px;
}

.property-card__location {
  margin: 0;
  color: rgba(15, 23, 42, 0.66);
  font-size: 17px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  min-height: 34px;
}

.property-card__meta {
  color: rgba(15, 23, 42, 0.45);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

.property-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 0;
  padding-bottom: 8px;
}

.property-card__price {
  color: #0b4c9a;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
}

.property-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 12px;
}

.property-card__wa {
  width: 52px;
  height: 40px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
}

.property-card__call {
  width: 52px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #d7a328, #b98617);
  color: #ffffff;
  font-size: 16px;
  font-weight: 750;
}


.property-card__call:hover { background: linear-gradient(135deg, #c79520, #aa7912); }

@media (max-width: 720px) {
  .properties-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .properties-actions {
    width: 100%;
    justify-content: space-between;
  }
  .property-card {
    min-height: 360px;
    height: 360px;
    grid-template-rows: 188px 1fr;
  }
  .property-card__body {
    padding: 12px 12px 18px;
    grid-template-rows: 46px 30px 1fr auto;
  }
  .property-card__title { min-height: 46px; font-size: 20px; }
  .property-card__location { min-height: 30px; font-size: 16px; }
  .property-card__price { font-size: 16px; }
  .property-card__wa { width: 48px; height: 38px; }
  .property-card__call { width: 48px; height: 38px; }
}
.hero-live { margin-left: 8px; color: var(--muted); font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 0 rgba(52,211,153,.5); animation: pulse 1.3s infinite; }

.marquee-wrap { border-top: 1px solid var(--panel-border); border-bottom: 1px solid var(--panel-border); overflow: hidden; }
.marquee { white-space: nowrap; display: inline-flex; gap: 22px; padding: 18px 0; animation: marquee 24s linear infinite; align-items: center; }
.developer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 92px;
  padding: 10px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}
.developer-logo__name {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ced8eb;
  text-align: center;
}
.developer-logo__img {
  width: 100%;
  height: 100%;
  max-width: 230px;
  max-height: 72px;
  object-fit: contain;
  filter: brightness(1.03) contrast(1.06);
}

.section-title { text-align: center; margin: 0 auto 56px; max-width: 740px; }
.section-title > p:first-child {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 10px;
}
.section-title h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); }
.section-title .muted { margin-top: 12px; line-height: 1.6; }

.cards { display: grid; gap: 20px; }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { background: var(--panel); border: 1px solid var(--panel-border); border-radius: 18px; padding: 24px; }
.card h3 { margin: 14px 0 10px; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }
.icon-badge { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(14, 165, 164, 0.2); }
.icon-badge span { width: 18px; height: 18px; display: block; position: relative; }
.icon-discovery span::before,
.icon-build span::before,
.icon-launch span::before { content: ''; position: absolute; inset: 0; border: 2px solid #d8f8f6; border-radius: 2px; }
.icon-build span::before { border-radius: 50%; border-width: 3px; }
.icon-launch span::before { clip-path: polygon(50% 0,100% 100%,0 100%); border: none; background: #d8f8f6; }

.price-card { position: relative; }
.price-card--popular { background: rgba(14, 165, 164, 0.26); border-color: rgba(94, 234, 212, 0.45); transform: translateY(-4px); }
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #0f766e;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
}
.plan-name { font-weight: 600; margin-bottom: 8px; }
.plan-price { font-size: 34px; font-weight: 800; margin: 0 0 8px; }
.plan-price small { font-size: 14px; color: var(--muted); font-weight: 500; }
.plan-features { list-style: none; margin: 20px 0; padding: 0; display: grid; gap: 10px; }
.plan-features li { color: #2f4564; position: relative; padding-left: 24px; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: #6ee7d8; }

.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: rgba(255, 255, 255, 0.06); border: 1px solid var(--panel-border); border-radius: 12px; padding: 0 16px; }
.faq-item summary { list-style: none; cursor: pointer; font-weight: 500; padding: 16px 0; position: relative; }
.faq-item summary::after { content: '+'; position: absolute; right: 0; font-size: 22px; line-height: 1; color: #a8bad4; }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { margin: 0 0 16px; color: var(--muted); line-height: 1.6; }

.cta {
  position: relative;
  background: linear-gradient(180deg, rgba(14,165,164,.3), rgba(14,165,164,.14));
  border: 1px solid rgba(13, 95, 173, 0.22);
  border-radius: 26px;
  text-align: center;
  padding: 56px 24px;
  overflow: hidden;
}
.cta-noise { position: absolute; inset: 0; background: url('/assets/images/noise.svg'); opacity: .12; pointer-events: none; }
.cta > * { position: relative; }
.cta h2 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 46px); color: #0f2a4c; }
.cta p { margin: 0 auto 24px; max-width: 720px; color: #2e4f74; font-weight: 500; }
.cta .hero-actions { justify-content: center; }
.cta .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #d7a328, #b98617);
}
.cta .btn-ghost {
  color: #0d3f77;
  border-color: rgba(13, 95, 173, 0.35);
  background: rgba(255, 255, 255, 0.85);
}
.cta .btn-ghost:hover { background: #ffffff; }

.site-footer { border-top: 1px solid var(--panel-border); background: transparent; padding-top: 38px; }
.footer-main { display: grid; grid-template-columns: 1.1fr 1fr; gap: 30px; padding-bottom: 32px; border-bottom: 1px solid var(--panel-border); }
.footer-brand p { color: var(--muted); max-width: 460px; line-height: 1.65; margin: 8px 0; }
.footer-links { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.footer-links h3 { margin: 0 0 10px; }
.footer-links ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 6px; }
.footer-links a { color: #2f4564; }
.footer-links a:hover { color: #0d5fad; }
.copyright { text-align: center; color: #b4c3d9; font-size: 14px; padding: 18px 0 28px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes props-marquee-rtl {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes props-marquee-ltr {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); }
  70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); }
  100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 14px;
  }
  .logo { height: 68px; }
  .header-contact-btn {
    min-width: auto;
    font-size: 14px;
    padding: 6px 0;
  }
}

@media (max-width: 960px) {
  .site-header {
    top: 0;
  }
  .nav {
    flex-wrap: wrap;
    gap: 10px 12px;
    padding: 10px 8px;
    min-height: 84px;
    border-radius: 0;
    border: 0;
    background: transparent;
  }
  .logo-link { order: 1; }
  .nav-utility { order: 2; margin-left: auto; }
  .nav-toggle { display: inline-flex !important; align-items: center; justify-content: center; }
  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    gap: 10px;
    flex-direction: column;
    background: #f3f7fc;
    border: 1px solid rgba(11, 78, 145, 0.13);
    border-radius: 12px;
    padding: 10px;
  }
  .nav-links a {
    font-size: 16px;
    color: #1f2348;
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid rgba(11, 78, 145, 0.14);
  }
  .nav-links li:first-child a { color: #1f2348; }
  .nav-actions {
    order: 4;
    width: 100%;
    display: none;
  }
  .header-contact-btn {
    width: auto;
    min-height: auto;
    border-radius: 0;
    border: 0;
    background: transparent;
    color: #1f2348;
    font-size: 16px;
    padding: 10px 12px;
  }
  .logo { height: 64px; }
  .nav.is-open .nav-links,
  .nav.is-open .nav-actions {
    display: flex;
  }
  .hero-grid,
  .cards--3,
  .footer-main,
  .footer-links { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 32px; }
  .hero-points { grid-template-columns: 1fr; }
  .hero-live { margin-left: 0; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .nav { padding: 10px; }
  .nav-links { gap: 8px; }
  .nav-links a { font-size: 14px; }
  .brand-name { display: none; }
  .hero h1 { font-size: clamp(30px, 10vw, 44px); }
  .btn { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: auto; flex: 1; }
  .plan-price { font-size: 30px; }
  .developer-logo {
    min-width: 188px;
    height: 72px;
    padding: 8px 12px;
  }
  .developer-logo__name {
    font-size: 16px;
  }
  .developer-logo__img {
    max-width: 164px;
    max-height: 56px;
  }
}

.developer-logo {
  border-color: rgba(13, 95, 173, 0.18);
  background: rgba(255, 255, 255, 0.9);
}
.developer-logo__name { color: #2a4368; }
.site-footer { background: transparent; }

.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(350px, calc(100vw - 24px));
  background: #f8fafc;
  border: 1px solid #d7dde7;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
  padding: 20px;
  z-index: 90;
}

.whatsapp-widget__close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-widget__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.whatsapp-widget__avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-widget__head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #121a2a;
}

.whatsapp-widget__head p {
  margin: 3px 0 0;
  font-size: 15px;
  color: #677081;
}

.whatsapp-widget__msg {
  background: #e8f3ec;
  border-radius: 12px;
  padding: 16px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.5;
}

.whatsapp-widget__cta {
  margin-top: 14px;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #16a34a;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.whatsapp-widget__cta:hover {
  background: #15803d;
}

.whatsapp-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
  z-index: 91;
  cursor: pointer;
}

.whatsapp-launcher:hover {
  background: #1ebe5a;
}

@media (max-width: 560px) {
  .whatsapp-widget {
    left: 10px;
    right: 10px;
    width: auto;
    bottom: 10px;
    padding: 14px;
  }
  .whatsapp-widget__head h3 { font-size: 22px; }
  .whatsapp-widget__head p { font-size: 14px; }
  .whatsapp-widget__msg { font-size: 15px; padding: 12px; }
  .whatsapp-widget__cta { min-height: 50px; font-size: 18px; }
  .whatsapp-launcher {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
}

/* Testimonials */
.testimonials-grid { align-items: stretch; }
.testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.testimonial-name {
  margin-top: auto;
  margin-bottom: 4px;
  font-weight: 700;
  color: var(--accent);
}
.testimonial-type {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* About section */
.about-section {
  background: transparent;
}
.about-section .section-title h2,
.about-section .section-title > p:not(:first-child),
.about-section .section-title .muted {
  color: #0f172a;
}
.about-section .about-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: start;
  margin-top: 18px;
}
.about-section .about-lead{
  font-size: 18px;
  line-height: 1.65;
  color: rgba(15,23,42,.78);
  margin: 10px 0 0;
}
.about-section .about-points{
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.about-section .about-points li{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15,23,42,.78);
  line-height: 1.5;
}
.about-section .about-points li::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #0b2d6b;
  margin-top: 7px;
  flex: 0 0 10px;
}
.about-section .about-card{
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  padding: 18px 18px;
}
.about-section .about-card h3{
  margin: 0 0 10px;
  font-size: 18px;
}
.about-section .about-card p{
  margin: 0;
  color: rgba(15,23,42,.70);
  line-height: 1.6;
}
.about-section .about-badges{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px;
  margin-top: 14px;
}
.about-section .about-badge{
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 14px;
  padding: 12px 12px;
  background: rgba(11, 45, 107, 0.04);
}
.about-section .about-badge strong{
  display:block;
  font-weight: 800;
  color: #0b2d6b;
}
.about-section .about-badge span{
  display:block;
  color: rgba(15,23,42,.65);
  font-size: 13px;
  margin-top: 4px;
}
@media (max-width: 900px){
  .about-section .about-grid{ grid-template-columns: 1fr; }
}

/* Interior section */
.interior-section .section-title h2,
.interior-section .section-title .muted {
  color: #0f172a;
}
.interior-card {
  border: 1px solid rgba(13, 95, 173, 0.16);
  background: rgba(255, 255, 255, 0.88);
}
.interior-card h3 {
  margin: 0 0 10px;
  color: #17345a;
}
.interior-card p {
  color: #445a77;
}
.interior-cta {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
