:root {
  --yellow: #f3c21b;
  --green: #1f7a4a;
  --black: #0b0b0b;
  --white: #ffffff;
  --gray-100: #f6f6f6;
  --gray-200: #e6e6e6;
  --gray-700: #3a3a3a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Oswald", "League Gothic", "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  color: var(--white);
  background: radial-gradient(1200px 600px at 10% 0%, #1b1b1b 0%, #0f0f0f 45%, #070707 100%);
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.topbar {
  background: var(--black);
  border-bottom: 1px solid #1e1e1e;
  color: var(--gray-200);
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 0.85rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.9), rgba(10, 10, 10, 0.85));
  border-bottom: 1px solid #222;
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 110px;
  height: 110px;
  border-radius: 0;
  background: transparent;
  color: var(--yellow);
  font-weight: 700;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
}

.brand-name strong {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-name span {
  font-size: 0.85rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
  border-color: var(--yellow);
  color: var(--yellow);
}

.hero {
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  margin: 0 0 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero p {
  font-family: "Barlow", "Arial", sans-serif;
  font-size: 1.05rem;
  color: var(--gray-200);
  max-width: 520px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 20px rgba(243, 194, 27, 0.25);
}

.btn-secondary {
  border-color: var(--yellow);
  color: var(--yellow);
}

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

.hero-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 28px;
  display: grid;
  gap: 16px;
}

.hero-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.hero-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-family: "Barlow", Arial, sans-serif;
  color: var(--gray-200);
}

.section {
  padding: 70px 0;
}

.section.light {
  background: var(--white);
  color: var(--black);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section-subtitle {
  font-family: "Barlow", Arial, sans-serif;
  color: var(--gray-700);
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 22px;
  backdrop-filter: blur(6px);
}

.section.light .card {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.card h4 {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
}

.section.light .card h4 {
  color: var(--green);
}

.card p {
  margin: 0;
  font-family: "Barlow", Arial, sans-serif;
  color: inherit;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.metric {
  padding: 16px 20px;
  border-left: 3px solid var(--yellow);
  background: rgba(0, 0, 0, 0.45);
}

.metric strong {
  font-size: 1.4rem;
  display: block;
}

.metric span {
  color: var(--gray-200);
  font-family: "Barlow", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.page-hero {
  padding: 60px 0 30px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.page-hero p {
  font-family: "Barlow", Arial, sans-serif;
  color: var(--gray-200);
  max-width: 720px;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.highlight {
  background: linear-gradient(135deg, rgba(243, 194, 27, 0.15), rgba(31, 122, 74, 0.08));
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(243, 194, 27, 0.25);
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-family: "Barlow", Arial, sans-serif;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list li span {
  color: var(--yellow);
  font-weight: 700;
}

.section.light .list li span {
  color: var(--green);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.section.light .contact-card {
  border-color: var(--gray-200);
  background: var(--gray-100);
}

.contact-card h4 {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.inquiry-section {
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(243, 194, 27, 0.1), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(31, 122, 74, 0.12), transparent 60%),
    #0a0a0a;
}

.inquiry-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.inquiry-form-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inquiry-form-subtitle {
  margin: 0 0 24px;
  color: #c8c8c8;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1rem;
}

.contact-lead-form {
  display: grid;
  gap: 16px;
}

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

.contact-form-grid textarea {
  grid-column: 1 / -1;
}

.contact-form-grid input,
.contact-form-grid textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  color: #f7f7f7;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 1.05rem;
  outline: none;
}

.contact-form-grid input::placeholder,
.contact-form-grid textarea::placeholder {
  color: #cbcbcb;
}

.contact-form-grid input:focus,
.contact-form-grid textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(243, 194, 27, 0.2);
}

.contact-form-grid textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-submit {
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 12px 28px;
  background: var(--yellow);
  color: #0d0d0d;
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 16px rgba(243, 194, 27, 0.3);
}

.contact-form-note {
  margin: 0;
  color: #f2c94c;
  font-family: "Barlow", Arial, sans-serif;
  font-size: 0.95rem;
  display: none;
}

.contact-form-note.visible {
  display: block;
}

.footer {
  background: #050505;
  border-top: 1px solid #1c1c1c;
  padding: 30px 0;
  color: var(--gray-200);
  font-family: "Barlow", Arial, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.footer strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.subtle {
  color: var(--gray-200);
  font-family: "Barlow", Arial, sans-serif;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31, 122, 74, 0.2);
  color: var(--green);
  text-transform: uppercase;
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 40px 0;
}

.section.light .divider {
  background: var(--gray-200);
}

.whatsapp-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  z-index: 50;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 50px 0;
  }

  .topbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .inquiry-form-wrap {
    padding: 20px;
  }

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

  .contact-form-submit {
    width: 100%;
  }
}
