:root {
  --bg: #05070b;
  --bg-soft: #0b0f16;
  --panel: #111722;
  --panel-2: #f4f7fb;
  --text: #f8fafc;
  --text-dark: #121821;
  --muted: #9aa7b7;
  --muted-dark: #5b6675;
  --line: rgba(151, 164, 181, 0.22);
  --line-dark: rgba(18, 24, 33, 0.14);
  --blue: #0088ff;
  --blue-2: #35b8ff;
  --white: #ffffff;
  --danger: #ff4d5e;
  --ok: #24c486;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  color: var(--bg);
  background: var(--white);
  border-radius: 6px;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 7, 11, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1320px, calc(100% - 32px));
  min-height: 74px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #101722, #06172b);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.brand-text {
  display: grid;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-text small {
  max-width: 240px;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.2;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  padding: 10px 11px;
  border-radius: 6px;
  color: rgba(248, 250, 252, 0.82);
  font-size: 0.92rem;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
  white-space: normal;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-cta,
.btn-primary {
  color: var(--white);
  background: var(--blue);
}

.header-cta:hover,
.btn-primary:hover,
.btn-outline:hover,
.btn-dark:hover {
  transform: translateY(-1px);
}

.btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.btn-light {
  color: var(--text-dark);
  border-color: var(--line-dark);
  background: var(--white);
}

.btn-dark {
  color: var(--white);
  background: #111722;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--white);
  background: #111722;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 74px));
  display: flex;
  align-items: flex-end;
  padding: clamp(90px, 14vw, 170px) 0 clamp(42px, 7vw, 88px);
  isolation: isolate;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.93), rgba(5, 7, 11, 0.64) 48%, rgba(5, 7, 11, 0.18)),
    linear-gradient(0deg, rgba(5, 7, 11, 0.98), rgba(5, 7, 11, 0.10) 38%);
}

