:root {
  --orange: #f97316;
  --orange-strong: #ff5a00;
  --orange-soft: #fff2e8;
  --black: #111111;
  --graphite: #333333;
  --muted: #686868;
  --line: rgba(17, 17, 17, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --page: #f7f7f7;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(17, 17, 17, 0.12);
  --shadow-soft: 0 14px 36px rgba(17, 17, 17, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 118px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--graphite);
}

body.menu-open {
  overflow: hidden;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--black);
  font-size: 64px;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1240px;
  min-height: 86px;
  margin: 0 auto;
  padding: 10px clamp(16px, 4vw, 40px);
}

.brand {
  display: inline-grid;
  place-items: center;
  width: 132px;
  min-width: 132px;
  height: 68px;
  padding: 4px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--graphite);
  font-size: 14px;
  font-weight: 850;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--orange-soft);
  color: var(--black);
}

.nav-links .nav-cta {
  min-height: 46px;
  padding: 0 18px;
  background: var(--orange-strong);
  color: #fff;
  box-shadow: 0 12px 26px rgba(255, 90, 0, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--black);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 760px;
  overflow: hidden;
  padding: 176px clamp(16px, 6vw, 84px) 116px;
  background: var(--black);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.68) 42%, rgba(17, 17, 17, 0.18) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.34) 0%, rgba(17, 17, 17, 0.42) 100%);
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font: inherit;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: linear-gradient(135deg, var(--orange-strong), var(--orange));
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 90, 0, 0.25);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
}

.button:disabled {
  opacity: 0.72;
  cursor: wait;
  transform: none;
}

.microtrust {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  font-weight: 800;
}

.carousel {
  position: relative;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  overflow: hidden;
}

.carousel-track,
.carousel-slide {
  width: 100%;
  height: 100%;
}

.carousel-track {
  position: relative;
}

.carousel-slide {
  display: none;
  margin: 0;
}

.carousel-slide.active {
  display: block;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media .carousel-slide {
  min-height: 760px;
}

.hero-media .carousel-slide img {
  height: 760px;
}

.hero-media figcaption {
  position: absolute;
  right: clamp(16px, 5vw, 72px);
  bottom: 86px;
  z-index: 4;
  max-width: 260px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.7);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.hero h1 {
  color: #fff;
}

.hero .eyebrow {
  color: #ffb168;
}

.hero .carousel-dots {
  bottom: 42px;
}

.hero-arrow {
  top: auto;
  bottom: 30px;
  transform: none;
}

.hero-arrow.previous {
  right: 74px;
  left: auto;
}

.hero-arrow.next {
  right: 24px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--black);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-arrow.previous {
  left: 14px;
}

.carousel-arrow.next {
  right: 14px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.carousel-dots button.active {
  width: 26px;
  border-radius: 999px;
  background: var(--orange-strong);
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(16px, 4vw, 40px);
  background: var(--black);
}

.trust-section article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.035);
}

.line-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.line-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-section strong {
  color: #fff;
  font-size: 17px;
  line-height: 1.28;
}

.services-section,
.seo-summary-section,
.community-section,
.problems-section,
.dashboard-section,
.about-section,
.commitment-section,
.faq-section,
.contact-section {
  padding: clamp(86px, 9vw, 132px) clamp(16px, 4vw, 40px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading p:last-child {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 18px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.seo-summary-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  background: var(--page);
}

.seo-summary-copy {
  max-width: 780px;
}

.seo-summary-copy p {
  font-size: 18px;
}

.seo-link-grid {
  display: grid;
  gap: 12px;
}

.seo-link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--black);
  box-shadow: var(--shadow-soft);
  font-weight: 950;
}

.seo-link-grid a::after {
  color: var(--orange-strong);
  content: "->";
}

.service-card,
.team-card,
.commitment-grid article,
.metric-grid article,
.line-chart-card,
.donut-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card {
  display: grid;
  align-content: start;
  min-height: 290px;
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin-top: 24px;
}

.service-card p {
  margin-bottom: 20px;
}

