:root {
  --green: #080808;
  --green-2: #1b1b1b;
  --gold: #c8a24a;
  --gold-2: #e0c06a;
  --ink: #141414;
  --muted: #6f6a5d;
  --line: #ded6c4;
  --paper: #f7f5ef;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(0, 0, 0, .18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
  padding: 10px clamp(18px, 4vw, 56px);
  background: rgba(8, 8, 8, .94);
  border-bottom: 1px solid rgba(200, 162, 74, .28);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  color: var(--white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 14px;
}

.brand-logo {
  display: none;
  width: auto;
  max-width: min(320px, 34vw);
  height: 82px;
  object-fit: contain;
  image-rendering: auto;
}

.brand.has-logo .brand-mark,
.brand.has-logo .brand-name {
  display: none;
}

.brand.has-logo .brand-logo {
  display: block;
}

.nav {
  display: flex;
  gap: 26px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 600;
}

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

.nav a,
.header-cta,
.solution-card a,
.section-cta,
.whatsapp-panel,
.primary-button,
.secondary-button {
  text-decoration: none;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  color: #111;
  background: var(--gold);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #111;
}

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

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(0, 0, 0, .92), rgba(0, 0, 0, .72) 36%, rgba(0, 0, 0, .12) 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding-top: 72px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.9);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.42;
}

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

.metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.metrics div {
  padding: 30px clamp(18px, 5vw, 54px);
  background: var(--white);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  color: var(--green);
  font-size: 20px;
}

.metrics span {
  margin-top: 8px;
  color: var(--muted);
}

.section,
.band,
.product-section,
.contact-section {
  padding: 86px clamp(18px, 6vw, 80px);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 620px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.product-section.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(0, .9fr);
  background: var(--white);
}

.product-section.reverse .product-copy {
  grid-column: 2;
}

.product-section.reverse .quota-grid {
  grid-column: 1;
  grid-row: 1;
}

.product-section.dark {
  color: var(--white);
  background: #080808;
}

.product-section.dark h2,
.product-section.dark .product-copy p {
  color: var(--white);
}

.product-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 8px;
  color: #111;
  background: var(--gold);
  font-weight: 800;
}

.section-cta.light {
  color: #111;
  background: var(--gold);
}

.product-media {
  margin: 0;
}

.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.compact {
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  color: var(--green);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: 0;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card,
.quota-card {
  min-height: 310px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(18, 59, 49, .04);
}

.solution-card {
  display: flex;
  flex-direction: column;
}

.icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #edf3ef;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.solution-card h3,
.quota-card h3 {
  margin: 26px 0 10px;
  color: var(--green);
  font-size: 23px;
}

.solution-card p,
.quota-card p,
.text-block p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.solution-card a {
  margin-top: auto;
  color: var(--green-2);
  font-weight: 800;
}

.band {
  background: var(--green);
}

.band h2 {
  color: var(--white);
}

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

.quota-card span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.quota-card button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  color: var(--ink);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: 50px;
  align-items: start;
}

.text-block ul {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--green);
  font-weight: 700;
  line-height: 1.8;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 560px);
  gap: 48px;
  align-items: start;
  background: var(--white);
}

.whatsapp-panel {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(200, 162, 74, .48);
  border-radius: 8px;
  color: var(--ink);
  background: #fbf7ea;
}

.whatsapp-panel strong {
  font-size: 20px;
}

.whatsapp-panel span {
  color: var(--muted);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  font-size: 14px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd7d0;
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

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

.form-status.error {
  color: #a33a2b;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 6vw, 80px);
  color: rgba(255,255,255,.82);
  background: #050505;
}

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .solution-grid,
  .quota-grid,
  .metrics,
  .split,
  .product-section,
  .product-section.reverse,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .product-section.reverse .product-copy,
  .product-section.reverse .quota-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(18, 59, 49, .94), rgba(18, 59, 49, .75));
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 78px;
  }

  .brand-logo {
    max-width: 210px;
    height: 58px;
  }

  .header-cta {
    display: none;
  }

  .hero-content {
    margin-left: 18px;
  }

  .section,
  .band,
  .contact-section {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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