:root {
  /* Valores padrÃ£o â€” sobrescritos pelo theme-runtime.css.php com as cores do site */
  --djl-primary:      var(--primary,      #0f4c5c);
  --djl-primary-dark: var(--primary-dark, #081c24);
  --djl-secondary:    var(--secondary,    #081c24);
  --djl-accent:       var(--accent,       #d6a64d);
  --djl-footer-accent: var(--primary-light, #2ea7ff);
  --djl-text:         #102028;
  --djl-muted:        #5f6972;
  --djl-surface:      #ffffff;
  --djl-bg:           #f6f7f8;
  --djl-border:       rgba(16, 32, 40, 0.12);
  --djl-shadow:       0 18px 50px rgba(8, 28, 36, 0.18);

  /* Alias para blocos _shared que usam --color-primary / --color-secondary */
  --color-primary:   var(--primary,   #0f4c5c);
  --color-secondary: var(--secondary, #081c24);
}

/* Seletor de idioma no topbar */
.djl-lang-form { margin: 0; }
.djl-lang-select {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
}
.djl-lang-select option { background: #071922; color: #fff; }
.djl-lang-select--offcanvas {
  width: 100%;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 10px;
}

body.theme-sucuri-offcanva {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--primary-rgb, 15, 76, 92), 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--djl-bg) 100%);
  color: var(--djl-text);
  font-size: 16px;
  line-height: 1.7;
}

html,
body.theme-sucuri-offcanva {
  min-height: 100%;
}

.djl-topbar {
  background: linear-gradient(90deg, var(--primary, #0f4c5c), var(--secondary, #081c24));
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 0;
}

.djl-header {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--djl-border);
}

.djl-header .wrap {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.djl-logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.djl-logo img {
  height: 42px;
  max-width: 240px;
  width: auto;
  display: block;
  object-fit: contain;
}

.djl-brand {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--djl-muted);
}

.djl-menu-toggle {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  border: 1px solid var(--djl-border);
  background: linear-gradient(180deg, #fff, #f2f5f7);
  box-shadow: 0 10px 28px rgba(8, 28, 36, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.djl-menu-toggle span {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--djl-text);
  border-radius: 999px;
  display: block;
}

.djl-menu-toggle span::before,
.djl-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--djl-text);
  border-radius: 999px;
}

.djl-menu-toggle span::before { top: -7px; }
.djl-menu-toggle span::after { top: 7px; }

.djl-offcanvas {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(100%, 430px);
  background: linear-gradient(180deg, #071922 0%, #0b2530 100%);
  color: #fff;
  transform: translateX(100%);
  transition: transform 240ms ease;
  z-index: 2000;
  box-shadow: var(--djl-shadow);
  display: flex;
  flex-direction: column;
}

.djl-offcanvas.is-open { transform: translateX(0); }

.djl-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 12, 0.54);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
  z-index: 1900;
}

.djl-offcanvas-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.djl-offcanvas-head {
  padding: 28px 26px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.djl-offcanvas-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 26px 0;
}

.djl-offcanvas-brand img {
  height: 34px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.djl-offcanvas-brand span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.djl-offcanvas-title {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.djl-offcanvas-close {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.djl-offcanvas-body {
  padding: 22px 26px 30px;
  overflow-y: auto;
}

.djl-nav {
  display: grid;
  gap: 8px;
}

.djl-menu-item {
  display: grid;
  gap: 8px;
}

.djl-menu-item > a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
  padding: 4px 0;
  transition: transform 160ms ease, color 160ms ease;
}

.djl-menu-item > a:hover {
  color: var(--djl-accent);
  transform: translateX(4px);
}

.djl-submenu {
  display: grid;
  gap: 6px;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  margin: 4px 0 8px;
}

.djl-submenu .djl-menu-item > a {
  font-size: 14px;
  opacity: 0.9;
}

.djl-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.35;
  padding: 4px 0;
  transition: transform 160ms ease, color 160ms ease;
}

.djl-nav a:hover {
  color: var(--djl-accent);
  transform: translateX(4px);
}

.theme-sucuri-offcanva .container {
  width: min(100% - 32px, 1240px);
}

.theme-sucuri-offcanva main {
  display: block;
  margin: 0;
  padding: 0;
  background: transparent;
}

.theme-sucuri-offcanva main section {
  position: relative;
  margin-bottom: 0;
}

.theme-sucuri-offcanva main section .container {
  position: relative;
  z-index: 1;
}

.theme-sucuri-offcanva main .py-5 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.theme-sucuri-offcanva main > *:last-child {
  margin-bottom: 0 !important;
}

.theme-sucuri-offcanva main > *:last-child section:last-child,
.theme-sucuri-offcanva main > section:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.theme-sucuri-offcanva main h1,
.theme-sucuri-offcanva main h2,
.theme-sucuri-offcanva main h3,
.theme-sucuri-offcanva main h4 {
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.theme-sucuri-offcanva main .lead {
  color: rgba(16, 32, 40, 0.82);
}

.theme-sucuri-offcanva main .btn {
  border-radius: 14px;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
}

.theme-sucuri-offcanva main .btn-primary,
.theme-sucuri-offcanva main .btn-success {
  background: linear-gradient(135deg, var(--djl-primary), var(--djl-primary-dark));
  border-color: transparent;
  box-shadow: 0 12px 24px rgba(var(--primary-rgb, 15, 76, 92), 0.22);
}

.theme-sucuri-offcanva main .btn-outline-primary {
  color: var(--djl-primary);
  border-color: rgba(var(--primary-rgb, 15, 76, 92), 0.28);
}

.theme-sucuri-offcanva main .card,
.theme-sucuri-offcanva main .shadow-sm {
  border-color: rgba(16, 32, 40, 0.08);
  box-shadow: 0 18px 40px rgba(8, 28, 36, 0.08) !important;
}

.theme-sucuri-offcanva main .bg-light {
  background: linear-gradient(180deg, #f8f7f5, #ffffff) !important;
}

.theme-sucuri-offcanva .djl-page-hero {
  padding: 5rem 0 4rem;
}

.theme-sucuri-offcanva .djl-page-hero h1 {
  max-width: 980px;
  font-weight: 700;
}

.theme-sucuri-offcanva .djl-page-grid {
  display: grid;
  gap: 24px;
}

.theme-sucuri-offcanva .djl-page-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(16, 32, 40, 0.08);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 20px 44px rgba(8, 28, 36, 0.08);
}

.theme-sucuri-offcanva .djl-page-panel + .djl-page-panel {
  margin-top: 20px;
}

.theme-sucuri-offcanva .djl-section-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--djl-primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.theme-sucuri-offcanva .djl-kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--djl-muted);
}

.theme-sucuri-offcanva .djl-hero-box {
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb, 15, 76, 92), 0.08), rgba(214, 166, 77, 0.08));
  border: 1px solid rgba(16, 32, 40, 0.08);
  padding: 32px;
}

.theme-sucuri-offcanva .djl-hero-box .btn {
  min-width: 180px;
}

.theme-sucuri-offcanva .djl-faq-item,
.theme-sucuri-offcanva .djl-list-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(16, 32, 40, 0.08);
}

.theme-sucuri-offcanva .djl-faq-item:last-child,
.theme-sucuri-offcanva .djl-list-item:last-child {
  border-bottom: 0;
}

.djl-contact-card {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 18px;
}

.djl-contact-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
}