.service-card a {
  align-self: end;
  color: var(--orange-strong);
  font-weight: 950;
}

.community-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--orange-soft) 100%);
}

.community-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.image-carousel {
  max-width: 1180px;
  height: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-carousel .carousel-slide {
  height: 520px;
}

.problems-section {
  background: #fff;
}

.problem-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.14), rgba(255, 255, 255, 0.92) 54%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0;
}

.problem-grid span {
  position: relative;
  min-height: 72px;
  padding: 16px 16px 16px 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--graphite);
  font-weight: 900;
  line-height: 1.28;
}

.problem-grid span::before {
  position: absolute;
  left: 18px;
  top: 23px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange-strong);
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.12);
  content: "";
}

.problem-panel > p {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: 18px;
}

.dashboard-section {
  background: var(--page);
}

.dashboard-mockup {
  display: grid;
  grid-template-columns: 228px minmax(0, 1fr);
  max-width: 1240px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mock-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 24px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.76);
}

.mock-sidebar strong {
  margin-bottom: 16px;
  color: #fff;
  font-size: 20px;
}

.mock-sidebar span {
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 850;
}

.mock-sidebar span:first-of-type {
  background: var(--orange-strong);
  color: #fff;
}

.mock-content {
  min-width: 0;
  padding: clamp(20px, 4vw, 34px);
}

.mock-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.mock-header span,
.metric-grid span,
.chart-head span,
.donut-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mock-header h3 {
  margin: 6px 0 0;
  font-size: 30px;
}

.mock-header > strong {
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-strong);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.metric-grid article {
  min-width: 0;
  padding: 18px;
}

.metric-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 30px;
  line-height: 1;
}

.mock-charts {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.65fr);
  gap: 14px;
  margin-top: 14px;
}

.line-chart-card,
.donut-card {
  padding: 22px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.finance-chart {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  background: #fafafa;
}

.chart-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 250px;
  padding: 8px 0 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: right;
}

.chart-plot {
  position: relative;
  min-width: 0;
}

.chart-plot svg {
  width: 100%;
  height: 250px;
}

.grid-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.08);
  stroke-width: 1;
}

.axis-line {
  fill: none;
  stroke: rgba(17, 17, 17, 0.2);
  stroke-width: 2;
}

.chart-area {
  fill: rgba(249, 115, 22, 0.14);
}

.chart-line {
  fill: none;
  stroke: var(--orange-strong);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-points circle {
  fill: #fff;
  stroke: var(--orange-strong);
  stroke-width: 5;
}

.chart-x-axis {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.chart-data-labels {
  position: absolute;
  inset: 0 0 30px;
  pointer-events: none;
}

.chart-data-labels span {
  position: absolute;
  left: var(--x);
  top: var(--y);
  padding: 5px 7px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--orange-strong);
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  transform: translate(-50%, -100%);
}

.chart-data-labels span:first-child {
  transform: translate(0, -100%);
}

.chart-data-labels span:last-child {
  transform: translate(-100%, -100%);
}

.donut-card {
  display: grid;
  gap: 18px;
  align-content: start;
  text-align: left;
}

.donut-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 178px;
  height: 178px;
  margin: 0 auto;
}

.donut {
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 47%, transparent 48%),
    conic-gradient(var(--orange-strong) 0 48%, #ffb168 48% 75%, #1f1f1f 75% 100%);
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.08);
}

.donut-value {
  position: absolute;
  display: grid;
  gap: 2px;
  text-align: center;
}

.donut-value strong {
  color: var(--black);
  font-size: 26px;
  line-height: 1;
}

.donut-value span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.distribution-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.distribution-list li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  color: var(--graphite);
  font-weight: 850;
}

.distribution-list i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.distribution-list .finance {
  background: var(--orange-strong);
}

.distribution-list .operation {
  background: #ffb168;
}

.distribution-list .residents {
  background: var(--black);
}

.testimonial-section {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 78px clamp(16px, 4vw, 40px);
  color: #fff;
}

.testimonial-bg,
.testimonial-bg::after {
  position: absolute;
  inset: 0;
}