.hero-content {
  max-width: 870px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero .lead {
  max-width: 760px;
  margin-bottom: 28px;
  color: rgba(248, 250, 252, 0.84);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  overflow-wrap: anywhere;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.metric {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.52);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

.metric span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: clamp(70px, 9vw, 116px) 0;
}

.section-light {
  color: var(--text-dark);
  background: var(--panel-2);
}

.section-dark {
  color: var(--text);
  background: var(--bg-soft);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  margin-bottom: 34px;
}

.section-header h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-header p {
  margin-bottom: 0;
  color: var(--muted-dark);
}

.section-dark .section-header p,
.section-dark .muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

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

.card {
  min-width: 0;
  padding: clamp(18px, 2.2vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.section-light .card {
  border-color: var(--line-dark);
  background: var(--white);
}

.card h3,
.card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.card p,
.card li {
  color: var(--muted);
}

.section-light .card p,
.section-light .card li {
  color: var(--muted-dark);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
}

.service-card .service-index {
  width: fit-content;
  margin-bottom: 22px;
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card ul,
.check-list,
.plain-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.check-list li,
.plain-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.service-card li::before,
.check-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.photo-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
}

.photo-tile {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-radius: 8px;
  background: #111722;
}

.photo-tile.small {
  min-height: 210px;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: rgba(248, 250, 252, 0.88);
  background: rgba(5, 7, 11, 0.72);
  font-size: 0.86rem;
}

.urgent-band {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #05070b;
}

.urgent-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: center;
}

.status-panel {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.status-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-row strong {
  color: var(--white);
}

.process {
  counter-reset: process;
}

.process .card {
  position: relative;
  padding-top: 58px;
}

.process .card::before {
  counter-increment: process;
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--blue);
  font-weight: 900;
}

.estimator-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(340px, 0.48fr);
  gap: 18px;
  align-items: start;
}

.form-panel,
.estimate-output,
.contact-panel {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
}

.form-panel {
  padding: clamp(18px, 3vw, 30px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

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

label {
  color: #2a3340;
  font-size: 0.88rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(18, 24, 33, 0.18);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--text-dark);
  background: #f8fafc;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 136, 255, 0.18);
  border-color: var(--blue);
}

.form-note,
.microcopy {
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.form-status {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted-dark);
  font-weight: 700;
}

.form-status.is-ok {
  color: #087a55;
}

.form-status.is-error {
  color: #b42334;
}

.estimate-output {
  position: sticky;
  top: 94px;
  padding: clamp(20px, 3vw, 32px);
}

.estimate-output .amount {
  display: block;
  margin: 12px 0;
  color: var(--text-dark);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
}

.disclaimer {
  padding: 12px;
  border: 1px solid rgba(0, 136, 255, 0.22);
  border-radius: 6px;
  color: #0b3157;
  background: rgba(0, 136, 255, 0.08);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(310px, 0.42fr);
  gap: 18px;
}

.contact-panel {
  padding: 24px;
}

.contact-panel a {
  color: var(--text-dark);
  font-weight: 900;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.final-cta {
  padding: 48px 0;
  color: var(--white);
  background: #07111f;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
}

.final-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  line-height: 1;
}

.final-cta p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  color: rgba(248, 250, 252, 0.76);
  background: #05070b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1fr;
  gap: 28px;
  padding: 46px 0 34px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-copy {
  max-width: 390px;
  color: var(--muted);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-list,
.credits ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li,
.credits li {
  margin-bottom: 9px;
}

.footer-list a,
.credits a,
.footer-bottom a {
  color: rgba(248, 250, 252, 0.86);
  text-decoration: none;
}

.footer-list a:hover,
.credits a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.credits summary {
  cursor: pointer;
  color: var(--white);
  font-weight: 800;
}

.credits ul {
  margin-top: 12px;
}

.credits span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--white);
  background: #19b86b;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  font-weight: 950;
  text-decoration: none;
}

.mini-hero {
  min-height: 430px;
  padding-top: 120px;
}

.mini-hero h1 {
  font-size: clamp(2.7rem, 6vw, 5.8rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.5fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
}

.large-copy {
  font-size: clamp(1.15rem, 2vw, 1.36rem);
  color: inherit;
}

.section-light .large-copy {
  color: #253040;
}

.job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.news-item {
  display: grid;
  gap: 8px;
}

.news-meta {
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1080px) {
  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid !important;
    place-items: center;
    position: fixed;
    right: 14px;
    top: 15px;
    z-index: 160;
    border-color: rgba(255, 255, 255, 0.42);
    background: #182334;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .site-nav {
    position: fixed;
    inset: 74px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 7, 11, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    font-size: 1rem;
  }

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

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

  .section-header,
  .urgent-inner,
  .estimator-wrap,
  .contact-layout,
  .split-section,
  .photo-band,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .estimate-output {
    position: static;
  }
}

@media (max-width: 700px) {
  .container,
  .header-inner,
  .footer-bottom {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand-text small {
    display: none;
  }

  .header-inner {
    min-height: 82px;
    flex-wrap: wrap;
    gap: 8px 14px;
    padding: 10px 0 12px;
  }

  .nav-toggle {
    display: none !important;
  }

  .site-nav {
    position: static;
    inset: auto;
    order: 3;
    display: flex !important;
    flex: 0 0 100%;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    padding: 0;
    border: 0;
    background: transparent;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero {
    min-height: 700px;
    padding-bottom: 36px;
  }

  h1 {
    font-size: clamp(2.75rem, 15vw, 4.8rem);
    overflow-wrap: break-word;
  }

  .mini-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.9rem);
  }

  .section-header h2,
  .split-section h2 {
    font-size: clamp(1.55rem, 6.8vw, 2.25rem);
    overflow-wrap: anywhere;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.72rem;
    overflow-wrap: anywhere;
  }

  .hero .lead {
    max-width: 31ch;
    font-size: 1.02rem;
  }

  .hero-metrics,
  .grid-2,
  .grid-3,
  .grid-4,
  .footer-grid,
  .form-grid,
  .job-card {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .metric {
    min-height: auto;
  }

  .status-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .photo-tile {
    min-height: 260px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.brand-official {
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(150px, 14vw, 220px);
  height: 52px;
  object-fit: contain;
  padding: 6px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.footer-logo {
  width: min(250px, 100%);
  height: auto;
  min-height: 64px;
}

@media (max-width: 700px) {
  .brand-logo {
    width: 142px;
    height: 46px;
    padding: 5px 7px;
  }
}