:root {
  --blue-950: #08233f;
  --blue-900: #0b2a4a;
  --blue-700: #0b62b5;
  --blue-600: #0d6fc9;
  --blue-50: #eef7ff;
  --orange-600: #f36f21;
  --orange-700: #d95a10;
  --orange-100: #fff0df;
  --gold-500: #ffb020;
  --green-600: #15803d;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(8, 35, 63, 0.14);
  --shadow-sm: 0 12px 30px rgba(8, 35, 63, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  color: var(--blue-950);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue-700);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  background: var(--blue-950);
  color: #cfe3fb;
  font-size: 15px;
  letter-spacing: 0.01em;
}

.topbar .wrap {
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 10px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: #fff;
  font-weight: 700;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 1px 0 rgba(8, 35, 63, 0.02);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--blue-950);
}

.brand img {
  height: 58px;
  width: auto;
  border-radius: 10px;
}

.brand strong {
  display: block;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.brand span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--orange-600);
}

.nav-brands {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-indane {
  height: 48px;
  width: auto;
  padding-right: 18px;
  border-right: 1px solid var(--slate-200);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 17px;
}

.navlinks a:not(.button) {
  color: var(--slate-700);
  position: relative;
  padding: 10px 16px;
  border-radius: 10px;
}

.navlinks a:not(.button):hover {
  color: var(--blue-900);
  background: var(--slate-100);
  text-decoration: none;
}

.navlinks .button {
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--slate-200);
  background: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  color: var(--blue-950);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 16px;
  background: var(--orange-600);
  color: #fff;
  box-shadow: 0 14px 28px rgba(243, 111, 33, 0.28);
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.button:hover {
  text-decoration: none;
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(243, 111, 33, 0.34);
}

.button.secondary {
  color: var(--blue-900);
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--blue-700);
  box-shadow: 0 10px 22px rgba(11, 98, 181, 0.14);
}

.button.whatsapp {
  background: var(--whatsapp);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.3);
}

.button.whatsapp:hover {
  background: var(--whatsapp-dark);
  box-shadow: 0 18px 32px rgba(37, 211, 102, 0.36);
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.block {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--slate-100);
  padding: 76px 0 60px;
}

.hero .wrap {
  position: relative;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue-900);
}

.trust-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-600);
  flex: 0 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-700);
  background: var(--orange-100);
  border: 1px solid #ffd8b1;
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 800;
  font-size: 14.5px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.03;
  margin: 0 0 18px;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.lead {
  font-size: 22px;
  color: var(--slate-700);
  max-width: 720px;
  margin: 0 0 30px;
}

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

.hero-card {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.logo-panel {
  background: linear-gradient(180deg, #f8fbff, #eef4fb);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid var(--slate-200);
  margin-bottom: 18px;
}

.logo-panel img {
  display: block;
  width: 100%;
}

.status {
  display: grid;
  gap: 12px;
}

.status-item {
  display: flex;
  gap: 12px;
  padding: 13px;
  border-radius: 16px;
  background: var(--blue-50);
}

.status-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-top: 7px;
  background: var(--green-600);
  flex: 0 0 auto;
}

.section {
  padding: 68px 0;
}

.section.alt {
  background: var(--slate-100);
}

.section h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  margin: 0 0 12px;
  letter-spacing: -0.035em;
  font-weight: 900;
}

.section-intro {
  color: var(--slate-600);
  font-size: 19px;
  margin: 0 0 30px;
  max-width: 760px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(11, 98, 181, 0.25);
}

.card .icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: linear-gradient(160deg, var(--orange-100), #ffe2c2);
  color: var(--orange-700);
  font-size: 24px;
  margin-bottom: 16px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--slate-600);
  margin: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.info-box {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}

.info-box h3 {
  margin-top: 0;
}

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

.info-list li {
  display: grid;
  gap: 2px;
  color: var(--slate-700);
}

.info-list strong {
  color: var(--blue-950);
}

.info-list.compact {
  gap: 14px;
}

.info-list.compact span {
  font-size: 15px;
  color: var(--slate-600);
}

.notice {
  border-left: 5px solid var(--orange-600);
  background: var(--orange-100);
  padding: 18px;
  border-radius: 16px;
  color: #71360a;
}