.testimonial-bg::after {
  background: rgba(17, 17, 17, 0.68);
  content: "";
}

.testimonial-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-track {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
}

.testimonial-slide {
  text-align: center;
}

.testimonial-slide span {
  color: var(--orange);
  font-size: 74px;
  font-weight: 950;
  line-height: 0.8;
}

.testimonial-slide h2 {
  color: #fff;
}

.testimonial-slide p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 850;
}

.carousel-dots.light button {
  background: rgba(255, 255, 255, 0.42);
}

.about-section {
  background: #fff;
}

.about-section .section-heading {
  max-width: 880px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  isolation: isolate;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  object-position: center;
  background: #f4f0ed;
}

.team-card div {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: #fff;
}

.team-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.team-card ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
}

.team-card li {
  color: var(--graphite);
  font-weight: 850;
}

.team-card p {
  margin-bottom: 0;
}

.commitment-section {
  background:
    linear-gradient(180deg, #fff 0%, var(--orange-soft) 100%);
}

.faq-section {
  background: #fff;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--page);
  box-shadow: var(--shadow-soft);
}

.faq-grid h3 {
  font-size: 21px;
}

.faq-grid p {
  margin-bottom: 0;
}

.seo-page {
  background: #fff;
}

.seo-page .site-header {
  position: sticky;
}

.seo-hero {
  padding: 150px clamp(16px, 5vw, 72px) 74px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0.54)),
    url("assets/hero-condominio.jpg") center / cover;
  color: #fff;
}

.seo-hero-inner,
.seo-content,
.seo-cta-panel {
  max-width: 1040px;
  margin: 0 auto;
}

.seo-hero h1 {
  color: #fff;
}

.seo-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.seo-content {
  display: grid;
  gap: 26px;
  padding: 70px clamp(16px, 4vw, 40px);
}

.seo-content h2 {
  margin-top: 12px;
  font-size: 34px;
}

.seo-content p,
.seo-content li {
  color: var(--graphite);
  font-size: 18px;
  line-height: 1.7;
}

.seo-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  margin: 0;
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 12px;
}

.internal-links a {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--orange-strong);
  font-weight: 900;
}

.seo-cta-panel {
  margin-top: 18px;
  padding: 26px;
  border-radius: 8px;
  background: var(--orange-soft);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: 0 auto;
}

.commitment-grid article {
  min-height: 152px;
  padding: 22px;
}

.commitment-grid strong {
  display: block;
  margin-top: 18px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.25;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}

.contact-info {
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.22), transparent 54%),
    var(--black);
  color: #fff;
}

.contact-info h2,
.contact-info p {
  color: #fff;
}

.contact-info p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-lines a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 30px);
}

.form-success {
  display: grid;
  gap: 5px;
  padding: 15px 16px;
  border: 1px solid rgba(249, 115, 22, 0.24);
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--black);
}

.form-success[hidden] {
  display: none;
}

.form-success strong {
  font-size: 16px;
  font-weight: 950;
}

.form-success span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--black);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--graphite);
  font: inherit;
}

.contact-form textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange-strong);
  outline: 4px solid rgba(249, 115, 22, 0.16);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(16px, 4vw, 40px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer img {
  width: 126px;
  height: auto;
  padding: 6px;
  border-radius: 8px;
  background: #fff;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.whatsapp-float {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(14px, 2vw, 28px);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #24d366;
  color: #fff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.26);
  font-weight: 950;
}

.whatsapp-float svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(12px);
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal-panel {
  position: relative;
  width: min(520px, 100%);
  padding: 34px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 115, 22, 0.18), transparent 46%),
    #fff;
  box-shadow: var(--shadow);
}

.contact-modal-panel span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-strong);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-modal-panel h2 {
  margin-bottom: 14px;
  font-size: 40px;
}

.contact-modal-panel p {
  margin-bottom: 24px;
  font-size: 18px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--black);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.visits-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 0%, rgba(249, 115, 22, 0.18), transparent 28%),
    linear-gradient(180deg, #171717 0%, #26231f 44%, var(--page) 44%);
}