.djl-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.djl-contact-item strong,
.djl-contact-item span {
  display: block;
}

.djl-contact-item strong {
  font-size: 16px;
}

.djl-contact-item span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.djl-shell {
  min-height: calc(100vh - 84px);
}

/* ============================================================
   HERO SLIDER â€” compatÃ­vel com render_hero_slider do renderer
   ============================================================ */
.hero-slider,
.hero-slide {
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
  color: #fff;
  margin: 0;
  padding: 0;
}

/* Overlay escuro sobre a imagem de fundo */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(8, 20, 36, 0.65) 0%,
    rgba(8, 20, 36, 0.45) 100%);
  pointer-events: none;
}

/* Halo de cor primÃ¡ria */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 60%,
    rgba(var(--primary-rgb, 15, 76, 92), 0.18) 0%,
    transparent 55%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 100px 20px;
}

.hero-content h1 {
  color: #fff !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.1 !important;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.4) !important;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1rem, 2.5vw, 1.25rem) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3) !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero-content .btn {
  margin-top: 2rem;
  border-radius: 12px !important;
  padding: 0.85rem 2rem !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 768px) {
  .hero-slider,
  .hero-slide { min-height: 360px; }
  .hero-content { padding: 72px 16px; }
}

/* ============================================================ */

.djl-footer {
  margin-top: 0;
  background: linear-gradient(180deg, #0b2530, #06161d);
  color: rgba(255, 255, 255, 0.82);
  padding: 76px 0 0;
}

.djl-footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(180px, 1fr) minmax(220px, 1fr) minmax(260px, 1.1fr);
  gap: 34px 42px;
}

.djl-footer-logo {
  height: auto;
  max-height: 72px;
  max-width: min(100%, 260px);
  width: auto;
  display: block;
  margin-bottom: 1.2rem;
  object-fit: contain;
}

.djl-footer-site-name {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.djl-footer-accent-line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: var(--djl-footer-accent, #2ea7ff);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}

.djl-footer-desc {
  font-size: 1rem;
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 1.8rem;
}

.djl-footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.djl-footer-social {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.55rem;
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.djl-footer-social:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-rgb, 15, 76, 92), .45);
  color: var(--djl-footer-accent, #2ea7ff);
  background: rgba(var(--primary-rgb, 15, 76, 92), .12);
}

.djl-footer-title {
  color: var(--djl-footer-accent, #2ea7ff) !important;
  font-size: 1rem !important;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.djl-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.05rem;
}

.djl-footer-links li {
  margin: 0;
  padding: 0;
}

.djl-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.45;
}

.djl-footer-links a i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1rem;
  line-height: 1;
}

