:root {
  --brand: #0a2463;
  --brand-2: #061a4a;
  --brand-soft: #14307a;
  --gold: #c9a227;
  --gold-2: #a8841a;
  --text: #0b1a33;
  --muted: #5a6b84;
  --line: rgba(10, 36, 99, 0.12);
  --bg: #f4f6fa;
  --bg-2: #ffffff;
  --wa: #25d366;
  --shadow: 0 18px 48px rgba(6, 26, 74, 0.12);
  --radius: 18px;
  --header-h: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Outfit, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-bottom: 0;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.shell { width: min(1180px, 92vw); margin: 0 auto; }
.section { padding: 88px 0; }
.muted { color: var(--muted); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 11px 20px;
  font-weight: 650;
  font-size: 15px;
  transition: 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 24px rgba(10, 36, 99, 0.28);
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn-ghost {
  color: var(--brand);
  background: #fff;
  border-color: rgba(10, 36, 99, 0.18);
}
.btn-ghost:hover { border-color: var(--brand); background: rgba(10, 36, 99, 0.04); }
.btn-wa {
  color: #fff;
  background: linear-gradient(135deg, #2fe072, #1ebe57);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.28);
}
.btn-wa:hover { transform: translateY(-1px); filter: brightness(1.04); }
.btn-gold {
  color: var(--brand-2);
  background: linear-gradient(135deg, #e8c84a, var(--gold));
  font-weight: 750;
}
.btn-gold:hover { transform: translateY(-1px); }
.btn-wa-light {
  color: #fff;
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(255,255,255,0.25);
}
.btn-wa-light:hover { background: rgba(37, 211, 102, 0.35); }
.btn-outline-light {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
  background: transparent;
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }
.btn-nav-call {
  color: #fff;
  background: var(--brand);
  padding: 9px 16px;
  font-size: 14px;
}
.btn-nav-wa {
  color: #0b7a3a;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
  padding: 9px 16px;
  font-size: 14px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10, 36, 99, 0.08);
}
.nav {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.logo-link { display: inline-flex; align-items: center; flex-shrink: 0; }
.logo {
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}
.logo--footer {
  height: 64px;
  max-width: 180px;
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 12px;
  /* keep logo readable on dark footer */
  filter: brightness(0) invert(1);
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: #1a2744;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--brand); }
.nav-utility {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: max(620px, calc(100vh - var(--header-h)));
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 16, 48, 0.92) 0%, rgba(10, 36, 99, 0.78) 48%, rgba(6, 26, 74, 0.45) 100%),
    linear-gradient(0deg, rgba(6, 16, 48, 0.55), transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 72px 0 80px;
}
.hero__copy { max-width: 720px; }
.hero__badge {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}
.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 750;
}
.hero h1 span {
  color: #f0d78c;
}
.hero__lead {
  margin: 0;
  max-width: 540px;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 30px;
}
.hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
}
.hero__trust li {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px 14px;
}
.hero__trust strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.hero__trust span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
}
.hero__chips a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
}
.hero__chips a:hover { color: #fff; border-color: var(--gold); }

/* Contact strip */
.contact-strip {
  background: var(--brand);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-strip__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 14px;
  font-weight: 600;
}
.contact-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.92);
}
.contact-strip a:hover { color: #f0d78c; }
.contact-strip__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
}

/* Section titles */
.section-title {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}
.section-title--left { text-align: left; margin-left: 0; margin-right: 0; }
.section-title--sm { margin-bottom: 28px; }
.section-title > p:first-child {
  margin: 0 0 10px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 750;
}
.section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.section-title .muted {
  margin: 12px 0 0;
  line-height: 1.6;
}