.visits-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(16px, 4vw, 56px);
}

.visits-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.visits-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 900;
}

.visits-dashboard {
  padding: 38px clamp(16px, 5vw, 72px) 84px;
}

.visits-hero {
  max-width: 980px;
  margin-bottom: 34px;
}

.visits-hero h1 {
  max-width: 900px;
  margin-bottom: 18px;
  color: #fff;
}

.visits-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 19px;
}

.analytics-status,
.analytics-grid {
  display: grid;
  gap: 16px;
}

.analytics-status {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 16px;
}

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

.analytics-status article,
.analytics-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.analytics-card.wide {
  grid-column: span 2;
}

.analytics-card h2 {
  font-size: 32px;
}

.analytics-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.analytics-preview-chart {
  display: flex;
  align-items: end;
  gap: 10px;
  height: 190px;
  margin: 10px 0 20px;
  padding: 18px;
  border-radius: 8px;
  background: #f4eee7;
}

.analytics-preview-chart span {
  flex: 1;
  height: var(--h);
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #ffb168, var(--orange-strong));
}

@media (max-width: 1180px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .hero {
    min-height: 700px;
  }

  .service-grid,
  .faq-grid,
  .trust-section,
  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .team-card img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
  }
}

@media (max-width: 920px) {
  section[id] {
    scroll-margin-top: 96px;
  }

  .navbar {
    min-height: 78px;
  }

  .brand {
    width: 116px;
    min-width: 116px;
    height: 60px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 78px 12px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    justify-content: flex-start;
  }

  .nav-links .nav-cta {
    justify-content: center;
  }

  .hero {
    min-height: 680px;
    padding-top: 132px;
  }

  .hero-media .carousel-slide,
  .hero-media .carousel-slide img {
    height: 680px;
  }

  .image-carousel,
  .image-carousel .carousel-slide {
    min-height: 0;
    height: 410px;
  }

  .problem-grid,
  .dashboard-mockup,
  .mock-charts,
  .seo-summary-section,
  .contact-section,
  .analytics-status,
  .analytics-grid {
    grid-template-columns: 1fr;
  }

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

  .mock-sidebar strong {
    grid-column: 1 / -1;
  }

  .analytics-card.wide {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  .hero {
    min-height: 650px;
    padding: 122px 16px 82px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions .button,
  .problem-panel .button,
  .contact-form .button {
    width: 100%;
  }

  .hero-media .carousel-slide,
  .hero-media .carousel-slide img {
    height: 650px;
  }

  .image-carousel,
  .image-carousel .carousel-slide {
    height: 320px;
  }

  .hero-media figcaption {
    display: none;
  }

  .hero-arrow {
    display: none;
  }

  .hero .carousel-dots {
    bottom: 26px;
  }

  .trust-section,
  .service-grid,
  .faq-grid,
  .problem-grid,
  .metric-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .services-section,
  .seo-summary-section,
  .community-section,
  .problems-section,
  .dashboard-section,
  .about-section,
  .commitment-section,
  .faq-section,
  .contact-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-card,
  .problem-panel,
  .contact-card {
    padding: 22px;
  }

  .mock-sidebar {
    grid-template-columns: 1fr;
  }

  .mock-header,
  .chart-head,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

  .finance-chart {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 12px;
  }

  .chart-y-axis,
  .chart-plot svg {
    height: 210px;
  }

  .chart-y-axis {
    padding-bottom: 30px;
    font-size: 11px;
  }

  .chart-data-labels span {
    font-size: 10px;
  }

  .team-card img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center top;
  }

  .team-card div {
    padding: 22px;
  }

  .team-card h3 {
    font-size: 24px;
  }

  .team-card ul {
    margin-bottom: 14px;
  }

  .team-card p {
    font-size: 15px;
    line-height: 1.55;
  }

  .contact-lines a {
    width: 100%;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
    min-height: 50px;
    padding: 0 14px;
    font-size: 14px;
  }

  .contact-modal-panel h2 {
    font-size: 32px;
  }
}
