:root {
  --bg: #050607;
  --panel: #0c0f12;
  --panel-2: #14181d;
  --gold: #f5b900;
  --gold-2: #ffcf2f;
  --text: #f6f7f8;
  --muted: #b9c0c8;
  --line: rgba(245, 185, 0, 0.28);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 72% 12%, rgba(245, 185, 0, 0.16), transparent 30rem),
    linear-gradient(135deg, #050607 0%, #0e1115 54%, #060708 100%);
  color: var(--text);
  font-family: "Montserrat", Arial, sans-serif;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(5, 6, 7, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  background: linear-gradient(145deg, var(--gold), #de9500);
  color: #050607;
  font-family: "Anton", Impact, sans-serif;
  font-size: 1.45rem;
  clip-path: polygon(15% 0, 100% 0, 85% 100%, 0 100%);
}

.brand strong,
h1,
h2,
h3 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  display: block;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--gold);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 0.35rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.header-cta,
.btn.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #070707;
}

.btn.ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(22rem, 1.1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  min-height: calc(100vh - 5rem);
  padding: clamp(2rem, 5vw, 5rem) clamp(1rem, 4vw, 4rem);
  overflow: hidden;
}

.hero-copy {
  max-width: 42rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.9;
}

h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 0.95;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1.45rem;
}

.hero-text {
  max-width: 36rem;
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.response-note {
  display: inline-flex;
  margin: 1.1rem 0 0;
  color: var(--gold-2);
  font-weight: 900;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -1.1rem;
  content: "";
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  transform: rotate(-1.5deg);
}

.hero-media img {
  position: relative;
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 0.45rem;
  box-shadow: var(--shadow);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-strip article {
  padding: 1.4rem clamp(1rem, 3vw, 3rem);
  background: linear-gradient(135deg, #f5b900, #ffce2e);
  color: #050607;
}

.trust-strip span {
  display: block;
  font-weight: 900;
  opacity: 0.55;
}

.trust-strip strong {
  display: block;
  font-family: "Anton", Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.trust-strip p {
  margin: 0.15rem 0 0;
  font-weight: 800;
}

.section,
.quote-section,
.contact-section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.section-heading {
  max-width: 58rem;
  margin-bottom: 2rem;
}

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

.service-card,
.quote-form {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    var(--panel);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.service-card {
  min-height: 13rem;
  padding: 1.4rem;
}

.service-card .icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--gold);
  font-size: 1.45rem;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.service-card.warning {
  border-color: rgba(245, 185, 0, 0.5);
  background: linear-gradient(145deg, rgba(245, 185, 0, 0.14), rgba(255, 255, 255, 0.02));
}

.zone-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 clamp(1rem, 4vw, 4rem);
  padding: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(90deg, rgba(245, 185, 0, 0.12), rgba(255, 255, 255, 0.03));
}

.zone-section p:not(.eyebrow),
.quote-intro p {
  max-width: 46rem;
  color: var(--muted);
  line-height: 1.7;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.7fr) minmax(22rem, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.quote-intro {
  position: sticky;
  top: 7rem;
}

.quote-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 2rem);
}

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

label {
  display: grid;
  gap: 0.5rem;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.15rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.35rem;
  background: #07090b;
  color: var(--text);
  font: inherit;
  padding: 0.85rem 0.95rem;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 185, 0, 0.15);
}

.form-helper,
.form-success {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.form-success {
  color: var(--gold-2);
  font-weight: 900;
}

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 82% 20%, rgba(37, 211, 102, 0.16), transparent 22rem),
    linear-gradient(135deg, rgba(245, 185, 0, 0.08), rgba(255, 255, 255, 0.02));
}

.contact-section p:not(.eyebrow) {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 1rem;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-height: 4.5rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.contact-btn svg,
.contact-btn span {
  display: grid;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 50%;
}

.contact-btn svg {
  padding: 0.15rem;
  background: #25d366;
  fill: #061006;
}

.contact-btn span {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #050607;
  font-size: 1.4rem;
}

.contact-btn.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(255, 255, 255, 0.04));
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.site-footer strong,
.site-footer a {
  color: var(--text);
  font-weight: 900;
}

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

@media (max-width: 980px) {
  .hero,
  .quote-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-media img {
    max-height: none;
  }

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

  .quote-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .site-header {
    align-items: stretch;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .nav {
    justify-content: space-between;
    gap: 0.4rem;
    width: 100%;
    overflow-x: auto;
    font-size: 0.78rem;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.2rem);
  }

  .trust-strip,
  .service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

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