:root {
  --brand: #58be07;
  --brand-dark: #2f6a04;
  --accent: #3b82f6;
  --accent-dark: #1d4ed8;
  --surface: #ffffff;
  --surface-alt: rgba(255, 255, 255, 0.92);
  --text: #0f172a;
  --muted: #475569;
  --border: rgba(15, 23, 42, 0.08);
  --bg: #f5f7fb;
  --shadow-lg: 0 24px 48px rgba(15, 23, 42, 0.12);
  --shadow-md: 0 16px 32px rgba(15, 23, 42, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;
  font-size: 16px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus-visible {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid rgba(59, 130, 246, 0.35);
  outline-offset: 3px;
}

img,
picture {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 16px;
  width: 100%;
}

.top-banner {
  background: linear-gradient(90deg, rgba(88, 190, 7, 0.95), rgba(59, 130, 246, 0.95));
  color: #ffffff;
  font-size: 0.95rem;
  padding: 10px 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.top-banner__cta {
  display: inline-flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.top-banner__cta a {
  font-weight: 600;
  color: #ffffff;
}

.py-12 {
  padding-block: 3rem;
}

@media (min-width: 1024px) {
  .lg\:py-16 {
    padding-block: 4rem;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #eef1f4;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 64px;
}

.brand {
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  font-size: 1.05rem;
}

.nav {
  display: grid;
  align-items: center;
  gap: 16px;
  width: 100%;
  grid-template-columns: auto 1fr auto;
}

.nav-list {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #0f172a;
  text-decoration: none;
  padding: 10px 6px;
  border-radius: 8px;
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: #f3f5f7;
}

.cta-group,
.nav__actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
}

.nav__logo {
  height: 42px;
  width: auto;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.12);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-weight: 500;
  color: #0f172a;
  text-decoration: none;
  padding: 10px 6px;
  border-radius: 8px;
}

.nav__links a:hover,
.nav__links a:focus-visible {
  background: #f3f5f7;
}

.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
}

.btn-outline {
  border: 1px solid #cfd6de;
  color: #0f172a;
  background: transparent;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #f5f7fa;
}

.btn-whatsapp {
  background: linear-gradient(90deg, #22c55e, #3b82f6);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.18);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  filter: brightness(0.96);
}

.nav-toggle {
  background: none;
  border: 0;
  padding: 8px;
  border-radius: 10px;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hide-on-mobile {
  display: none;
}

@media (min-width: 992px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }
  .hide-on-mobile {
    display: flex;
  }
  .nav-list {
    justify-content: center;
  }
  .cta-group {
    display: flex;
    justify-content: flex-end;
  }
  .nav-toggle {
    display: none;
  }
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: stretch;
  pointer-events: none;
}

.drawer-inner {
  width: 88vw;
  max-width: 380px;
  height: 100%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-backdrop {
  flex: 1;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.drawer.is-open {
  pointer-events: auto;
}

.drawer.is-open .drawer-inner {
  transform: translateX(0);
}

.drawer.is-open .drawer-backdrop {
  opacity: 1;
}

.drawer-close {
  align-self: flex-end;
  background: #f1f5f9;
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}

.drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
}

.drawer-list a {
  padding: 12px 10px;
  border-radius: 12px;
  color: #0f172a;
  text-decoration: none;
  font-weight: 500;
}

.drawer-list a:hover,
.drawer-list a:focus-visible {
  background: #f3f5f7;
}

.drawer-cta {
  margin-top: auto;
  display: flex;
  gap: 10px;
}

.drawer-cta .btn {
  flex: 1;
  text-align: center;
}

body.nav-open {
  overflow: hidden;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(15, 23, 42, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px;
}

.nav__panel {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  display: none;
  gap: 0.75rem;
  z-index: 60;
}

.mobile-cta-bar a {
  flex: 1;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
}

.mobile-cta-bar a:first-child {
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.mobile-cta-bar a:last-child {
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.25);
}

.lead-form {
  position: relative;
}

.lead-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 10px 35px rgba(15, 23, 42, 0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.lead-form:hover::before,
.lead-form:focus-within::before {
  opacity: 1;
}

.lead-form .btn {
  padding-inline: 20px;
  min-width: 220px;
}

.hero {
  padding: var(--space-xxl) 0 var(--space-xl);
}

.hero-collage .hero-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-collage .hero-grid {
    grid-template-columns: 65% 35%;
  }
}

.hero-collage .hero-main {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.hero-collage .hero-main img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.hero-collage .hero-side {
  display: grid;
  gap: 16px;
}

.hero-collage .hero-side img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  aspect-ratio: 16 / 9;
}

.hero-collage .hero-copy {
  margin-top: 20px;
  max-width: 820px;
  display: grid;
  gap: 1rem;
}

.hero-collage .hero-copy h1 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.15;
  margin: 0 0 10px;
}

.hero-collage .hero-copy p {
  color: #475569;
  margin: 0;
}

.eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4f46e5;
  font-weight: 700;
  font-size: 0.75rem;
}

.hero-collage .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-start;
}
.hero-collage .btn-row .btn {
  min-width: 180px;
}
.hero-collage .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}
.hero-collage .hero-tags li {
  background: #eef6ff;
  color: #0f172a;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
}

.stat-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}