.djl-footer-links a:hover,
.djl-footer-contact-item a:hover,
.djl-footer-map-link:hover,
.djl-footer-utility-links a:hover {
  color: var(--djl-footer-accent, #2ea7ff);
}

.djl-footer-contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.djl-footer-contact-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.9rem;
  align-items: start;
  color: rgba(255,255,255,.9);
  font-size: 1rem;
  line-height: 1.55;
}

.djl-footer-contact-item i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1.45rem;
  line-height: 1;
  margin-top: 2px;
}

.djl-footer-contact-item a,
.djl-footer-map-link,
.djl-footer-utility-links a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
}

.djl-footer-map-wrap {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  margin-top: 1.35rem;
}

.djl-footer-map-wrap iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

.djl-footer-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 1rem;
}

.djl-footer-map-link i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1.3rem;
}

.djl-footer-bottom {
  margin-top: 54px;
  padding: 28px 0 30px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px 28px;
  flex-wrap: wrap;
}

.djl-footer-copy {
  display: grid;
  gap: 0.35rem;
  color: rgba(255,255,255,.84);
}

.djl-footer-copy strong {
  color: #fff;
  font-size: 1.02rem;
}

.djl-footer-copy span {
  font-size: 0.98rem;
}

.djl-footer-signature {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  text-decoration: none;
  opacity: 0.92;
}

.djl-footer-signature img {
  height: 50px;
  width: auto;
  display: block;
}

.djl-footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
}

.djl-footer-utility-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1rem;
}

.djl-footer-utility-links i {
  color: var(--djl-footer-accent, #2ea7ff);
  font-size: 1.2rem;
}

.djl-page-hero {
  background: linear-gradient(135deg, rgba(var(--primary-rgb, 15, 76, 92), 0.08), rgba(214, 166, 77, 0.12));
  border: 1px solid var(--djl-border);
  border-radius: 28px;
  padding: 42px;
  box-shadow: 0 18px 48px rgba(8, 28, 36, 0.06);
}

.djl-page-shell {
  padding: 28px 0 12px;
}

.djl-form-panel,
.djl-map-panel,
.djl-info-panel {
  background: #fff;
  border: 1px solid var(--djl-border);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(8, 28, 36, 0.06);
}

.djl-form-panel .form-control,
.djl-form-panel .form-select {
  border-radius: 14px;
  min-height: 52px;
}

.djl-form-panel label {
  font-size: 13px;
  font-weight: 700;
  color: var(--djl-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.djl-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--djl-primary);
  background: rgba(var(--primary-rgb, 15, 76, 92), 0.08);
  padding: 8px 14px;
  border-radius: 999px;
}

.djl-timeline {
  display: grid;
  gap: 16px;
}

.djl-timeline-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.djl-timeline-step .dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--djl-primary);
  color: #fff;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.djl-soft-card {
  background: #fff;
  border: 1px solid var(--djl-border);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(8, 28, 36, 0.05);
}

.djl-footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

@media (max-width: 768px) {
  .djl-header .wrap {
    min-height: 72px;
  }

  .djl-offcanvas {
    width: 100%;
  }

  .djl-nav a {
    font-size: 17px;
  }

  .djl-footer {
    padding-top: 56px;
  }

  .djl-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .djl-footer-desc {
    max-width: none;
  }

  .djl-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .djl-footer-utility-links {
    gap: 14px 20px;
  }
}

/* ============================================================
   HERO SLIDER â€” DJL Premium (parallax, overlays, actions)
   ============================================================ */
.djl-hero-slider { position: relative; }

.djl-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  will-change: transform;
}

.djl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 18, 28, 0.72) 0%,
    rgba(8, 28, 36, 0.50) 60%,
    rgba(6, 18, 28, 0.68) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.djl-hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 25% 70%,
    rgba(var(--primary-rgb, 15, 76, 92), 0.22) 0%,
    transparent 55%
  );
  pointer-events: none;
  z-index: 2;
}

.djl-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 110px 0 100px;
  max-width: 800px;
  text-align: left;
}

.djl-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.djl-hero-content h1 {
  color: #fff !important;
  font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.08 !important;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.42) !important;
  margin-bottom: 1.1rem !important;
}

.djl-hero-sub {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: clamp(1rem, 2.2vw, 1.2rem) !important;
  max-width: 600px;
  line-height: 1.65;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32) !important;
  margin-bottom: 2rem !important;
}