.footer {
  background: var(--blue-950);
  color: #cbd5e1;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 24px;
}

.footer h3,
.footer h4 {
  color: #fff;
  margin-top: 0;
}

.footer a {
  color: #dbeafe;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-badge span {
  font-size: 14px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.02em;
}

.footer-badge img {
  height: 34px;
  width: auto;
  background: #fff;
  border-radius: 8px;
  padding: 4px 8px;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 18px;
  font-size: 14.5px;
  color: #94a3b8;
}

.footer-badge + .footer-bottom {
  border-top: none;
  padding-top: 0;
  margin-top: 16px;
}

/* Products */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-media {
  position: relative;
  background: linear-gradient(160deg, var(--slate-100), #e9eef5);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  padding: 20px;
  display: block;
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--blue-950);
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.product-body h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.01em;
}

.product-tagline {
  color: var(--slate-600);
  font-size: 15px;
  margin: -10px 0 0;
}

.price-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange-100), #ffe4c4);
  border: 1px solid #ffd8ac;
  border-radius: 16px;
  padding: 10px 16px;
}

.price-tag .label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange-700);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-tag .amount {
  font-size: 26px;
  font-weight: 900;
  color: var(--blue-950);
  letter-spacing: -0.02em;
}

.price-tag .amount small {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-600);
  margin-left: 2px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 7px;
  color: var(--slate-700);
  font-size: 15.5px;
}

.product-features li {
  display: flex;
  gap: 8px;
}

.product-features li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 900;
  flex: 0 0 auto;
}

.product-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 4px;
}

.product-actions .button {
  padding: 11px 16px;
  font-size: 14px;
}

.product-grid + .notice {
  margin-top: 32px;
}

/* Floating WhatsApp button */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 20px 38px rgba(37, 211, 102, 0.48);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

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

  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}

/* Xtralite NOW popup */

.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 35, 63, 0);
  backdrop-filter: blur(0px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, background 0.25s ease;
}

.popup-overlay.open {
  background: rgba(8, 35, 63, 0.55);
  backdrop-filter: blur(4px);
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 40px 80px rgba(8, 35, 63, 0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
}

.popup-overlay.open .popup-card {
  transform: translateY(0) scale(1);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.popup-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-100);
  color: var(--orange-700);
  border: 1px solid #ffd8b1;
  border-radius: 999px;
  padding: 7px 13px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}

.popup-card h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: var(--blue-950);
}

.popup-card > p {
  color: var(--slate-600);
  margin: 0 0 16px;
  font-size: 15px;
}

.popup-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 8px;
  font-size: 16px;
  color: var(--slate-700);
}

.popup-list li {
  display: flex;
  gap: 8px;
}

.popup-list li::before {
  content: "✓";
  color: var(--green-600);
  font-weight: 900;
  flex: 0 0 auto;
}

.popup-note {
  background: var(--blue-50);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 15px;
  color: var(--blue-900);
  margin: 0 0 20px;
}

.popup-actions {
  display: grid;
  gap: 10px;
}

.popup-later {
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--slate-600);
}

@media (max-width: 480px) {
  .popup-card {
    padding: 26px 22px;
  }

  .popup-card h3 {
    font-size: 22px;
  }
}

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

.page-cards {
  margin-top: 40px;
}

.page-cards + .content {
  margin-top: 48px;
}

.page h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 900;
}

.content {
  max-width: 1100px;
  color: var(--slate-700);
}

.content p,
.content li {
  max-width: 800px;
}

.content h2 {
  color: var(--blue-950);
  margin-top: 34px;
  letter-spacing: -0.02em;
}

@media (max-width: 860px) {
  .hero-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-indane {
    display: none;
  }

  .navlinks {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 16px 30px rgba(8, 35, 63, 0.1);
    padding: 8px 0 16px;
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a {
    padding: 12px calc((100% - min(1160px, calc(100% - 40px))) / 2 + 0px);
    padding-left: 20px;
    padding-right: 20px;
  }

  .navlinks .button {
    margin: 8px 20px 0;
  }

  .nav .wrap {
    position: relative;
  }
}