/* About */
.about-section {
  background: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
}
.about-wrap {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(300px, 1.05fr);
  gap: 56px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-visual__frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 580px;
  box-shadow: 0 28px 60px rgba(6, 26, 74, 0.16);
  background: #0a1f45;
}
.about-visual__frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.about-visual__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 16, 40, 0.05) 35%, rgba(6, 16, 40, 0.82) 100%),
    linear-gradient(90deg, rgba(6, 16, 40, 0.18), transparent 50%);
  pointer-events: none;
}
.about-founder {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}
.about-founder__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.about-founder__brand {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(10, 36, 99, 0.1);
  box-shadow: 0 4px 12px rgba(6, 26, 74, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}
.about-founder__brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.about-founder__info { min-width: 0; }
.about-founder__label {
  margin: 0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 750;
  color: var(--gold-2);
}
.about-founder__name {
  margin: 3px 0 2px;
  font-size: 18px;
  font-weight: 750;
  color: var(--brand);
  line-height: 1.15;
}
.about-founder__loc {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.35;
}
.about-founder__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.about-founder__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 750;
  color: #fff;
  transition: transform 0.15s ease, filter 0.15s ease;
}
.about-founder__btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.about-founder__btn svg { display: block; flex-shrink: 0; }
.about-founder__btn--call {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}
.about-founder__btn--wa {
  background: linear-gradient(135deg, #2fe072, #1ebe57);
}
.about-content { max-width: 560px; }
.about-kicker {
  margin: 0 0 12px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 750;
}
.about-content h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--brand);
}
.about-text {
  margin: 0 0 14px;
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(11, 26, 51, 0.76);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}
.about-grid article {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 16px 15px;
  background: #f8fafc;
}
.about-grid h3 {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--brand);
}
.about-grid p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* Properties */
.properties-section {
  background: var(--bg);
  padding-bottom: 40px;
}
.props-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: -20px 0 32px;
}
.props-filter {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  transition: 0.15s ease;
}
.props-filter:hover { border-color: var(--brand); color: var(--brand); }
.props-filter.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.p-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(6, 26, 74, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}
.p-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.p-card.is-hidden { display: none; }
.p-card__media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  background: #dfe5ef;
}
.p-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.p-card:hover .p-card__media img { transform: scale(1.04); }
.p-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(6, 26, 74, 0.78);
  color: #fff;
  font-size: 11px;
  font-weight: 650;
  padding: 5px 10px;
  border-radius: 999px;
}
.p-card__body {
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.25;
  color: var(--brand);
}
.p-card__loc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.p-card__foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.p-card__price {
  font-weight: 750;
  color: var(--brand);
  font-size: 15px;
}
.p-card__actions { display: flex; gap: 8px; align-items: center; }
.p-card__wa,
.p-card__call {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
.p-card__wa svg,
.p-card__call svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.p-card__wa {
  background: #25d366;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.28);
}
.p-card__call {
  background: var(--brand);
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.22);
}
.p-card__wa:hover,
.p-card__call:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.props-more {
  text-align: center;
  margin: 32px 0 8px;
}

/* Marquee pills under properties */
.props-marquee-wrap {
  margin-top: 40px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  padding: 16px 0;
}
.props-lane { overflow: hidden; }
.props-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: marquee-rtl 70s linear infinite;
}
.props-lane:hover .props-track { animation-play-state: paused; }
.props-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  min-width: max-content;
}
.props-pill img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
}
.props-pill span {
  font-size: 13px;
  font-weight: 650;
  color: var(--brand);
  padding-right: 4px;
}

/* Services */
.features-section { background: #fff; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 18px;
  padding: 28px 24px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-left-color: var(--gold);
}
.service-card__num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: rgba(10, 36, 99, 0.18);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: var(--brand);
}
.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Builders */
.builders-section {
  padding: 56px 0 64px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.builders-marquee {
  overflow: hidden;
  margin-top: 8px;
}
.builders-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-rtl 40s linear infinite;
  padding: 8px 0;
}
.builders-marquee:hover .builders-track { animation-play-state: paused; }
.builder-logo {
  width: 180px;
  height: 84px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  flex-shrink: 0;
}
.builder-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.85;
  transition: 0.2s ease;
}
.builder-logo:hover img {
  filter: none;
  opacity: 1;
}

/* Process */
.process-section { background: var(--bg); }
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  counter-reset: none;
}
.process-step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
}
.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(10, 36, 99, 0.08);
  color: var(--brand);
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}
.process-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--brand);
}
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

/* FAQ */
.faq-section { background: #fff; }
.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}
.faq-aside-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 18px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 650;
  padding: 18px 28px 18px 0;
  position: relative;
  color: var(--brand);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--muted);
}
.faq-item[open] {
  border-color: rgba(10, 36, 99, 0.28);
  background: #fff;
  box-shadow: 0 8px 24px rgba(6, 26, 74, 0.06);
}
.faq-item[open] summary::after { content: '-'; color: var(--brand); }
.faq-item p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
}