.djl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.djl-hero-btn {
  background: linear-gradient(135deg, var(--djl-primary, #0f4c5c), var(--djl-primary-dark, #081c24)) !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 32px rgba(var(--primary-rgb, 15, 76, 92), 0.32) !important;
  color: #fff !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}
.djl-hero-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 18px 40px rgba(var(--primary-rgb, 15, 76, 92), 0.44) !important;
}

.djl-hero-btn-ghost {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 14px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
  transition: background 0.18s ease !important;
}
.djl-hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  color: #fff !important;
}

@media (max-width: 768px) {
  .djl-hero-content { padding: 80px 0 72px; }
  .djl-hero-content h1 { font-size: 2rem !important; }
}

/* ============================================================
   PAGE BANNER â€” inner pages
   ============================================================ */
.djl-page-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
}

.djl-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,18,28,.65) 0%, rgba(8,28,36,.48) 100%);
  pointer-events: none;
}

.djl-page-banner-inner {
  position: relative;
  z-index: 1;
  padding: 80px 0 64px;
  color: #fff;
}

.djl-page-banner-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--djl-accent, #d6a64d);
  margin-bottom: 14px;
}

.djl-page-banner-title {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 2px 14px rgba(0,0,0,.36);
  margin-bottom: 0.75rem;
  color: #fff !important;
}

.djl-page-banner-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.84);
  max-width: 620px;
  margin-bottom: 0;
  text-shadow: 0 1px 6px rgba(0,0,0,.28);
}

/* ============================================================
   SECTION HEADER â€” shared title/subtitle before grids
   ============================================================ */
.djl-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.djl-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--djl-text, #102028);
  margin-bottom: 0.75rem;
}

