:root {
  --bg: #08090c;
  --bg-soft: #111217;
  --surface: #17191f;
  --surface-2: #f5f5f6;
  --text: #f7f7f8;
  --muted: #b8bac2;
  --dark-text: #15161a;
  --dark-muted: #5b606a;
  --red: #d61920;
  --red-dark: #a90f16;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

body::selection {
  background: var(--red);
  color: white;
}

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

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: white;
  color: var(--dark-text);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  background: rgba(8, 9, 12, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  background: var(--red);
  color: white;
  font-weight: 900;
  border-radius: 0.25rem;
  box-shadow: 0 10px 30px rgba(214, 25, 32, 0.35);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.75rem, 2.5vw, 1.75rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.main-nav a,
.footer-links a,
.contact-links a {
  transition: color 160ms ease, border-color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible,
.contact-links a:hover,
.contact-links a:focus-visible {
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-cta,
.floating-whatsapp {
  min-width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.25rem;
  padding: 0.7rem 0.95rem;
  font-weight: 800;
  color: white;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
}

.menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.25rem;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
  place-items: center;
  padding: 0.55rem;
}

.menu-toggle span {
  display: block;
  width: 1.25rem;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.24) 72%),
    linear-gradient(0deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.08) 38%);
}

.hero-content {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0 5rem;
}

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

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

h1 {
  max-width: 960px;
  margin-bottom: 1.2rem;
  font-size: clamp(2.55rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.8vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.16rem;
}

.hero-copy {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  padding: 0.9rem 1.1rem;
  font-weight: 900;
  line-height: 1.18;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 16px 34px rgba(214, 25, 32, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 3rem 0 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  background: var(--line);
}

.hero-facts div {
  padding: 1rem;
  background: rgba(13, 14, 18, 0.74);
}

.hero-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
}

.hero-facts dd {
  margin: 0.18rem 0 0;
  font-weight: 900;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--red);
}

.trust-item {
  padding: 1.1rem;
  text-align: center;
  font-weight: 900;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.intro,
.about,
.area,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.intro p,
.about-copy p,
.area p,
.contact-copy p,
.service-card p,
.legal-content p {
  color: var(--muted);
}

.services {
  border-top: 1px solid var(--line);
}

.section-head {
  max-width: 820px;
  margin-bottom: 2rem;
}

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

.service-card {
  min-height: 220px;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  min-width: 0;
}

.service-card.featured {
  border-color: rgba(214, 25, 32, 0.54);
  box-shadow: inset 0 0 0 1px rgba(214, 25, 32, 0.18);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 1.25rem;
  background: rgba(214, 25, 32, 0.13);
  color: #ff7277;
  border: 1px solid rgba(214, 25, 32, 0.35);
  border-radius: 0.25rem;
  font-weight: 900;
  font-size: 0.8rem;
}

.about {
  width: 100%;
  max-width: none;
  padding-left: max(1rem, calc((100vw - var(--max)) / 2));
  padding-right: max(1rem, calc((100vw - var(--max)) / 2));
  background: var(--surface-2);
  color: var(--dark-text);
}

.about-copy p {
  color: var(--dark-muted);
}

.about-copy {
  max-width: 760px;
}

.about-copy h2 {
  font-size: clamp(2rem, 4.2vw, 3.55rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.about-panel {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: #0c0d11;
  color: white;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

.about-panel p {
  color: var(--muted);
}

.panel-number {
  color: var(--red);
  font-size: clamp(4rem, 10vw, 7.5rem);
  line-height: 0.9;
  font-weight: 900;
}

.about-panel hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.7rem 0;
}

.area-list {
  display: grid;
  gap: 0.8rem;
}

.area-list span {
  display: block;
  padding: 1rem 1.1rem;
  background: var(--surface);
  border-left: 0.28rem solid var(--red);
  border-radius: 0.25rem;
  font-weight: 900;
}

.contact {
  align-items: stretch;
}

.contact-links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: white;
}

.whatsapp-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 4vw, 2rem);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.35rem;
  min-width: 0;
}