.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.trust-badge {
  background: rgba(15, 23, 42, 0.05);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
}

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

.section--surface {
  background: var(--surface-alt);
}

.section__header {
  max-width: 720px;
  margin-bottom: var(--space-xl);
}

.section__title {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin: 0 0 var(--space-sm);
}

.section__intro {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.section-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.section-card:last-child {
  margin-bottom: 0;
}

.section-card.hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: var(--space-xl);
}

.section-card.hero .hero__content {
  display: grid;
  gap: var(--space-md);
  align-content: start;
}

.section-card.hero .hero__media {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.section-card.hero .hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.section-card.hero .hero__media img:first-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.section-card.hero .hero__media img:nth-child(n + 2) {
  aspect-ratio: 4 / 3;
}

.section-title {
  font-size: clamp(1.8rem, 2.3vw, 2.4rem);
  margin: 0;
}

.hero__eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.hero__hotline {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero__hotline a {
  color: var(--accent-dark);
}

.hero__cta,
.inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.stat-pill {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-dark);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 0.9rem;
}

.highlight-item {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: var(--space-sm);
}

.inline-form,
[data-lead-form] {
  display: grid;
  gap: var(--space-md);
}

.form-row {
  display: grid;
  gap: var(--space-sm);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

[data-lead-form] label {
  display: grid;
  gap: var(--space-xs);
  font-weight: 600;
  color: var(--muted);
}

[data-lead-form] input,
[data-lead-form] textarea,
[data-lead-form] select {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: #ffffff;
}

[data-lead-form] input:focus-visible,
[data-lead-form] textarea:focus-visible,
[data-lead-form] select:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
  outline: none;
}

[data-lead-form] textarea {
  resize: vertical;
  min-height: 120px;
}

.inline-form button,
[data-lead-form] button {
  justify-self: start;
}

.inline-cta span {
  color: var(--muted);
  font-size: 0.95rem;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  font-size: 0.95rem;
}

.data-table caption {
  font-weight: 700;
  margin-bottom: var(--space-sm);
  text-align: left;
}

.data-table th,
.data-table td {
  padding: var(--space-sm);
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.data-table th {
  background: var(--surface-alt);
  font-weight: 600;
}

.data-table tbody tr:nth-child(even) {
  background: rgba(59, 130, 246, 0.06);
}

.hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.project-summary {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.project-summary__card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: var(--space-md);
}

.project-summary__card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
  color: var(--muted);
}

.project-summary__card h2 {
  margin: 0;
}

.quick-facts {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--space-sm);
}

.quick-facts h3 {
  margin: 0;
}

.quick-facts dl {
  margin: 0;
  display: grid;
  gap: var(--space-sm);
}

.quick-facts dt {
  font-weight: 600;
  color: var(--muted);
}

.quick-facts dd {
  margin: 0;
  color: var(--text);
}

.project-about {
  display: grid;
  gap: var(--space-md);
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 900px;
}

.highlight-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.highlight-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: grid;
  gap: var(--space-sm);
}

.highlight-card__icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.12);
  color: var(--accent-dark);
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.feature-item {
  display: grid;
  gap: var(--space-sm);
  align-content: start;
}

.feature-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 190, 7, 0.14);
  color: var(--brand-dark);
  font-weight: 700;
}

.table-responsive {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  background: var(--surface);
}