.djl-section-sub {
  font-size: 1.1rem;
  color: var(--djl-muted, #5f6972);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FEATURE GRID â€” premium icon cards
   ============================================================ */
.djl-feature-grid {
  padding: 5rem 0;
  background: var(--djl-bg, #f6f7f8);
}

.djl-feature-grid--dark {
  background: linear-gradient(180deg, #071922, #0b2530);
}
.djl-feature-grid--dark .djl-section-title { color: #fff; }
.djl-feature-grid--dark .djl-section-sub   { color: rgba(255,255,255,.65); }

.djl-feat-card {
  background: #fff;
  border: 1px solid rgba(16, 32, 40, 0.08);
  border-radius: 22px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 16px 40px rgba(8, 28, 36, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-align: center;
}

.djl-feat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(8, 28, 36, 0.13);
}

.djl-feature-grid--dark .djl-feat-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
  color: #fff;
}

.djl-feat-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(var(--primary-rgb, 15, 76, 92), 0.10);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  color: var(--djl-primary, #0f4c5c);
  margin: 0 auto 1.1rem;
}

.djl-feature-grid--dark .djl-feat-icon {
  background: rgba(var(--primary-rgb, 15, 76, 92), 0.24);
  color: var(--djl-accent, #d6a64d);
}

.djl-feat-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--djl-text, #102028);
}

.djl-feature-grid--dark .djl-feat-title { color: #fff; }

.djl-feat-text {
  font-size: 0.9rem;
  color: var(--djl-muted, #5f6972);
  margin-bottom: 0;
  line-height: 1.6;
}
.djl-feature-grid--dark .djl-feat-text { color: rgba(255,255,255,.62); }

/* ============================================================
   STATS BAR
   ============================================================ */
.djl-stats-bar {
  padding: 3.5rem 0;
  background: var(--djl-bg, #f6f7f8);
  border-top: 1px solid var(--djl-border, rgba(16,32,40,.1));
  border-bottom: 1px solid var(--djl-border, rgba(16,32,40,.1));
}

.djl-stats-bar--dark {
  background: linear-gradient(135deg, var(--djl-primary, #0f4c5c), var(--djl-secondary, #081c24));
  border-color: transparent;
}

.djl-stats-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--djl-muted, #5f6972);
  margin-bottom: 2rem;
}

.djl-stats-bar--dark .djl-stats-label { color: rgba(255,255,255,.55); }

.djl-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3.5rem;
}

.djl-stat-item {
  text-align: center;
  min-width: 140px;
}

.djl-stat-icon {
  font-size: 1.6rem;
  color: var(--djl-primary, #0f4c5c);
  margin-bottom: 0.5rem;
}

.djl-stats-bar--dark .djl-stat-icon { color: #fff; }

.djl-stat-value {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--djl-text, #102028);
  margin-bottom: 0.35rem;
}

.djl-stats-bar--dark .djl-stat-value { color: #fff; }

.djl-stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--djl-muted, #5f6972);
}

.djl-stats-bar--dark .djl-stat-label { color: rgba(255,255,255,.62); }

/* ============================================================
   TEXT SECTION â€” with optional image
   ============================================================ */
.djl-text-section {
  padding: 5rem 0;
  background: #fff;
}

.djl-text-section--dark {
  background: linear-gradient(180deg, #071922, #0b2530);
  color: #fff;
}

.djl-text-section--center { text-align: center; }

.djl-text-section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--djl-text, #102028);
  margin-bottom: 1.2rem;
  line-height: 1.1;
}
.djl-text-section--dark .djl-text-section-title { color: #fff; }

.djl-text-section-body {
  font-size: 1.05rem;
  color: var(--djl-muted, #5f6972);
  line-height: 1.8;
}
.djl-text-section--dark .djl-text-section-body { color: rgba(255,255,255,.74); }
.djl-text-section-body p { margin-bottom: 1rem; }
.djl-text-section-body p:last-child { margin-bottom: 0; }

.djl-text-section-btn {
  margin-top: 1.8rem;
  border-radius: 14px !important;
  padding: 0.85rem 2rem !important;
  font-weight: 700 !important;
}

.djl-text-section-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(8, 28, 36, 0.16);
}

.djl-text-section-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.djl-text-section-img-wrap:hover .djl-text-section-img {
  transform: scale(1.03);
}

/* ============================================================
   CTA SECTION â€” premium full-width
   ============================================================ */
.djl-cta-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}

.djl-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,18,28,.78) 0%, rgba(8,28,36,.62) 100%);
  pointer-events: none;
}

.djl-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.djl-cta-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0,0,0,.3);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.djl-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.84);
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.djl-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.djl-cta-btn-primary {
  background: #fff !important;
  color: var(--djl-primary, #0f4c5c) !important;
  border-radius: 14px !important;
  padding: 0.9rem 2.2rem !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 12px 32px rgba(0,0,0,.2) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease !important;
}
.djl-cta-btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,.3) !important;
}

.djl-cta-btn-ghost {
  background: rgba(255,255,255,.12) !important;
  border: 1px solid rgba(255,255,255,.36) !important;
  border-radius: 14px !important;
  padding: 0.9rem 2rem !important;
  font-weight: 600 !important;
  color: #fff !important;
  backdrop-filter: blur(6px);
}
.djl-cta-btn-ghost:hover {
  background: rgba(255,255,255,.22) !important;
  color: #fff !important;
}

/* ============================================================
   COLUMNS FLEX
   ============================================================ */
.djl-columns-section {
  padding: 5rem 0;
  background: #fff;
}

.djl-columns-section--dark {
  background: linear-gradient(180deg, #071922, #0b2530);
}
.djl-columns-section--dark .djl-section-title { color: #fff; }

.djl-col-card {
  background: #fff;
  border: 1px solid rgba(16, 32, 40, 0.08);
  border-radius: 22px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 16px 40px rgba(8, 28, 36, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.djl-col-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(8, 28, 36, 0.12);
}

.djl-columns-section--dark .djl-col-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}

.djl-col-icon {
  font-size: 1.8rem;
  color: var(--djl-primary, #0f4c5c);
  margin-bottom: 1rem;
}
.djl-columns-section--dark .djl-col-icon { color: var(--djl-accent, #d6a64d); }

/* ============================================================
   SITEMAP
   ============================================================ */
.djl-sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.djl-sitemap-card {
  background: #fff;
  border: 1px solid var(--djl-border, rgba(16,32,40,.1));
  border-radius: 22px;
  padding: 1.4rem 1.35rem;
  box-shadow: 0 18px 40px rgba(8, 28, 36, 0.06);
  height: 100%;
}

.djl-sitemap-card-title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--djl-text, #102028);
  margin-bottom: 0.9rem;
}

.djl-sitemap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.djl-sitemap-list li {
  margin: 0;
  padding: 0;
}

.djl-sitemap-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--djl-primary, #0f4c5c);
  font-weight: 700;
  text-decoration: none;
}

.djl-sitemap-list a::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--djl-primary, #0f4c5c);
  box-shadow: 0 0 0 6px rgba(var(--primary-rgb, 15, 76, 92), 0.12);
  flex: 0 0 8px;
}

.djl-sitemap-list a:hover {
  color: var(--djl-secondary, #081c24);
}

.djl-sitemap-list a:hover::before {
  background: var(--djl-secondary, #081c24);
}

.djl-col-img-wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.2rem;
  height: 180px;
}
.djl-col-img { width: 100%; height: 100%; object-fit: cover; display: block; }

.djl-col-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--djl-text, #102028);
  margin-bottom: 0.6rem;
}
.djl-columns-section--dark .djl-col-title { color: #fff; }

.djl-col-body {
  font-size: 0.92rem;
  color: var(--djl-muted, #5f6972);
  line-height: 1.65;
}
.djl-columns-section--dark .djl-col-body { color: rgba(255,255,255,.65); }

.djl-col-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--djl-primary, #0f4c5c);
  text-decoration: none;
  transition: letter-spacing 0.16s ease;
}
.djl-col-link:hover { letter-spacing: 0.04em; }
.djl-columns-section--dark .djl-col-link { color: var(--djl-accent, #d6a64d); }

/* ============================================================
   BLOG LIST
   ============================================================ */
.djl-blog-section {
  padding: 5rem 0;
  background: var(--djl-bg, #f6f7f8);
}

.djl-post-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(8,28,36,.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.djl-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 54px rgba(8,28,36,.13);
}

.djl-post-thumb {
  height: 200px;
  overflow: hidden;
}
.djl-post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.djl-post-card:hover .djl-post-thumb img { transform: scale(1.04); }

.djl-post-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.djl-post-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--djl-muted, #5f6972);
  margin-bottom: 0.5rem;
}

.djl-post-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--djl-text, #102028);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.djl-post-excerpt {
  font-size: 0.88rem;
  color: var(--djl-muted, #5f6972);
  flex: 1;
  line-height: 1.6;
}

.djl-post-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--djl-primary, #0f4c5c);
  text-decoration: none;
  transition: letter-spacing 0.16s;
}
.djl-post-link:hover { letter-spacing: 0.04em; }

/* ============================================================
   PARALLAX â€” disable on touch devices
   ============================================================ */
@media (pointer: coarse), (max-width: 768px) {
  .djl-hero-slide[style*="background-attachment:fixed"],
  .djl-page-banner[style*="background-attachment:fixed"],
  .djl-cta-section[style*="background-attachment:fixed"] {
    background-attachment: scroll !important;
  }
}

/* ============================================================
   DJL CONTACT FORM â€” djl_contact_form block
   ============================================================ */
.djl-contact-section {
  background: #f8f9fa;
}
.djl-contact-info-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.djl-contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--djl-primary);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--djl-accent);
}
.djl-contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.djl-contact-info-item strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--djl-muted);
  margin-bottom: .1rem;
}
.djl-contact-info-item p,
.djl-contact-info-item a {
  margin: 0;
  color: var(--djl-text);
  font-size: .9rem;
  text-decoration: none;
}
.djl-contact-info-item a:hover { color: var(--djl-primary); }
.djl-contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--djl-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.djl-contact-info-icon--wa { background: #25d366; }

/* Form card */
.djl-contact-form-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.djl-cf-honeypot { position: absolute; left: -9999px; width: 0; height: 0; overflow: hidden; }
.djl-cf-label {
  font-size: .82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--djl-muted);
  margin-bottom: .35rem;
  display: block;
}
.djl-cf-input,
.djl-cf-textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .95rem;
  color: var(--djl-text);
  background: #f8fafc;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.djl-cf-input:focus,
.djl-cf-textarea:focus {
  border-color: var(--djl-primary);
  box-shadow: 0 0 0 3px rgba(10,72,109,.12);
  background: #fff;
}
.djl-cf-textarea { resize: vertical; min-height: 130px; }
.djl-cf-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--djl-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .8rem 2.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
}
.djl-cf-submit:hover { background: var(--djl-secondary); transform: translateY(-1px); }
.djl-cf-submit:disabled { opacity: .65; cursor: default; transform: none; }
.djl-contact-error-msg {
  background: #fee2e2;
  color: #b91c1c;
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .88rem;
  margin-bottom: .75rem;
}
.djl-contact-success {
  text-align: center;
  padding: 3rem 1.5rem;
  color: var(--djl-primary);
}
.djl-contact-success i { font-size: 3rem; color: #16a34a; }
.djl-contact-success h4 { margin-top: 1rem; font-weight: 700; }

/* ============================================================
   DJL REPRESENTANTES â€” djl_representantes block
   ============================================================ */
.djl-rep-section {
  background: #f8f9fa;
}
.djl-rep-filters {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 1.75rem 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.djl-rep-filter-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--djl-muted);
  margin-bottom: .35rem;
  display: block;
}
.djl-rep-select {
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: .6rem 1rem;
  font-size: .95rem;
  color: var(--djl-text);
  background: #f8fafc;
  transition: border-color .2s;
  cursor: pointer;
}
.djl-rep-select:focus { border-color: var(--djl-primary); outline: none; box-shadow: 0 0 0 3px rgba(10,72,109,.1); }
.djl-rep-btn-buscar {
  background: var(--djl-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: .65rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.djl-rep-btn-buscar:hover { background: var(--djl-secondary); }

/* Cards */
.djl-rep-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .2s, box-shadow .2s;
  height: 100%;
}
.djl-rep-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.1); }
.djl-rep-card-header {
  background: linear-gradient(135deg, var(--djl-primary), var(--djl-secondary));
  padding: 1.5rem;
  text-align: center;
  color: #fff;
  font-size: 2.5rem;
}
.djl-rep-card-body { padding: 1.25rem; }
.djl-rep-card-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--djl-primary);
  margin-bottom: .35rem;
}
.djl-rep-card-loc {
  font-size: .83rem;
  color: var(--djl-muted);
  margin-bottom: .85rem;
}
.djl-rep-card-link {
  display: flex;
  align-items: center;
  font-size: .85rem;
  color: var(--djl-text);
  text-decoration: none;
  margin-bottom: .4rem;
  transition: color .15s;
}
.djl-rep-card-link:hover { color: var(--djl-primary); }
.djl-rep-card-link--wa { color: #16a34a; }
.djl-rep-card-link--wa:hover { color: #15803d; }

/* Empty state */
.djl-rep-empty { color: var(--djl-muted); padding: 3rem 0; }
.djl-rep-empty-icon { font-size: 3.5rem; opacity: .3; }

/* ============================================================
   CUBEE PREMIUM BLOCKS
   ============================================================ */
.cubee-section,
.cubee-hero {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.cubee-section {
  background:
    radial-gradient(circle at top right, rgba(var(--primary-rgb, 11, 18, 32), .06), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(245,247,250,.98));
}

.cubee-section-dark,
.cubee-hero {
  color: #f8fbff;
  background:
    radial-gradient(circle at top left, rgba(var(--secondary-rgb, 36, 109, 255), .22), transparent 26%),
    linear-gradient(135deg, #07111f 0%, #0b1220 48%, #0a1f3f 100%);
}

.cubee-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cubee-section .cubee-eyebrow,
.cubee-final-cta .cubee-eyebrow,
.sucuri-block-bg .cubee-section .cubee-eyebrow {
  background: rgba(var(--secondary-rgb, 36, 109, 255), .1);
  border-color: rgba(var(--secondary-rgb, 36, 109, 255), .24);
  color: var(--djl-secondary);
}

.cubee-section-heading {
  max-width: 760px;
  margin-bottom: 2.5rem;
}

.cubee-section-heading h2,
.cubee-differential-copy h2,
.cubee-dashboard-copy h2,
.cubee-final-cta-card h2,
.cubee-hero-title {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
}

.cubee-section-heading p,
.cubee-differential-copy p,
.cubee-dashboard-copy p,
.cubee-final-cta-card p,
.cubee-hero-subtitle {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: inherit;
  opacity: .9;
}

.cubee-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.cubee-hero-copy {
  position: relative;
  z-index: 2;
}

.cubee-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.8rem;
}

.cubee-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

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

.cubee-btn-primary {
  background: linear-gradient(135deg, var(--djl-secondary), var(--djl-primary));
  color: #fff;
  box-shadow: 0 18px 40px rgba(var(--secondary-rgb, 36, 109, 255), .24);
}

.cubee-btn-secondary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
}

.cubee-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.cubee-stat-chip {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
}

.cubee-stat-chip strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
}

.cubee-stat-chip span {
  display: block;
  margin-top: .35rem;
  font-size: .9rem;
  color: rgba(255,255,255,.74);
}

.cubee-hero-visual,
.cubee-dashboard-shell,
.cubee-final-cta-card {
  position: relative;
}

.cubee-hero-visual {
  min-height: 580px;
}

.cubee-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: .45;
}

