:root {
  --primary: #fb0101;
  --black: #0b0b0b;
  --ink: #111;
  --muted: #6a6a6a;
  --bg: #ffffff;
  --soft: #f6f6f7;
  --soft2: #f1e9e9;
  --ok: #12bd2a;
  --ok2: #0d7a1c;
  --radius: 18px;
  --shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  --shadow2: 0 10px 25px rgba(0, 0, 0, 0.1);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Exo", system-ui, -apple-system, "Segoe UI", "Roboto", "Arial", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

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

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.18);
  color: var(--ink);
}

.btn-whats {
  background: linear-gradient(180deg, var(--ok) 0%, var(--ok2) 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 600;
  font-size: 13px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(90deg, rgba(11, 11, 11, 0.96) 0%, rgba(20, 20, 20, 0.94) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-contact {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.top-contact-wrap {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
}

.top-brand {
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #fff;
  background: rgba(251, 1, 1, 0.22);
  border: 1px solid rgba(251, 1, 1, 0.45);
  padding: 2px 8px;
  border-radius: 999px;
}

.top-sep {
  color: rgba(255, 255, 255, 0.65);
}

.top-contact-wrap a {
  color: #fff;
  text-decoration: none;
}

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

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

.brand-logo {
  width: clamp(260px, 34vw, 420px);
  max-height: 84px;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.35));
  flex: 0 1 auto;
}

.brand-tagline {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
}

.menu a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.menu .cta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 8px;
}

.hamb {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 20px;
  padding: 8px 10px;
  border-radius: 12px;
}

.hamb:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Keep mobile navigation hidden on desktop to avoid duplicate menu text/buttons. */
.mobile {
  display: none;
}

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

  .hamb {
    display: inline-flex;
  }

  .mobile {
    display: none;
    padding: 10px 0 16px 0;
  }

  .mobile.open {
    display: block;
  }

  .mobile a {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 800;
    padding: 12px 10px;
    border-radius: 12px;
  }

  .mobile a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile .cta {
    display: grid;
    gap: 10px;
    margin-top: 8px;
  }

  .brand-logo {
    width: clamp(220px, 68vw, 336px);
    max-height: 68px;
  }

  .brand-tagline {
    display: none;
  }
}

.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 10% 0%, rgba(251, 1, 1, 0.18), transparent 55%),
    radial-gradient(1000px 500px at 70% 10%, rgba(255, 255, 255, 0.1), transparent 60%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.95) 10%, rgba(11, 11, 11, 0.72) 60%, rgba(11, 11, 11, 0.36) 100%),
    url("assets/heli-cpcd35-w.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
  padding-bottom: 72px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -140px;
  top: -220px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: 120px;
  top: 120px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.hero .inner {
  padding: 50px 0 46px 0;
  min-height: 64vh;
  display: grid;
  align-items: center;
}

.hero-shell {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.16);
  min-height: 390px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: grid;
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(240, 240, 240, 0.98) 0%, rgba(200, 200, 200, 0.92) 100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateZ(0);
  transition: opacity 0.8s ease;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-visual-image {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  flex: 1;
  padding: 10px 8px 0 8px;
}

.hero-visual-image img {
  width: min(360px, 90%);
  max-height: 230px;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.25));
}

.hero-visual-card {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(9, 9, 9, 0.62);
  padding: 12px 14px;
  position: relative;
  z-index: 1;
}

.hero-visual-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
  color: #fff;
}

.hero-visual-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-visual-card li {
  margin: 5px 0;
}

.trust-grid {
  margin-top: 30px;
  margin-bottom: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 12px;
}

.trust-item strong {
  display: block;
  color: #fff;
  margin-bottom: 3px;
  font-size: 15px;
}

.trust-item span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.hero h1 {
  margin: 14px 0 10px 0;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.05;
  letter-spacing: 0.2px;
  text-shadow: 0 0 80px rgba(70, 0, 0, 0.6);
}

.hero p {
  margin: 10px 0 22px 0;
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.86);
  max-width: 62ch;
}

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

.hero .meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-card {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  max-width: 980px;
}

.hero-card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

.hero-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-card li {
  margin: 6px 0;
}

.hero-card .side {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 16px;
  display: grid;
  gap: 10px;
  align-content: start;
}

.kpi {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 12px;
}

.kpi strong {
  display: block;
  font-size: 18px;
}

.kpi span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .top-contact-wrap {
    min-height: 30px;
    font-size: 12px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
    order: -1;
  }

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

  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-card .side {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-left: 0;
    padding-top: 14px;
  }

  .hero .inner {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }
}

@media (max-width: 560px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

section {
  padding: 40px 0;
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.section-title h2 {
  margin: 0;
  font-size: 30px;
}

.section-title p {
  margin: 6px 0 0 0;
  color: var(--muted);
  max-width: 70ch;
}

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

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

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

@media (max-width: 900px) {
  .grid.cols-3,
  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.card h3 {
  margin: 0 0 8px 0;
  font-size: 18px;
}

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

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(251, 1, 1, 0.1);
  border: 1px solid rgba(251, 1, 1, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.products {
  background: linear-gradient(180deg, var(--soft2) 0%, #fff 40%);
}

.product-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 14px;
  align-items: start;
}

.thumb {
  width: 180px;
  height: 170px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 12px;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-detail h3 {
  margin-bottom: 10px;
}

.product-specs {
  list-style: none;
  margin: 0 0 14px 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 6px;
  font-size: 14px;
}

.product-specs span {
  color: var(--muted);
}

.product-specs strong {
  color: var(--ink);
  text-align: right;
}

@media (max-width: 650px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .thumb {
    width: 100%;
    height: 240px;
  }
}

.compliance {
  background: linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

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

@media (max-width: 900px) {
  .checklist-split {
    grid-template-columns: 1fr;
  }
}

.dot {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(18, 189, 42, 0.12);
  border: 1px solid rgba(18, 189, 42, 0.35);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.cta-band {
  background: linear-gradient(90deg, var(--black) 0%, #1a1a1a 55%, #2a0a0a 100%);
  color: #fff;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-band h2 {
  margin: 0;
  font-size: 26px;
}

.cta-band p {
  margin: 6px 0 0 0;
  color: rgba(255, 255, 255, 0.8);
  max-width: 75ch;
}

.contact {
  background: #fff;
}

form {
  display: grid;
  gap: 12px;
}

input,
textarea,
select {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-family: inherit;
  font-size: 14px;
}

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

.muted {
  color: var(--muted);
}

.small {
  font-size: 12px;
}

.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 900px) {
  .two {
    grid-template-columns: 1fr;
  }
}

footer {
  background: var(--black);
  color: #fff;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .foot {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

footer a {
  color: rgba(255, 255, 255, 0.85);
}

footer a:hover {
  color: #fff;
}