/* CTA */
.cta-section {
  padding-top: 40px;
  padding-bottom: 40px;
  background: var(--bg);
}
.cta-panel {
  background:
    radial-gradient(600px 280px at 90% 0%, rgba(201, 162, 39, 0.18), transparent 60%),
    linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: 0 24px 60px rgba(6, 26, 74, 0.28);
}
.cta-panel__eyebrow {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 750;
  color: #f0d78c;
}
.cta-panel h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
}
.cta-panel > .cta-panel__copy > p {
  margin: 0 0 22px;
  max-width: 640px;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
}
.cta-details {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 16px;
  max-width: 760px;
}
.cta-details li {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: start;
}
.cta-details span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  padding-top: 3px;
}
.cta-details__value {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  min-width: 0;
}
.cta-details a {
  color: #fff;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}
.cta-details__value a[href^="mailto"],
.cta-details li:last-child .cta-details__value a {
  white-space: normal;
  word-break: break-word;
}
.cta-details a:hover { color: #f0d78c; }
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
/* Mobile uses bottom dock instead of repeating CTAs */
.cta-actions--desktop { display: flex; }

/* Footer */
.site-footer {
  background: #06142f;
  color: rgba(255,255,255,0.82);
  padding: 56px 0 28px;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  max-width: 420px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin: 0 0 10px;
}
.footer-meta { font-size: 14px; }
.footer-meta a { color: #fff; font-weight: 600; }
.footer-meta a:hover { color: #f0d78c; }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.footer-links h3 {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f0d78c;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: #f0d78c; font-weight: 600; }

/* WhatsApp widget */
.whatsapp-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: min(340px, calc(100vw - 24px));
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(16, 24, 40, 0.18);
  padding: 18px;
  z-index: 90;
}
.whatsapp-widget__close {
  position: absolute;
  right: 12px;
  top: 8px;
  border: 0;
  background: transparent;
  color: #6b7280;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.whatsapp-widget__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.whatsapp-widget__avatar {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.whatsapp-widget__avatar svg {
  display: block;
  width: 24px;
  height: 24px;
}
.whatsapp-widget__head h3 {
  margin: 0;
  font-size: 18px;
  color: #121a2a;
}
.whatsapp-widget__head p {
  margin: 2px 0 0;
  font-size: 13px;
  color: #677081;
}
.whatsapp-widget__msg {
  background: #e8f3ec;
  border-radius: 12px;
  padding: 14px;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.5;
}
.whatsapp-widget__cta {
  margin-top: 12px;
  width: 100%;
  min-height: 50px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
}
.whatsapp-widget__cta svg {
  display: block;
  width: 20px;
  height: 20px;
}
.whatsapp-widget__cta:hover { background: #15803d; }
.whatsapp-launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 91;
  cursor: pointer;
  padding: 0;
}
.whatsapp-launcher svg {
  display: block;
  width: 30px;
  height: 30px;
}
.whatsapp-launcher:hover {
  filter: brightness(1.05);
  transform: scale(1.04);
}

/* Mobile dock */
.mobile-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: #fff;
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px rgba(6,26,74,0.08);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
}
.mobile-dock a {
  flex: 1;
  min-height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 750;
  color: #fff;
}
.mobile-dock a svg {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mobile-dock__call { background: var(--brand); }
.mobile-dock__wa { background: #25d366; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

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

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 14px; }
  .props-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .btn-nav-call, .btn-nav-wa { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    left: 4vw;
    right: 4vw;
    top: calc(var(--header-h) - 4px);
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--shadow);
    gap: 6px;
  }
  .nav-links a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    background: var(--bg);
  }
  .nav.is-open .nav-links { display: flex; }
  .site-header { position: sticky; }
  .nav { position: relative; }

  .hero { min-height: auto; }
  .hero__content { padding: 48px 0 56px; }
  .hero__trust { grid-template-columns: 1fr; max-width: 100%; }
  .about-wrap { grid-template-columns: 1fr; gap: 36px; }
  .about-visual__frame {
    aspect-ratio: 16 / 11;
    max-height: 420px;
  }
  .about-content { max-width: none; }
  .faq-layout,
  .footer-main { grid-template-columns: 1fr; }
  .service-grid,
  .process-timeline { grid-template-columns: 1fr; }
  .cta-panel { padding: 32px 22px; }
  .contact-strip__inner { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .props-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual__frame { max-height: 340px; aspect-ratio: 4 / 5; }
  .about-founder { left: 12px; right: 12px; bottom: 12px; padding: 14px; }
  .about-founder__brand { width: 56px; height: 56px; border-radius: 14px; }
  .about-actions .btn { flex: 1; min-width: 140px; }
  .footer-links { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero__actions .btn { width: 100%; }
  .cta-actions,
  .cta-actions--desktop { display: none !important; }
  .cta-details li { grid-template-columns: 1fr; gap: 2px; }
  /* One Call + WhatsApp bar only - no floating bubble on mobile */
  .mobile-dock { display: flex; }
  .whatsapp-widget,
  .whatsapp-launcher { display: none !important; }
  body { padding-bottom: 72px; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  .logo { height: 58px; max-width: 160px; }
  .hero__chips { flex-direction: column; align-items: flex-start; gap: 8px; }
}