.cubee-orb--one {
  width: 180px;
  height: 180px;
  top: 24px;
  right: 30px;
  background: rgba(var(--secondary-rgb, 36, 109, 255), .44);
}

.cubee-orb--two {
  width: 240px;
  height: 240px;
  bottom: 40px;
  left: -30px;
  background: rgba(91, 196, 255, .22);
}

.cubee-dashboard-shell {
  margin-left: auto;
  max-width: 520px;
  padding: 1.35rem;
  border-radius: 30px;
  background: rgba(7, 17, 31, .72);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 28px 80px rgba(0,0,0,.34);
  backdrop-filter: blur(18px);
}

.cubee-dashboard-top {
  display: flex;
  gap: .5rem;
  margin-bottom: 1rem;
}

.cubee-window-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
}

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

.cubee-dashboard-panel,
.cubee-dashboard-card,
.cubee-spotlight-card,
.cubee-pain-card,
.cubee-solution-card,
.cubee-differential-card,
.cubee-timeline-step,
.cubee-feature-row {
  border-radius: 22px;
}

.cubee-dashboard-panel,
.cubee-dashboard-card {
  padding: 1.15rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.cubee-dashboard-panel--wide {
  grid-column: 1 / -1;
}

.cubee-panel-head {
  display: flex;
  justify-content: space-between;
  font-size: .84rem;
  color: rgba(255,255,255,.7);
  margin-bottom: .9rem;
}

.cubee-chart {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: end;
  gap: .55rem;
  min-height: 150px;
}

.cubee-chart span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(91,196,255,.95), rgba(var(--secondary-rgb, 36, 109, 255), .45));
}