.table-responsive thead th {
  position: sticky;
  top: 0;
  background: rgba(245, 247, 251, 0.95);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.price-table thead {
  background: rgba(59, 130, 246, 0.12);
}

.price-table th,
.price-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-table th {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-table td:last-child {
  text-align: right;
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: var(--space-sm);
}

.floor-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.floor-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  display: grid;
  gap: var(--space-md);
}

.floor-card__media {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.location-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 1024px) {
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.location-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 12;
}

.location-map img,
.location-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-list {
  list-style: disc;
  margin: 0;
  padding-left: 1.25rem;
  display: grid;
  gap: var(--space-sm);
  color: var(--muted);
}

.lead-band {
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.12), rgba(88, 190, 7, 0.12));
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: grid;
  gap: var(--space-md);
  align-items: center;
}

.lead-band__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-sm);
}

.lead-form {
  max-width: 700px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-md);
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.lead-form .form-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
}

.lead-form__submit {
  align-self: center;
  min-width: 200px;
}

.lead-form__note {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}

.input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.16);
  outline: none;
}

.faq {
  padding-block: 3rem;
}

.faq h2 {
  font-size: clamp(26px, 2.4vw, 36px);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.faq-card {
  border: 1px solid #e6ebf0;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}

.faq-card details + details {
  border-top: 1px solid #eef1f4;
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1.05rem;
}

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

.faq-card details[open] > summary {
  background: #f8fafc;
}

.faq-card .answer {
  padding: 10px 20px 18px 20px;
  color: #475569;
}

@media (max-width: 767px) {
  .faq-card summary,
  .faq-card .answer {
    padding-inline: 16px;
  }
}

footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-xxl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-heading {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.footer-link {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: #ffffff;
}

.footer-form {
  display: grid;
  gap: var(--space-sm);
}

.footer-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: var(--space-lg);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.floating-action {
  position: fixed;
  bottom: var(--space-lg);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: 999px;
  color: #ffffff;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  z-index: 850;
}

.floating-action--whatsapp {
  right: var(--space-lg);
  background: #25d366;
}

.floating-action--call {
  right: calc(var(--space-lg) + 150px);
  background: var(--brand);
}

.floating-action svg {
  width: 20px;
  height: 20px;
}

.tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, -8px);
  background: rgba(15, 23, 42, 0.88);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.floating-action:hover .tooltip,
.floating-action:focus-visible .tooltip {
  opacity: 1;
}

.lead-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  z-index: 1000;
}

.lead-modal.is-open {
  display: flex;
}

.lead-modal__dialog {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  width: min(520px, 90vw);
  position: relative;
  display: grid;
  gap: var(--space-md);
  box-shadow: var(--shadow-lg);
}

.lead-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.status-message {
  border-left: 3px solid rgba(59, 130, 246, 0.3);
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(59, 130, 246, 0.06);
}

.status-message.success {
  border-color: rgba(88, 190, 7, 0.6);
  background: rgba(88, 190, 7, 0.12);
  color: var(--brand-dark);
}

.status-message.error {
  border-color: rgba(220, 38, 38, 0.4);
  background: rgba(248, 113, 113, 0.15);
  color: #991b1b;
}

@media (max-width: 1100px) {
  .nav {
    grid-template-columns: auto;
    justify-items: end;
  }
}


@media (max-width: 768px) {
  body.has-mobile-cta-bar {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .section-card {
    padding: var(--space-lg);
  }

  .hero-collage .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-collage .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-collage .btn-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-collage .btn-row .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-collage .hero-tags {
    justify-content: center;
    gap: var(--space-xs);
  }

  .mobile-cta-bar {
    display: flex;
  }

  .mobile-cta-bar a {
    padding-block: 0.9rem;
  }

  .lead-form {
    padding: var(--space-xl);
    padding-bottom: calc(var(--space-xl) + 80px);
  }

  .lead-form__submit {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: calc(64px + env(safe-area-inset-bottom));
    z-index: 55;
    width: auto;
  }

  .inline-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  .top-banner {
    align-items: flex-start;
  }

  .nav {
    padding: var(--space-sm) 0;
    grid-template-columns: auto;
    justify-items: end;
  }

  .hero {
    padding: var(--space-xl) 0;
  }

  .lead-band__row {
    grid-template-columns: 1fr;
  }

  .lead-form__submit {
    left: 0.75rem;
    right: 0.75rem;
  }
}
.section-divider {
  border-top: 1px solid rgba(15, 23, 42, 0.07);
}