.whatsapp-form label {
  display: grid;
  gap: 0.4rem;
  color: white;
  font-weight: 900;
}

.whatsapp-form input,
.whatsapp-form select,
.whatsapp-form textarea {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.25rem;
  padding: 0.85rem 0.9rem;
  color: white;
  background: #0c0d11;
}

.whatsapp-form textarea {
  resize: vertical;
}

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

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #050609;
}

.site-footer p {
  margin: 0.2rem 0 0;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  color: white;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  background: var(--red);
  border-color: transparent;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.service-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.legal-page {
  background: #0b0c10;
}

.legal-content {
  width: min(860px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.legal-content h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.legal-content h2 {
  margin-top: 2rem;
  font-size: 1.4rem;
}

.legal-content a {
  color: white;
  border-bottom: 1px solid var(--red);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.15rem;
  }

  .hero {
    min-height: 700px;
  }

  .hero-content {
    padding-top: 4rem;
  }

  .trust-band,
  .service-grid,
  .intro,
  .about,
  .area,
  .contact {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-cta {
    min-height: 2.75rem;
    padding: 0.62rem 0.78rem;
    font-size: 0.88rem;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 180ms ease, opacity 160ms ease, padding 160ms ease, visibility 0s linear 180ms;
  }

  .site-header.nav-open .main-nav {
    max-height: 16rem;
    padding-top: 0.35rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .main-nav a {
    justify-content: flex-start;
    min-height: 2.9rem;
    padding: 0.62rem 0.85rem;
    border: 1px solid var(--line);
    border-radius: 0.25rem;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.94rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 1.5rem));
    padding: 4.5rem 0 3.75rem;
  }

  h1 {
    font-size: clamp(2.15rem, 9.5vw, 3.8rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 3rem);
    line-height: 1.06;
  }

  .section {
    width: min(var(--max), calc(100% - 1.5rem));
    padding: 3.5rem 0;
  }

  .contact-links {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-links a {
    min-height: 3rem;
    display: flex;
    align-items: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0.75rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .header-cta {
    min-height: 3rem;
    padding: 0.72rem 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 100%),
      linear-gradient(0deg, rgba(8, 9, 12, 0.96) 0%, rgba(8, 9, 12, 0.18) 58%);
  }

  .hero-actions,
  .button,
  .contact-links {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .trust-band {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 1rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 5.2rem;
  }

  .floating-whatsapp {
    left: auto;
    right: 1rem;
    bottom: 1rem;
    min-width: 0;
    width: auto;
    padding: 0.78rem 0.9rem;
    text-align: center;
  }
}

@media (max-width: 430px) {
  .brand-mark {
    width: 2.45rem;
    height: 2.45rem;
    font-size: 0.9rem;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .main-nav a {
    font-size: 0.88rem;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 1rem));
    padding: 3.4rem 0 3rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  h1 {
    font-size: clamp(1.82rem, 9.3vw, 2.45rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .section {
    width: min(var(--max), calc(100% - 1rem));
    padding: 3rem 0;
  }

  .trust-item {
    padding: 0.85rem;
  }

  .whatsapp-form {
    padding: 1rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding: 0.65rem;
  }

  .brand {
    align-items: center;
  }

  .brand-mark {
    width: 2.25rem;
    height: 2.25rem;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-cta {
    padding: 0.62rem 0.58rem;
    font-size: 0.8rem;
  }

  .menu-toggle {
    width: 2.55rem;
    height: 2.55rem;
  }

  .main-nav a {
    min-height: 2.75rem;
    font-size: 0.82rem;
  }

  .button {
    padding: 0.85rem 0.75rem;
    font-size: 0.94rem;
  }

  .hero-facts div,
  .area-list span {
    padding: 0.85rem;
  }
}