.cubee-dashboard-panel small,
.cubee-dashboard-card span {
  display: block;
  color: rgba(255,255,255,.64);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
}

.cubee-dashboard-panel strong,
.cubee-dashboard-card strong {
  display: block;
  margin-top: .4rem;
  font-size: 1.35rem;
  line-height: 1.2;
}

.cubee-dashboard-panel span,
.cubee-dashboard-card strong {
  color: #fff;
}

.cubee-spotlight-card {
  margin-top: 1rem;
  padding: 1.35rem;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb, 36, 109, 255), .18), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.12);
}

.cubee-spotlight-tag {
  display: inline-flex;
  margin-bottom: .85rem;
  color: #8dc4ff;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.cubee-spotlight-card h3 {
  font-size: 1.45rem;
  line-height: 1.3;
  margin-bottom: .75rem;
}

.cubee-spotlight-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .9rem;
}

.cubee-spotlight-list li strong,
.cubee-differential-card h3,
.cubee-solution-card h3,
.cubee-pain-card h3,
.cubee-timeline-step h3,
.cubee-feature-row strong {
  display: block;
  margin-bottom: .35rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.cubee-pain-grid,
.cubee-solutions-grid {
  display: grid;
  gap: 1.25rem;
}

.cubee-pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cubee-solutions-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cubee-pain-card,
.cubee-solution-card,
.cubee-differential-card,
.cubee-timeline-step,
.cubee-feature-row,
.cubee-final-cta-card {
  padding: 1.4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0,0,0,.12);
}

.cubee-section .cubee-solution-card,
.cubee-section .cubee-feature-row,
.cubee-section .cubee-timeline-step,
.cubee-section .cubee-final-cta-card,
.cubee-section .cubee-columns .djl-col-card {
  background: rgba(255,255,255,.92);
  border-color: rgba(9, 24, 44, .08);
  box-shadow: 0 18px 45px rgba(7,17,31,.08);
  color: var(--djl-text);
}

.cubee-pain-icon,
.cubee-solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(var(--secondary-rgb, 36, 109, 255), .18), rgba(255,255,255,.12));
  color: #8dc4ff;
  font-weight: 800;
  letter-spacing: .08em;
}

.cubee-section .cubee-solution-icon {
  background: linear-gradient(135deg, rgba(var(--secondary-rgb, 36, 109, 255), .12), rgba(var(--secondary-rgb, 36, 109, 255), .04));
  color: var(--djl-secondary);
}

.cubee-inline-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.cubee-inline-link::after {
  content: "›";
  font-size: 1.1rem;
}

.cubee-differential-grid,
.cubee-dashboard-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: stretch;
}

.cubee-differential-list,
.cubee-feature-list {
  display: grid;
  gap: 1rem;
}

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

.cubee-timeline-index {
  display: inline-flex;
  margin-bottom: .8rem;
  color: var(--djl-secondary);
  font-weight: 800;
  font-size: .88rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cubee-dashboard-stack {
  position: relative;
  min-height: 430px;
}

.cubee-device {
  position: absolute;
  border-radius: 24px;
  background: linear-gradient(180deg, #0f1f38, #091322);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.cubee-device-screen {
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  background:
    radial-gradient(circle at top right, rgba(91,196,255,.22), transparent 28%),
    linear-gradient(180deg, #101a2f 0%, #07111f 100%);
}

.cubee-device-desktop {
  inset: 0 80px 70px 0;
}

.cubee-device-tablet {
  width: 180px;
  height: 250px;
  right: 0;
  bottom: 26px;
}

.cubee-device-mobile {
  width: 112px;
  height: 220px;
  right: 130px;
  bottom: 0;
}

.cubee-device-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .75rem;
  padding: 1rem;
}

.cubee-device-kpi {
  padding: .85rem;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}

.cubee-device-kpi span {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.6);
}

.cubee-device-kpi strong {
  display: block;
  margin-top: .35rem;
  color: #fff;
  font-size: 1rem;
}

.cubee-device-graph {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .65rem;
  align-items: end;
  min-height: 180px;
  padding: 0 1rem 1rem;
}

.cubee-device-graph span {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #5bc4ff, #246dff);
}

.cubee-final-cta {
  padding-top: 0;
}

.cubee-final-cta-card {
  background:
    radial-gradient(circle at top right, rgba(var(--secondary-rgb, 36,109,255), .26), transparent 32%),
    linear-gradient(135deg, #07111f 0%, #0b1220 100%);
  color: #fff;
  text-align: center;
}

.cubee-final-cta-card p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.cubee-columns .djl-col-card {
  border-radius: 20px;
}

@media (max-width: 1199px) {
  .cubee-pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 991px) {
  .cubee-hero-grid,
  .cubee-differential-grid,
  .cubee-dashboard-showcase-grid {
    grid-template-columns: 1fr;
  }

  .cubee-hero-visual,
  .cubee-dashboard-stack {
    min-height: 480px;
  }
}

@media (max-width: 767px) {
  .cubee-section,
  .cubee-hero {
    padding: 3.5rem 0;
  }

  .cubee-hero-title,
  .cubee-section-heading h2,
  .cubee-differential-copy h2,
  .cubee-dashboard-copy h2,
  .cubee-final-cta-card h2 {
    font-size: 2rem;
  }

  .cubee-hero-stats,
  .cubee-pain-grid,
  .cubee-solutions-grid,
  .cubee-timeline,
  .cubee-device-kpis {
    grid-template-columns: 1fr;
  }

  .cubee-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .cubee-device-desktop,
  .cubee-device-tablet,
  .cubee-device-mobile {
    position: relative;
    inset: auto;
    width: 100%;
    height: 200px;
    margin-top: 1rem;
  }
}
