:root {
  --bg-deep: #01010b;
  --bg-alt: #02020f;
  --bg-surface: #030318;
  --accent: #d8b04d;
  --accent-strong: #f5c75f;
  --text-primary: #f1f4fb;
  --text-secondary: #c7cfdf;
  --text-muted: #9fb1c7;
  --card-border: rgba(214, 164, 65, 0.35);
  --shadow-soft: 0 15px 35px rgba(0, 0, 0, 0.6);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max-width: 90rem;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background-color: #01010b;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(214, 164, 65, 0.08), transparent 35%),
    radial-gradient(circle at 80% 0%, rgba(214, 164, 65, 0.08), transparent 30%),
    linear-gradient(135deg, rgba(1, 1, 11, 0.95) 0%, rgba(1, 1, 11, 0.92) 45%, rgba(1, 1, 11, 0.98) 100%),
    url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3Ccircle cx='80' cy='80' r='78'/%3E%3C/g%3E%3C/svg%3E");
  background-blend-mode: normal, normal, normal, overlay;
  min-height: 100vh;
}

html {
  scroll-padding-top: 104px;
}

section[id] {
  scroll-margin-top: 104px;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(calc(100vw - 4rem), var(--max-width));
  margin: 0 auto;
  padding: 15px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(1, 1, 11, 0.85);
  border-bottom: 1px solid rgba(214, 164, 65, 0.2);
}

.topbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.brand__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
}

.brand__name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.brand__tagline {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.375s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav__cta {
  padding: 10px 16px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent-strong);
}

.hero {
  position: relative;
  min-height: 550px;
  display: grid;
  place-items: center;
  padding: 80px 0 48px;
  background:
    radial-gradient(circle at 18% 25%, rgba(214, 164, 65, 0.12), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(214, 164, 65, 0.08), transparent 38%),
    linear-gradient(120deg, rgba(1, 1, 11, 0.9) 30%, rgba(2, 2, 15, 0.7) 60%, rgba(1, 1, 11, 0.95));
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  top: 20px;
  left: 10%;
  width: 100%;
  object-fit: contain;
  object-position: center top;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(214, 164, 65, 0.08), transparent 35%),
    linear-gradient(90deg, rgba(1, 1, 11, 0.9) 0%, rgba(1, 1, 11, 0.3) 40%, transparent 80%);
  pointer-events: none;
}

.hero__mark {
  position: absolute;
  right: 8%;
  top: 14%;
  width: clamp(120px, 18vw, 180px);
  opacity: 0.16;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.45));
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: left;
  padding: 24px 0;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 60px);
  margin: 24px 0 18px;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

.hero__subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 600;
  color: var(--accent-strong);
  margin: 0 0 18px;
  letter-spacing: 0.04em;
  text-transform: none;
  line-height: 1.1;
}

.hero .lede {
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 640px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-highlight {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg-deep));
  border-bottom: 1px solid rgba(214, 164, 65, 0.12);
  padding: 48px 0;
}

.hero-highlight__content {
  display: grid;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 12px;
  color: var(--accent-strong);
  font-weight: 700;
}

.lede {
  color: var(--text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  padding: 12px 18px;
  cursor: pointer;
  transition: transform 0.375s ease, box-shadow 0.375s ease, border-color 0.375s ease;
}

.btn--primary {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #0c1629;
  box-shadow: 0 10px 30px rgba(214, 164, 65, 0.35);
}

.btn--ghost {
  border-color: rgba(214, 164, 65, 0.45);
  color: var(--accent-strong);
  background: rgba(4, 4, 4, 0.37);
}

.btn--primary:hover,
.btn--ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.548);
}

.btn--full {
  width: 100%;
}

.btn--whatsapp {
  gap: 6px;
  border: 1px solid rgba(214, 164, 65, 0.35);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  transition: background 0.375s ease, transform 0.375s ease, box-shadow 0.375s ease;
}

.btn--whatsapp:hover {
  background: #131d37;
}

.pill-group {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 0;
}

.pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(214, 164, 65, 0.22);
  color: var(--text-secondary);
  font-size: 14px;
}

.pill--soft {
  background: rgba(214, 164, 65, 0.14);
  color: var(--accent-strong);
  border-color: rgba(214, 164, 65, 0.35);
}

.pill--offset-top {
  margin-top: 12px;
}

.hero__badge {
  margin: 22px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(11, 27, 51, 0.75);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero__badge img {
  width: 42px;
  height: 42px;
}

.badge__title {
  display: block;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.badge__subtitle {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  justify-items: center;
  justify-content: center;
  width: min(1080px, 100%);
  margin: 28px auto 0;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 18px;
  min-height: 110px;
}

.hero__stat:first-child {
  border-left: none;
}

.hero__stat-value,
.hero__stat-icon {
  display: block;
}

.hero__stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: var(--accent-strong);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.hero__stat-icon {
  font-size: 32px;
  color: var(--accent-strong);
  margin-bottom: 10px;
}

.hero__stat-label {
  color: var(--text-secondary);
  line-height: 1.4;
  text-align: center;
  font-size: 0.95rem;
  text-transform: none;
  letter-spacing: 0.03em;
}

.section {
  padding: 80px 0;
}

.section--alt {
  background: linear-gradient(180deg, var(--bg-alt), var(--bg-deep));
  border-block: 1px solid rgba(214, 164, 65, 0.08);
}

.section--accent {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-alt) 50%, var(--bg-deep) 100%);
  border-top: 1px solid rgba(214, 164, 65, 0.12);
}

.section--photo {
  position: relative;
  overflow: hidden;
}

.section--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(1, 1, 11, 0.85), rgba(1, 1, 11, 0.75));
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}

.section--photo::after {
  content: '';
  position: absolute;
  left: -30%;
  width: 80%;
  height: 6px;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 18%, rgba(255, 223, 120, 0.35) 34%, rgba(255, 212, 75, 0.9) 50%, rgba(255, 223, 120, 0.35) 66%, rgba(255, 255, 255, 0.06) 82%, transparent 100%);
  box-shadow: 0 0 30px rgba(255, 212, 75, 0.35), 0 0 80px rgba(214, 164, 65, 0.18);
  filter: blur(1.4px);
  opacity: 0.8;
  pointer-events: none;
  z-index: 0;
  animation: section-photo-flash 5s linear infinite;
}

.section--photo>* {
  position: relative;
  z-index: 1;
}

.section--photo.bg-quienes::after {
  animation-delay: 0s;
  animation-duration: 4.4s;
}

.section--photo.bg-servicios::after {
  animation-delay: 0.9s;
  animation-duration: 4.4s;
}

.section--photo.bg-ventajas::after {
  animation-delay: 1.7s;
  animation-duration: 4.3s;
}

.section--photo.bg-comparativa::after {
  animation-delay: 2.5s;
  animation-duration: 4.2s;
}

.section--photo.bg-contacto::after {
  animation-delay: 3.3s;
  animation-duration: 4.5s;
}

@keyframes section-photo-flash {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20% {
    transform: translateX(30%);
    opacity: 0.75;
  }
  40% {
    transform: translateX(55%);
    opacity: 1;
  }
  60% {
    transform: translateX(80%);
    opacity: 0.9;
  }
  80% {
    transform: translateX(110%);
    opacity: 0.55;
  }
  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}

.bg-ventajas::before {
  background:
    linear-gradient(180deg, var(--bg-deep), var(--bg-alt)),
    url('../img/bg-diferenciales.jpg');
}

.bg-comparativa::before {
  background:
    linear-gradient(180deg, var(--bg-surface), var(--bg-alt)),
    url('../img/bg-cobertura.jpg');
}

.bg-servicios::before {
  background:
    linear-gradient(180deg, var(--bg-alt), var(--bg-deep)),
    url('../img/bg-servicios-alt.jpg');
}

.bg-quienes::before {
  background:
    linear-gradient(180deg, var(--bg-alt), var(--bg-deep)),
    url('../img/bg-quienes.jpg');
}

.bg-resultados::before {
  background:
    linear-gradient(180deg, rgba(14, 30, 52, 0.9), rgba(12, 24, 43, 0.78)),
    url('../img/bg-resultados.jpg');
}

.bg-dashboard::before {
  background:
    linear-gradient(180deg, rgba(9, 20, 36, 0.9), rgba(9, 20, 36, 0.78)),
    url('../img/bg-dashboard.jpg');
}

.bg-contacto::before {
  background:
    linear-gradient(180deg, var(--bg-deep), var(--bg-alt)),
    url('../img/bg-cobertura.jpg');
}

.section__header {
  text-align: left;
  max-width: 720px;
  margin: 0 auto 36px;
}

.section__header p {
  max-width: 760px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 38px);
  margin: 8px 0 12px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.section__footer {
  text-align: left;
  color: var(--text-secondary);
  margin-top: 18px;
}

.section-cta {
  margin-top: 24px;
}

.section-mark {
  position: absolute;
  width: clamp(110px, 14vw, 160px);
  opacity: 0.12;
  filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.45));
  right: 4%;
  top: 10%;
  pointer-events: none;
}

.section-mark--corner {
  right: 6%;
  top: 6%;
}

.section-mark--left {
  left: 4%;
  right: auto;
  top: 12%;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.section--photo.bg-ventajas .grid--3 {
  grid-template-columns: repeat(3, minmax(240px, 1fr));
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(214, 164, 65, 0.18);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: transform 0.375s ease, border-color 0.375s ease, box-shadow 0.375s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 164, 65, 0.35);
}

.card--border {
  background: rgba(255, 255, 255, 0.02);
  border-style: dashed;
}

.card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(214, 164, 65, 0.12);
  color: var(--accent-strong);
  font-variation-settings: 'OPSZ' 28, 'wght' 600, 'FILL' 0, 'GRAD' 0;
}

.card h3 {
  margin: 16px 0 12px;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin: 0;
}

.service-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-card p {
  margin-top: 10px;
}

.service-orbit {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: center;
}

.service-orbit__cluster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  justify-items: center;
}

.service-node {
  width: clamp(88px, 10vw, 118px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(214, 164, 65, 0.2);
  background:
    radial-gradient(circle at 32% 28%, rgba(245, 199, 95, 0.22), rgba(245, 199, 95, 0) 40%),
    linear-gradient(180deg, rgba(8, 17, 31, 0.94), rgba(3, 8, 16, 0.98));
  color: var(--text-primary);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 14px 10px;
  cursor: pointer;
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease, background 0.32s ease;
}

.service-node:hover,
.service-node:focus-visible,
.service-node.is-active {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(245, 199, 95, 0.46);
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.28);
  background:
    radial-gradient(circle at 28% 26%, rgba(245, 199, 95, 0.34), rgba(245, 199, 95, 0.02) 42%),
    linear-gradient(180deg, rgba(17, 33, 58, 0.96), rgba(7, 15, 27, 0.98));
}

.service-node:focus-visible {
  outline: 2px solid rgba(245, 199, 95, 0.72);
  outline-offset: 3px;
}

.service-node__icon {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--accent-strong);
}

.service-node__label {
  font-size: 11px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-align: center;
  max-width: 8ch;
}

.service-orbit__panel {
  min-height: 100%;
  padding: 30px;
  display: grid;
  align-content: start;
  gap: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(10, 21, 38, 0.95), rgba(5, 12, 24, 0.96));
}

.service-orbit__panel h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 36px);
}

.service-orbit__panel p {
  margin: 0;
}

.service-orbit__eyebrow {
  margin: 0;
  color: var(--accent-strong);
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 700;
}

.service-orbit__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  padding-top: 8px;
  color: var(--text-secondary);
  border-top: 1px solid rgba(214, 164, 65, 0.12);
}

.service-orbit__meta .material-symbols-outlined {
  color: var(--accent-strong);
}

.card__list {
  margin: 12px 0 0;
  padding-left: 16px;
  color: var(--text-secondary);
  display: grid;
  gap: 6px;
  list-style: disc;
}

.card__list li {
  line-height: 1.45;
}

.table-wrapper {
  overflow-x: auto;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  min-width: 320px;
}

.comparison th,
.comparison td {
  padding: 14px 12px;
  text-align: left;
}

.comparison thead {
  background: rgba(214, 164, 65, 0.12);
  color: var(--accent-strong);
}

.comparison tbody tr {
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(214, 164, 65, 0.08);
}

.comparison tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}

.split {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.split--reverse {
  direction: rtl;
}

.split--reverse>* {
  direction: ltr;
}

.section-image {
  min-height: 420px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.section-image--elegirnos {
  background-image: url('../img/bg-elegirnos.png');
}

.stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.stats li {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

.stat__value {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--accent-strong);
  letter-spacing: 0.4px;
}

.stat__label {
  color: var(--text-secondary);
}

.cta-box {
  background: linear-gradient(135deg, rgba(214, 164, 65, 0.15), rgba(214, 164, 65, 0.05));
  border: 1px solid rgba(214, 164, 65, 0.35);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.cta-box h3 {
  margin-top: 0;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.4px;
}

.cta-box p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion__item {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
  border: 1px solid rgba(214, 164, 65, 0.18);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion__panel {
  display: none;
  padding: 0 12px 12px;
  color: var(--text-secondary);
}

.accordion__item.is-open {
  border-color: var(--accent-strong);
  box-shadow: 0 10px 22px rgba(214, 164, 65, 0.12);
}

.accordion__item.is-open+.accordion__panel {
  display: block;
}

.dashboard {
  position: relative;
  overflow: hidden;
}

.dashboard__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 10%, rgba(214, 164, 65, 0.12), transparent 30%), radial-gradient(circle at 80% 30%, rgba(72, 125, 214, 0.15), transparent 34%);
  opacity: 0.9;
  filter: blur(0px);
}

.dashboard__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.dash-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(214, 164, 65, 0.25);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
  overflow: hidden;
}

.dash-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(214, 164, 65, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.8;
}

.dash-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.dash-card__label {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.dash-card__value {
  margin: 4px 0 0;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  letter-spacing: 0.4px;
}

.dash-card--wide {
  grid-column: span 2;
}

.spark {
  display: grid;
  grid-auto-flow: column;
  gap: 6px;
  align-items: flex-end;
  margin-top: 16px;
  height: 54px;
}

.spark span {
  display: block;
  width: 12px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--accent-strong), rgba(214, 164, 65, 0.15));
  height: var(--p);
  transition: height 0.3s ease;
}

.status {
  padding: 6px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.4px;
  border: 1px solid transparent;
}

.status--ok {
  color: #6fe4a6;
  border-color: rgba(111, 228, 166, 0.4);
  background: rgba(111, 228, 166, 0.08);
}

.status--low {
  color: #f5c26b;
  border-color: rgba(245, 194, 107, 0.4);
  background: rgba(245, 194, 107, 0.08);
}

.progress {
  margin-top: 14px;
  display: grid;
  gap: 6px;
}

.progress__label {
  color: var(--text-secondary);
  font-size: 14px;
}

.progress__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  border: 1px solid rgba(214, 164, 65, 0.25);
}

.progress__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #6fe4a6, #32c48d);
  transition: width 0.4s ease;
}

.mini-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
}

.mini-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-list strong {
  color: var(--text-primary);
}

.timeline {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.timeline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
}

.timeline__title {
  margin: 0;
  font-weight: 700;
  color: var(--text-primary);
}

.timeline__meta {
  margin: 2px 0 0;
  color: var(--text-secondary);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot--green {
  background: #6fe4a6;
  box-shadow: 0 0 0 6px rgba(111, 228, 166, 0.15);
}

.dot--amber {
  background: #f5c26b;
  box-shadow: 0 0 0 6px rgba(245, 194, 107, 0.15);
}

.dot--blue {
  background: #6fa7ff;
  box-shadow: 0 0 0 6px rgba(111, 167, 255, 0.15);
}

.form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 164, 65, 0.22);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: var(--shadow-soft);
}

.form-success,
.form-feedback {
  border-radius: var(--radius-md);
  padding: 18px;
  margin: 18px 0 0;
}

.form-success {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(34, 227, 117, 0.12);
  border: 1px solid rgba(34, 227, 117, 0.35);
  color: var(--accent-strong);
}

.form-success__icon {
  font-size: 40px;
}

.form-feedback {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 100, 100, 0.18);
  color: #ffb3b3;
}

.hidden {
  display: none !important;
}

.form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--text-primary);
}

.form input,
.form select {
  padding: 12px 14px 12px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(214, 164, 65, 0.25);
  background: rgba(11, 27, 51, 0.4);
  color: var(--text-primary);
  font-size: 15px;
}

.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--text-primary) 50%), linear-gradient(135deg, var(--text-primary) 50%, transparent 50%);
  background-position: calc(100% - 12px) center, calc(100% - 7px) center;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.form select::-ms-expand {
  display: none;
}

.form input:focus,
.form select:focus {
  outline: 2px solid var(--accent-strong);
  outline-offset: 1px;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
}

.bullet-list li::before {
  content: '\2022';
  color: var(--accent-strong);
  margin-right: 8px;
}

.bullet-list--check li::before {
  content: '✓';
  font-weight: 800;
}

.contact-inline {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-inline__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border: 1px solid rgba(214, 164, 65, 0.25);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.375s ease, box-shadow 0.375s ease;
}

.contact-inline__item:hover {
  border-color: var(--accent-strong);
  box-shadow: var(--shadow-soft);
}

.contact-inline__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--accent-strong);
}

.contact-inline__icon svg {
  width: 24px;
  height: 24px;
}

.contact-inline__label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.contact-inline__value {
  display: block;
  font-weight: 700;
  color: var(--text-primary);
}

.band {
  background: linear-gradient(135deg, rgba(214, 164, 65, 0.08), rgba(19, 43, 75, 0.4));
  border-block: 1px solid rgba(214, 164, 65, 0.1);
}

.band__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.band__item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(214, 164, 65, 0.25);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.band__value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  color: var(--accent-strong);
  letter-spacing: 0.5px;
}

.band__label {
  display: block;
  color: var(--text-secondary);
  margin-top: 6px;
}

.chip-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list li {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(214, 164, 65, 0.25);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
}

.footer {
  padding: 24px 0;
  border-top: 1px solid rgba(214, 164, 65, 0.12);
  background: rgba(5, 12, 24, 0.95);
}

.footer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.footer__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer__legal {
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-size: 0.95rem;
}

.footer__brand-text {
  color: #ffffff;
}

.whatsapp {
  position: fixed;
  bottom: 22px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #22e375, #0fb169);
  border-radius: 999px;
  color: #0b1b33;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  z-index: 30;
  transition: transform 0.375s ease, box-shadow 0.375s ease;
}

.whatsapp__icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: #0b1f33;
  color: #22e375;
  border-radius: 50%;


}

.no-background {
  background: transparent !important;
}

.whatsapp__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.whatsapp__label {
  font-weight: 800;
  letter-spacing: 0.3px;
}

.whatsapp:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.45);
}

@media (max-width: 900px) {
  .topbar__content {
    flex-wrap: wrap;
    gap: 12px;
  }

  .nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero {
    padding: 72px 0 48px;
  }

  .hero__content {
    padding: 18px 0;
  }

  .hero__stats {
    grid-template-columns: 1fr;
  }

  .section__header,
  .section__footer {
    text-align: center;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .section--photo.bg-ventajas .grid--3 {
    grid-template-columns: 1fr;
  }

  .section-mark {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .topbar__content {
    justify-content: space-between;
  }

  .hero {
    padding: 88px 0 64px;
  }

  .dash-card--wide {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* Refresh: estructura más clara, menos texto inicial y accesos rápidos visibles */
.brand--link {
  text-decoration: none;
}

.topbar {
  overflow: visible;
}

.topbar__content {
  gap: 24px;
}

.nav {
  margin-left: auto;
}

.nav__cta {
  background: rgba(214, 164, 65, 0.1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(214, 164, 65, 0.28);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.quickbar {
  position: relative;
  z-index: 3;
  background: linear-gradient(180deg, rgba(214, 164, 65, 0.08), rgba(2, 2, 15, 0.95));
  border-bottom: 1px solid rgba(214, 164, 65, 0.16);
}

.quickbar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 16px 0;
}

.quickbar__item {
  min-height: 82px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 164, 65, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  color: var(--text-primary);
  text-decoration: none;
  display: grid;
  align-content: start;
  gap: 8px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.quickbar__item:hover {
  transform: translateY(-2px);
  border-color: rgba(214, 164, 65, 0.38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.quickbar__label {
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
}

.quickbar__value {
  color: var(--text-secondary);
  line-height: 1.45;
  font-weight: 600;
}

.hero {
  min-height: auto;
  padding: 88px 0 72px;
}

.hero__bg {
  top: -150px;
  bottom: -4%;
  left: auto;
  right: -6%;
  object-position: center bottom;
  pointer-events: none;
}

.hero__overlay {
  background:
    radial-gradient(circle at 18% 32%, rgba(214, 164, 65, 0.12), transparent 30%),
    linear-gradient(90deg, rgba(1, 1, 11, 0.96) 0%, rgba(1, 1, 11, 0.72) 38%, rgba(1, 1, 11, 0.34) 62%, rgba(1, 1, 11, 0.2) 100%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 32px;
  align-items: center;
}

.hero__content {
  max-width: none;
  padding: 12px 0;
}

.hero h1 {
  max-width: 11ch;
  margin: 16px 0;
  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: 0.02em;
}

.hero__subtitle {
  margin-bottom: 12px;
  max-width: 26ch;
  color: var(--accent-strong);
}

.hero .lede {
  max-width: 56ch;
  margin-bottom: 24px;
  font-size: 17px;
  line-height: 1.7;
}

.hero__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
  max-width: 44rem;
}

.hero__list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-secondary);
}

.hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 5px rgba(214, 164, 65, 0.12);
}

.hero__summary {
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(214, 164, 65, 0.2);
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.9), rgba(5, 12, 24, 0.92));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(10px);
}

.hero__summary-eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
}

.hero__summary h2 {
  margin: 0 0 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3vw, 36px);
  line-height: 1.15;
}

.hero__summary-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.hero__summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(214, 164, 65, 0.12);
}

.hero__summary-list span {
  color: var(--text-secondary);
}

.hero__summary-list strong {
  color: var(--text-primary);
  text-align: right;
}

.hero__summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero__summary-link {
  display: inline-flex;
  align-items: center;
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
}

.hero__summary-link--muted {
  color: var(--text-secondary);
}

.section--photo::after {
  display: none;
}

.section__header {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2 {
  max-width: 18ch;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.split--contact {
  align-items: start;
}

.cta-box--contact {
  margin-top: 22px;
}

.form textarea,
.form input,
.form select {
  width: 100%;
}

.form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(214, 164, 65, 0.25);
  background: rgba(11, 27, 51, 0.4);
  color: var(--text-primary);
  font-size: 15px;
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}

.form textarea:focus {
  outline: 2px solid var(--accent-strong);
  outline-offset: 1px;
}

.contact-inline {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.contact-inline__item {
  min-height: 88px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.trust-card {
  min-height: 100%;
}

.trust-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(214, 164, 65, 0.14);
  border: 1px solid rgba(214, 164, 65, 0.24);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.section-links__item {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 164, 65, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.section-links__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent-strong);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 60px;
  background:
    radial-gradient(circle at 14% 18%, rgba(214, 164, 65, 0.1), transparent 28%),
    linear-gradient(135deg, rgba(2, 2, 15, 0.96), rgba(4, 10, 20, 0.92));
}

.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.page-hero__content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 10px 0 16px;
  max-width: 11ch;
}

.page-hero__content .lede {
  max-width: 58ch;
  line-height: 1.7;
}

.page-hero__meta {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(214, 164, 65, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}

.page-hero__meta h2 {
  margin: 0 0 16px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 32px);
}

.stack-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.stack-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(214, 164, 65, 0.12);
  color: var(--text-secondary);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 24px;
  align-items: start;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.region-card {
  padding: 22px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(214, 164, 65, 0.18);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.region-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.region-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.region-card .chip-list {
  margin-top: 14px;
}

.info-accordion {
  display: grid;
  gap: 14px;
}

.info-panel {
  border: 1px solid rgba(214, 164, 65, 0.16);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.info-panel[open] {
  border-color: rgba(214, 164, 65, 0.36);
}

.info-panel__summary {
  list-style: none;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.info-panel__summary::-webkit-details-marker {
  display: none;
}

.info-panel__summary::after {
  content: '+';
  color: var(--accent-strong);
  font-size: 20px;
  line-height: 1;
}

.info-panel[open] .info-panel__summary::after {
  content: '-';
}

.info-panel__content {
  padding: 0 22px 22px;
  color: var(--text-secondary);
}

.footer__content {
  flex-wrap: wrap;
}

.footer__legal {
  white-space: normal;
}

@media (max-width: 900px) {
  .hero__grid,
  .page-hero__grid,
  .content-grid,
  .service-orbit,
  .trust-grid,
  .contact-inline {
    grid-template-columns: 1fr;
  }

  .topbar__content {
    flex-wrap: nowrap;
  }

  .nav {
    width: auto;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .hero__bg {
    right: -16%;
    width: min(760px, 88vw);
    opacity: 0.2;
  }

  .hero__summary {
    padding: 24px;
  }

  .service-orbit__cluster {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .section h2 {
    max-width: none;
  }

  .section__header {
    text-align: left;
  }

  .page-hero {
    padding: 72px 0 52px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 88px;
  }

  section[id] {
    scroll-margin-top: 88px;
  }

  .topbar__content {
    position: relative;
    gap: 12px;
  }

  .brand__tagline {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(214, 164, 65, 0.18);
    background: rgba(2, 6, 14, 0.96);
    box-shadow: 0 22px 44px rgba(0, 0, 0, 0.35);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
  }

  .nav__cta {
    text-align: center;
  }

  .quickbar {
    padding-top: 4px;
  }

  .quickbar__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quickbar__item {
    min-height: auto;
  }

  .service-orbit {
    gap: 18px;
  }

  .service-orbit__cluster {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 88px;
    overflow-x: auto;
    justify-items: stretch;
    justify-content: start;
    padding-bottom: 8px;
    margin-right: -4vw;
    padding-right: 4vw;
    scrollbar-width: thin;
  }

  .service-node {
    width: 88px;
    min-width: 88px;
    transform: none;
  }

  .service-node:hover,
  .service-node:focus-visible,
  .service-node.is-active {
    transform: translateY(-2px);
  }

  .service-orbit__panel {
    padding: 22px;
  }

  .hero {
    padding: 64px 0 52px;
  }

  .page-hero {
    padding: 60px 0 44px;
  }

  .hero__bg {
    right: -36%;
    width: min(700px, 110vw);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(36px, 12vw, 52px);
  }

  .hero__summary-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__summary-list strong {
    text-align: left;
  }

  .whatsapp {
    right: 12px;
    bottom: 14px;
    padding: 12px 14px;
  }

  .whatsapp__label {
    display: none;
  }
}

@media (max-width: 520px) {
  .quickbar__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .hero__summary-actions,
  .service-tags {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero__summary-link {
    justify-content: center;
  }
}

/* Guardbase-inspired dark system theme */
:root {
  --bg-deep: #05070c;
  --bg-alt: #0a0f19;
  --bg-surface: #0f1522;
  --accent: #7092ff;
  --accent-strong: #90a9ff;
  --signal: #eff569;
  --text-primary: #f6f8fc;
  --text-secondary: #b9c3da;
  --text-muted: #71809f;
  --card-border: rgba(125, 150, 255, 0.26);
  --shadow-soft: 0 22px 50px rgba(0, 0, 0, 0.42);
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 12% 14%, rgba(112, 146, 255, 0.15), transparent 22%),
    radial-gradient(circle at 84% 12%, rgba(239, 245, 105, 0.08), transparent 18%),
    linear-gradient(180deg, rgba(5, 7, 12, 0.98), rgba(6, 10, 18, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 100%),
    linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 100%);
  background-size: auto, auto, auto, 26px 26px, 26px 26px;
  background-position: center, center, center, center, center;
}

.brand__name,
.hero h1,
.hero__subtitle,
.section h2,
.card h3,
.hero__summary h2,
.page-hero__content h1,
.page-hero__meta h2,
.region-card h3 {
  font-family: var(--font-display);
}

.topbar {
  background: rgba(5, 7, 12, 0.84);
  border-bottom-color: rgba(125, 150, 255, 0.16);
  backdrop-filter: blur(14px);
}

.brand__logo {
  filter: drop-shadow(0 0 18px rgba(112, 146, 255, 0.16));
}

.brand__tagline,
.nav a,
.quickbar__value,
.lede,
.card p,
.bullet-list,
.contact-inline__label,
.contact-inline__value,
.hero__summary-list span,
.stack-list li,
.region-card p {
  color: var(--text-secondary);
}

.nav a:hover,
.hero__summary-link,
.quickbar__label,
.eyebrow,
.service-orbit__eyebrow,
.service-tags .pill,
.section-links__label,
.trust-card__tag {
  color: var(--signal);
}

.nav__cta,
.btn--primary {
  background: linear-gradient(135deg, var(--accent), #4a66d8);
  border-color: rgba(144, 169, 255, 0.45);
  color: #f7f9ff;
  box-shadow: 0 18px 38px rgba(64, 94, 206, 0.34);
}

.btn--ghost,
.quickbar__item,
.hero__summary,
.card,
.cta-box,
.contact-inline__item,
.form,
.service-orbit__panel,
.section-links__item,
.page-hero__meta,
.region-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(13, 19, 31, 0.95), rgba(7, 11, 20, 0.98));
  border-color: rgba(125, 150, 255, 0.18);
  box-shadow: var(--shadow-soft);
}

.quickbar {
  background:
    linear-gradient(180deg, rgba(10, 15, 25, 0.98), rgba(7, 10, 18, 0.98));
  border-bottom-color: rgba(125, 150, 255, 0.14);
}

.quickbar__item {
  min-height: 74px;
  border-radius: 18px;
}

.quickbar__item:hover {
  border-color: rgba(144, 169, 255, 0.38);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3);
}

.hero {
  padding-top: 104px;
  padding-bottom: 84px;
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.76), rgba(5, 7, 12, 0.96)),
    linear-gradient(135deg, rgba(8, 13, 23, 0.98), rgba(5, 7, 12, 0.98));
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%),
    linear-gradient(45deg, rgba(112, 146, 255, 0.05) 0 1px, transparent 1px 100%);
  background-size: 24px 24px, 24px 24px;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero__bg {
  opacity: 0.88;
  filter: saturate(0) contrast(1.15) brightness(0.92);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 7, 12, 0.96) 0%, rgba(5, 7, 12, 0.82) 36%, rgba(5, 7, 12, 0.38) 66%, rgba(5, 7, 12, 0.7) 100%);
}

.hero h1 {
  font-size: clamp(3.6rem, 8vw, 6.9rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.05em;
  max-width: 9ch;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.86rem;
  color: var(--signal);
}

.hero .lede {
  max-width: 48ch;
  font-size: 1rem;
  line-height: 1.8;
}

.hero__list li::before {
  width: 7px;
  height: 7px;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(239, 245, 105, 0.12);
}

.hero__summary {
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero__summary::before,
.service-orbit__panel::before,
.page-hero__meta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 100%);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent);
  pointer-events: none;
}

.hero__summary h2,
.service-orbit__panel h3,
.page-hero__meta h2 {
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hero__summary-list li,
.service-orbit__meta {
  border-color: rgba(125, 150, 255, 0.14);
}

.section {
  padding-block: 92px;
}

.section--alt {
  background:
    linear-gradient(180deg, rgba(10, 15, 25, 0.98), rgba(8, 11, 19, 0.98));
  border-block-color: rgba(125, 150, 255, 0.1);
}

.section--accent {
  background:
    linear-gradient(180deg, rgba(11, 17, 30, 0.98), rgba(6, 10, 18, 0.98));
  border-top-color: rgba(125, 150, 255, 0.14);
}

.section--photo::before {
  opacity: 0.48;
}

.section__header {
  margin-bottom: 34px;
}

.section h2 {
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.service-orbit {
  gap: 34px;
  align-items: start;
}

.service-orbit__cluster {
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 18px;
}

.service-node {
  border-color: rgba(125, 150, 255, 0.24);
  background:
    radial-gradient(circle at 28% 24%, rgba(144, 169, 255, 0.34), rgba(144, 169, 255, 0.05) 32%, transparent 56%),
    radial-gradient(circle at 70% 78%, rgba(239, 245, 105, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(17, 24, 39, 0.98), rgba(7, 11, 20, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 34px rgba(0, 0, 0, 0.34);
}

.service-node:hover,
.service-node:focus-visible,
.service-node.is-active {
  border-color: rgba(239, 245, 105, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 42px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(112, 146, 255, 0.18);
}

.service-node__icon {
  color: #dbe4ff;
}

.service-node__label {
  color: var(--text-primary);
  letter-spacing: 0.12em;
}

.service-orbit__panel {
  border-radius: 26px;
  min-height: 420px;
}

.service-orbit__meta .material-symbols-outlined {
  color: var(--signal);
}

.pill,
.service-tags .pill {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(125, 150, 255, 0.18);
  color: var(--text-secondary);
}

.trust-grid {
  gap: 20px;
}

.trust-card,
.region-card,
.section-links__item {
  border-radius: 20px;
}

.trust-card__tag {
  background: rgba(112, 146, 255, 0.16);
  border-color: rgba(112, 146, 255, 0.24);
}

.contact-inline__item:hover,
.section-links__item:hover,
.region-card:hover,
.card:hover {
  border-color: rgba(144, 169, 255, 0.34);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.34);
}

.contact-inline__icon,
.contact-inline__icon .material-symbols-outlined {
  color: var(--signal);
}

.form input,
.form select,
.form textarea {
  background: rgba(5, 9, 16, 0.84);
  border-color: rgba(125, 150, 255, 0.16);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline-color: var(--signal);
}

.page-hero {
  background:
    linear-gradient(180deg, rgba(5, 7, 12, 0.96), rgba(8, 11, 19, 0.98));
}

.page-hero__content h1 {
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.section-links__item strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.footer {
  background: rgba(3, 5, 9, 0.98);
  border-top-color: rgba(125, 150, 255, 0.1);
}

.footer__brand-text {
  color: #dfe7ff;
}

.whatsapp {
  background: linear-gradient(135deg, var(--signal), #b7d94b);
  color: #111620;
}

.whatsapp__icon {
  background: #111620;
  color: var(--signal);
}

@media (max-width: 900px) {
  .hero {
    padding-top: 88px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .service-orbit__cluster {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .quickbar {
    background: rgba(8, 11, 19, 0.98);
  }

  .hero {
    padding-top: 74px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.2rem);
  }

  .hero__summary,
  .service-orbit__panel,
  .page-hero__meta {
    border-radius: 20px;
  }

  .service-orbit__cluster {
    grid-auto-columns: 84px;
  }

  .service-node {
    width: 84px;
    min-width: 84px;
  }

  .nav {
    background: rgba(6, 9, 16, 0.98);
    border-color: rgba(125, 150, 255, 0.18);
  }
}

/* Brand palette restoration + technical corner details */
:root {
  --bg-deep: #050509;
  --bg-alt: #0a0a11;
  --bg-surface: #11131a;
  --accent: #d8b04d;
  --accent-strong: #f5c75f;
  --signal: #f5c75f;
  --text-primary: #f4f1ea;
  --text-secondary: #cfc6b6;
  --text-muted: #9e937d;
  --card-border: rgba(216, 176, 77, 0.22);
}

body {
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 14% 12%, rgba(216, 176, 77, 0.08), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(216, 176, 77, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(5, 5, 9, 0.98), rgba(9, 10, 16, 0.98)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 100%),
    linear-gradient(45deg, rgba(216, 176, 77, 0.035) 0 1px, transparent 1px 100%);
}

.topbar {
  background: rgba(5, 5, 9, 0.86);
  border-bottom-color: rgba(216, 176, 77, 0.18);
}

.nav-toggle {
  border-color: rgba(216, 176, 77, 0.24);
  background: rgba(255, 255, 255, 0.025);
}

.brand__logo {
  filter: drop-shadow(0 0 18px rgba(216, 176, 77, 0.14));
}

.nav a:hover,
.hero__summary-link,
.quickbar__label,
.eyebrow,
.service-orbit__eyebrow,
.service-tags .pill,
.section-links__label,
.trust-card__tag {
  color: var(--accent-strong);
}

.nav__cta,
.btn--primary {
  background: linear-gradient(135deg, #a67d2a, var(--accent-strong));
  border-color: rgba(245, 199, 95, 0.4);
  color: #16120b;
  box-shadow: 0 18px 38px rgba(129, 90, 17, 0.32);
}

.btn--ghost,
.quickbar__item,
.hero__summary,
.card,
.cta-box,
.contact-inline__item,
.form,
.service-orbit__panel,
.section-links__item,
.page-hero__meta,
.region-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(17, 19, 26, 0.96), rgba(8, 9, 14, 0.99));
  border-color: rgba(216, 176, 77, 0.16);
}

.quickbar {
  background: linear-gradient(180deg, rgba(12, 12, 18, 0.98), rgba(7, 8, 12, 0.98));
  border-bottom-color: rgba(216, 176, 77, 0.12);
}

.quickbar__item:hover,
.contact-inline__item:hover,
.section-links__item:hover,
.region-card:hover,
.card:hover {
  border-color: rgba(245, 199, 95, 0.34);
}

.hero {
  background:
    linear-gradient(180deg, rgba(5, 5, 9, 0.78), rgba(5, 5, 9, 0.96)),
    linear-gradient(135deg, rgba(10, 10, 17, 0.98), rgba(5, 5, 9, 0.98));
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 100%),
    linear-gradient(45deg, rgba(216, 176, 77, 0.04) 0 1px, transparent 1px 100%);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 9, 0.96) 0%, rgba(5, 5, 9, 0.84) 38%, rgba(5, 5, 9, 0.4) 66%, rgba(5, 5, 9, 0.72) 100%);
}

.hero__subtitle {
  color: var(--accent-strong);
}

.hero__list li::before {
  background: var(--accent-strong);
  box-shadow: 0 0 0 4px rgba(245, 199, 95, 0.12);
}

.hero__summary-list li,
.service-orbit__meta,
.stack-list li {
  border-color: rgba(216, 176, 77, 0.12);
}

.section--alt {
  background: linear-gradient(180deg, rgba(11, 11, 17, 0.98), rgba(8, 9, 14, 0.98));
  border-block-color: rgba(216, 176, 77, 0.08);
}

.section--accent {
  background: linear-gradient(180deg, rgba(15, 14, 19, 0.98), rgba(8, 8, 12, 0.98));
  border-top-color: rgba(216, 176, 77, 0.12);
}

.service-node {
  border-color: rgba(216, 176, 77, 0.22);
  background:
    radial-gradient(circle at 28% 24%, rgba(245, 199, 95, 0.26), rgba(245, 199, 95, 0.04) 30%, transparent 54%),
    radial-gradient(circle at 72% 78%, rgba(216, 176, 77, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(20, 18, 16, 0.98), rgba(10, 10, 13, 1));
}

.service-node:hover,
.service-node:focus-visible,
.service-node.is-active {
  border-color: rgba(245, 199, 95, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 20px 42px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(216, 176, 77, 0.14);
}

.service-node__icon,
.service-orbit__meta .material-symbols-outlined,
.contact-inline__icon,
.contact-inline__icon .material-symbols-outlined {
  color: var(--accent-strong);
}

.trust-card__tag {
  background: rgba(216, 176, 77, 0.12);
  border-color: rgba(216, 176, 77, 0.22);
}

.pill,
.service-tags .pill {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(216, 176, 77, 0.16);
}

.form input,
.form select,
.form textarea {
  background: rgba(8, 8, 12, 0.86);
  border-color: rgba(216, 176, 77, 0.14);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline-color: var(--accent-strong);
}

.page-hero {
  background: linear-gradient(180deg, rgba(6, 6, 10, 0.96), rgba(10, 10, 14, 0.98));
}

.footer {
  background: rgba(4, 4, 8, 0.98);
  border-top-color: rgba(216, 176, 77, 0.08);
}

.footer__brand-text {
  color: var(--text-primary);
}

.whatsapp {
  background: linear-gradient(135deg, #22e375, #0fb169);
  color: #0b1b33;
}

.whatsapp__icon {
  background: #0b1f33;
  color: #22e375;
}

.hero__summary,
.service-orbit__panel,
.page-hero__meta,
.quickbar__item,
.contact-inline__item,
.trust-card,
.section-links__item,
.region-card,
.cta-box {
  position: relative;
  overflow: hidden;
}

.hero__summary::after,
.service-orbit__panel::after,
.page-hero__meta::after,
.quickbar__item::after,
.contact-inline__item::after,
.trust-card::after,
.section-links__item::after,
.region-card::after,
.cta-box::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 12px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(245, 199, 95, 0.5);
  border-right: 1px solid rgba(245, 199, 95, 0.5);
  pointer-events: none;
}

.hero__summary::before,
.service-orbit__panel::before,
.page-hero__meta::before,
.quickbar__item::before,
.contact-inline__item::before,
.trust-card::before,
.section-links__item::before,
.region-card::before,
.cta-box::before {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 16px;
  height: 16px;
  border-left: 1px solid rgba(245, 199, 95, 0.38);
  border-bottom: 1px solid rgba(245, 199, 95, 0.38);
  pointer-events: none;
}

.hero__summary::before,
.service-orbit__panel::before,
.page-hero__meta::before {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 100%);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.88), transparent);
  inset: 0;
  width: auto;
  height: auto;
  left: 0;
  bottom: 0;
  border: 0;
}

.section__header,
.hero__grid,
.service-orbit,
.trust-grid,
.content-grid,
.page-hero__grid {
  position: relative;
}

.section__header::before,
.section__header::after,
.hero__grid::before,
.hero__grid::after,
.service-orbit::before,
.service-orbit::after,
.trust-grid::before,
.trust-grid::after,
.content-grid::before,
.content-grid::after,
.page-hero__grid::before,
.page-hero__grid::after {
  content: '+';
  position: absolute;
  color: rgba(245, 199, 95, 0.34);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  pointer-events: none;
}

.section__header::before,
.hero__grid::before,
.service-orbit::before,
.trust-grid::before,
.content-grid::before,
.page-hero__grid::before {
  left: -14px;
  top: -14px;
}

.section__header::after,
.hero__grid::after,
.service-orbit::after,
.trust-grid::after,
.content-grid::after,
.page-hero__grid::after {
  right: -14px;
  bottom: -14px;
}

@media (max-width: 768px) {
  .nav {
    background: rgba(7, 7, 12, 0.98);
    border-color: rgba(216, 176, 77, 0.18);
  }

  .hero__summary::after,
  .service-orbit__panel::after,
  .page-hero__meta::after,
  .quickbar__item::after,
  .contact-inline__item::after,
  .trust-card::after,
  .section-links__item::after,
  .region-card::after,
  .cta-box::after,
  .hero__summary::before,
  .service-orbit__panel::before,
  .page-hero__meta::before,
  .quickbar__item::before,
  .contact-inline__item::before,
  .trust-card::before,
  .section-links__item::before,
  .region-card::before,
  .cta-box::before {
    width: 12px;
    height: 12px;
  }

  .section__header::before,
  .section__header::after,
  .hero__grid::before,
  .hero__grid::after,
  .service-orbit::before,
  .service-orbit::after,
  .trust-grid::before,
  .trust-grid::after,
  .content-grid::before,
  .content-grid::after,
  .page-hero__grid::before,
  .page-hero__grid::after {
    display: none;
  }
}

/* Flat panels + section rails */
.hero,
.quickbar,
.section,
.page-hero {
  position: relative;
}

.quickbar__item,
.hero__summary,
.card,
.cta-box,
.contact-inline__item,
.form,
.service-suite__panel,
.service-tab,
.section-links__item,
.page-hero__meta,
.region-card {
  background: #0b0d12 !important;
  background-image: none !important;
  box-shadow: none !important;
  border-color: rgba(216, 176, 77, 0.1) !important;
}

.service-tab {
  border-radius: 0;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  background: #101318 !important;
  border-color: rgba(245, 199, 95, 0.22) !important;
}

.service-suite__panel,
.hero__summary,
.page-hero__meta,
.contact-inline__item,
.cta-box,
.quickbar__item,
.trust-card,
.section-links__item,
.region-card,
.form {
  border-radius: 0 !important;
}

.hero__summary::after,
.service-orbit__panel::after,
.page-hero__meta::after,
.quickbar__item::after,
.contact-inline__item::after,
.trust-card::after,
.section-links__item::after,
.region-card::after,
.cta-box::after,
.form::after,
.service-suite__panel::after,
.service-tab::after {
  right: 10px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-top: 1px solid rgba(245, 199, 95, 0.4);
  border-right: 1px solid rgba(245, 199, 95, 0.4);
}

.hero__summary::before,
.service-orbit__panel::before,
.page-hero__meta::before,
.quickbar__item::before,
.contact-inline__item::before,
.trust-card::before,
.section-links__item::before,
.region-card::before,
.cta-box::before,
.form::before,
.service-suite__panel::before,
.service-tab::before {
  left: 10px;
  bottom: 10px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(245, 199, 95, 0.28);
  border-bottom: 1px solid rgba(245, 199, 95, 0.28);
}

.hero::after,
.quickbar::after,
.section::after,
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(to right, transparent min(7vw, 88px), rgba(245, 199, 95, 0.09) min(7vw, 88px), rgba(245, 199, 95, 0.09) calc(100% - min(7vw, 88px)), transparent calc(100% - min(7vw, 88px))),
    linear-gradient(to bottom, transparent 0, transparent calc(100% - 1px), rgba(245, 199, 95, 0.08) calc(100% - 1px), rgba(245, 199, 95, 0.08) 100%),
    linear-gradient(to right, rgba(245, 199, 95, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(to right, transparent 0 calc(100% - 1px), rgba(245, 199, 95, 0.08) calc(100% - 1px) 100%);
  background-repeat: no-repeat;
  opacity: 1;
}

.hero::after,
.page-hero::after {
  background:
    linear-gradient(to right, transparent min(7vw, 88px), rgba(245, 199, 95, 0.09) min(7vw, 88px), rgba(245, 199, 95, 0.09) calc(100% - min(7vw, 88px)), transparent calc(100% - min(7vw, 88px))),
    linear-gradient(to bottom, rgba(245, 199, 95, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(to bottom, transparent 0 calc(100% - 1px), rgba(245, 199, 95, 0.08) calc(100% - 1px) 100%),
    linear-gradient(to right, rgba(245, 199, 95, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(to right, transparent 0 calc(100% - 1px), rgba(245, 199, 95, 0.08) calc(100% - 1px) 100%);
}

.hero > .container::before,
.hero > .container::after,
.quickbar > .container::before,
.quickbar > .container::after,
.section > .container::before,
.section > .container::after,
.page-hero > .container::before,
.page-hero > .container::after {
  content: '+';
  position: absolute;
  color: rgba(245, 199, 95, 0.32);
  font-size: 18px;
  line-height: 1;
  pointer-events: none;
}

.hero > .container::before,
.quickbar > .container::before,
.section > .container::before,
.page-hero > .container::before {
  left: max(-18px, -1vw);
  top: -10px;
}

.hero > .container::after,
.quickbar > .container::after,
.section > .container::after,
.page-hero > .container::after {
  right: max(-18px, -1vw);
  bottom: -10px;
}

.quickbar__item,
.service-tab,
.service-suite__panel,
.trust-card,
.region-card {
  min-height: auto;
}

@media (max-width: 768px) {
  .hero::after,
  .quickbar::after,
  .section::after,
  .page-hero::after {
    background:
      linear-gradient(to right, transparent 18px, rgba(245, 199, 95, 0.08) 18px, rgba(245, 199, 95, 0.08) calc(100% - 18px), transparent calc(100% - 18px)),
      linear-gradient(to bottom, transparent 0 calc(100% - 1px), rgba(245, 199, 95, 0.08) calc(100% - 1px) 100%);
  }

  .hero > .container::before,
  .hero > .container::after,
  .quickbar > .container::before,
  .quickbar > .container::after,
  .section > .container::before,
  .section > .container::after,
  .page-hero > .container::before,
  .page-hero > .container::after {
    font-size: 15px;
  }

  .service-tab::before,
  .service-tab::after,
  .quickbar__item::before,
  .quickbar__item::after,
  .contact-inline__item::before,
  .contact-inline__item::after,
  .service-suite__panel::before,
  .service-suite__panel::after {
    width: 10px;
    height: 10px;
  }
}

/* Service UI refinement */
.service-suite {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 26px;
  align-items: start;
}

.service-suite__nav {
  display: grid;
  gap: 10px;
}

.service-tab {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  text-align: left;
  border-radius: 18px;
  border: 1px solid rgba(216, 176, 77, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(13, 14, 20, 0.96), rgba(8, 8, 12, 0.99));
  color: var(--text-primary);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  border-color: rgba(245, 199, 95, 0.34);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
  background:
    linear-gradient(180deg, rgba(245, 199, 95, 0.06), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(18, 17, 18, 0.98), rgba(9, 9, 11, 1));
}

.service-tab:focus-visible {
  outline: 2px solid rgba(245, 199, 95, 0.5);
  outline-offset: 2px;
}

.service-tab__index {
  font-size: 0.72rem;
  line-height: 1;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.14em;
}

.service-tab__copy {
  display: grid;
  gap: 4px;
}

.service-tab__copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

.service-tab__copy span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.35;
}

.service-tab__icon {
  font-size: 1.2rem;
  color: var(--accent-strong);
}

.service-suite__panel {
  min-height: 100%;
  padding: 28px;
  display: grid;
  gap: 16px;
  align-content: start;
}

.service-suite__hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-suite__hero-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 176, 77, 0.16);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.service-suite__panel h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.service-suite__panel p {
  margin: 0;
}

.service-suite__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 176, 77, 0.12);
  color: var(--text-secondary);
}

.service-suite__meta .material-symbols-outlined {
  color: var(--accent-strong);
}

.service-suite__actions {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.service-suite__note {
  color: var(--text-muted);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .service-suite {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .service-suite {
    gap: 16px;
  }

  .service-suite__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-tab {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: start;
    gap: 10px;
    min-height: 96px;
    padding: 12px;
  }

  .service-tab__icon {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }

  .service-tab__copy {
    grid-column: 1 / -1;
  }

  .service-tab__copy strong {
    font-size: 0.96rem;
  }

  .service-tab__copy span {
    font-size: 0.8rem;
  }

  .service-suite__panel {
    padding: 22px;
  }

}

@media (max-width: 520px) {
  .service-suite__nav {
    grid-template-columns: 1fr;
  }

  .service-tab {
    min-height: auto;
    padding: 13px 14px;
  }
}

/* Section frame alignment */
.quickbar {
  display: none !important;
}

.hero::after,
.section::after,
.page-hero::after,
.hero > .container::before,
.hero > .container::after,
.section > .container::before,
.section > .container::after,
.page-hero > .container::before,
.page-hero > .container::after,
.section__header::before,
.section__header::after,
.hero__grid::before,
.hero__grid::after,
.service-orbit::before,
.service-orbit::after,
.trust-grid::before,
.trust-grid::after,
.content-grid::before,
.content-grid::after,
.page-hero__grid::before,
.page-hero__grid::after {
  content: none !important;
}

.hero::before {
  content: none;
}

.hero__overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 100%),
    linear-gradient(45deg, rgba(216, 176, 77, 0.04) 0 1px, transparent 1px 100%);
  background-size: 24px 24px, 24px 24px;
  mix-blend-mode: screen;
  opacity: 0.55;
  pointer-events: none;
}

.hero,
.section,
.page-hero {
  position: relative;
}

.section-frame {
  --frame-width: min(calc(100vw - 4rem), var(--max-width));
  --frame-corner-size: 0px;
  --frame-corner-offset: calc(var(--frame-corner-size) / 2);
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.section-frame::before {
  content: '';
  position: absolute;
  top: var(--frame-corner-offset);
  bottom: var(--frame-corner-offset);
  left: 50%;
  width: var(--frame-width);
  transform: translateX(-50%);
  border: 1px solid rgba(216, 176, 77, 0.1);
}

.section-frame__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(216, 176, 77, 0.2);
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0V15M15 7.5H0' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 15 15' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.5 0V15M15 7.5H0' stroke='black' stroke-width='2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.section-frame__corner--tl {
  top: -10px;
  left: calc(50% - (var(--frame-width) / 2) - 10px);
}

.section-frame__corner--tr {
  top: -10px;
  right: calc(50% - (var(--frame-width) / 2) - 10px);
}

.section-frame__corner--bl {
  bottom: -10px;
  left: calc(50% - (var(--frame-width) / 2) - 10px);
}

.section-frame__corner--br {
  right: calc(50% - (var(--frame-width) / 2) - 10px);
  bottom: -10px;
}

.hero:has(+ .section) .section-frame::before,
.section:has(+ .section) .section-frame::before,
.page-hero:has(+ .section) .section-frame::before {
  border-bottom: 0;
}

/* .hero:has(+ .section) .section-frame__corner--bl,
.hero:has(+ .section) .section-frame__corner--br,
.section:has(+ .section) .section-frame__corner--bl,
.section:has(+ .section) .section-frame__corner--br,
.page-hero:has(+ .section) .section-frame__corner--bl,
.page-hero:has(+ .section) .section-frame__corner--br {
  display: none;
} */

@media (max-width: 768px) {
  .container {
    width: min(calc(100vw - 2.25rem), var(--max-width));
  }

  .section-frame {
    --frame-width: min(calc(100vw - 2.25rem), var(--max-width));
  }
}

/* Content cleanup + hero simplification */
.nav__cta,
.btn--primary {
  background: linear-gradient(135deg, #b8892f, var(--accent-strong));
  border-color: rgba(245, 199, 95, 0.45);
  color: #120d04 !important;
  box-shadow: 0 18px 38px rgba(129, 90, 17, 0.28);
  text-shadow: none;
}

.hero {
  padding-top: 84px;
  padding-bottom: 64px;
}

.hero__grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 75rem;
  align-items: start;
}

.hero__content {
  max-width: 42rem;
  padding: 0;
}

.hero h1 {
  max-width: 10ch;
  margin: 14px 0 12px;
  font-size: clamp(2.75rem, 5.2vw, 4.9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
}

.hero .lede {
  max-width: 36rem;
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero__actions {
  gap: 12px;
}

.hero__subtitle,
.hero__list,
.hero__summary {
  display: none !important;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.6rem);
    max-width: 11ch;
  }

  .hero .lede {
    font-size: 1rem;
  }
}

/* Service carousel */
.service-suite {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 30px;
  align-items: stretch;
}

.service-suite__nav-wrap {
  position: relative;
}

.service-suite__cursor {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 18px;
  border: 1px solid rgba(245, 199, 95, 0.24);
  background:
    linear-gradient(180deg, rgba(245, 199, 95, 0.08), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(18, 17, 18, 0.98), rgba(9, 9, 11, 1));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.service-suite__nav {
  display: grid;
  gap: 12px;
}

.service-tab {
  position: relative;
  z-index: 1;
  min-height: 96px;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), color 220ms ease;
}

.service-tab:hover,
.service-tab:focus-visible,
.service-tab.is-active {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: translateX(10px);
}

.service-tab::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -31px;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 199, 95, 0.65), rgba(245, 199, 95, 0.08));
  opacity: 0;
  transform: translateY(-50%);
  transition: width 320ms ease, opacity 220ms ease;
}

.service-tab.is-active::after {
  width: 31px;
  opacity: 1;
}

.service-tab__index {
  color: rgba(241, 244, 251, 0.62);
}

.service-tab__copy strong {
  font-size: 1.16rem;
}

.service-tab__copy span {
  color: rgba(241, 244, 251, 0.74);
}

.service-tab__icon {
  opacity: 0.9;
}

.service-suite__panel {
  min-height: 100%;
  padding: 26px 28px;
  overflow: hidden;
}

.service-suite__panel-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 20px;
}

.service-suite__panel-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-suite__control {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(216, 176, 77, 0.18);
  background: rgba(216, 176, 77, 0.06);
  color: var(--accent-strong);
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.service-suite__control:hover,
.service-suite__control:focus-visible {
  background: rgba(245, 199, 95, 0.12);
  border-color: rgba(245, 199, 95, 0.34);
  transform: translateY(-1px);
}

.service-suite__counter {
  min-width: 54px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
}

.service-suite__viewport {
  overflow: hidden;
}

.service-suite__track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.service-slide {
  width: 100%;
  flex: 0 0 100%;
  display: grid;
  gap: 16px;
  align-content: start;
  position: relative;
  min-height: 420px;
  padding-bottom: 150px;
}

.service-slide__hero {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.service-slide__chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 176, 77, 0.16);
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.service-slide h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.service-slide p {
  margin: 0;
}

.service-slide__meta {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 176, 77, 0.12);
  color: var(--text-secondary);
}

.service-slide__meta .material-symbols-outlined {
  color: var(--accent-strong);
}

.service-slide__actions {
  display: grid;
  gap: 10px;
  padding-top: 14px;
}

.service-slide__note {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.service-slide__art {
  position: absolute;
  right: 0px;
  bottom: -18px;
  width: min(44%, 300px);
  max-width: 100%;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.service-art {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.service-art--image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  transform: translate3d(0, 0, 0);
  transform-origin: bottom right;
  filter: drop-shadow(0 20px 28px rgba(0, 0, 0, 0.34));
}

.contact-inline__item > div {
  min-width: 0;
}

.contact-inline__value {
  overflow-wrap: anywhere;
}

@media (min-width: 901px) {
  .contact-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-inline__item:nth-child(3) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .service-suite {
    grid-template-columns: 1fr;
  }

  .service-suite__nav-wrap,
  .service-suite__nav {
    display: none;
  }

  .service-suite__cursor {
    display: none;
  }

  .service-tab,
  .service-tab:hover,
  .service-tab:focus-visible,
  .service-tab.is-active {
    transform: none;
  }

  .service-tab::after,
  .service-tab.is-active::after {
    display: none;
  }

  .service-tags {
    display: none;
  }

  .service-suite__panel-head {
    margin-bottom: 16px;
  }

  .service-slide {
    min-height: 360px;
    padding-bottom: 126px;
  }

  .service-slide__art {
    width: min(54%, 240px);
    right: -4px;
    bottom: -10px;
  }
}

@media (max-width: 768px) {
  .service-suite__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .service-tab {
    grid-template-columns: auto 1fr auto;
    min-height: 90px;
    padding: 14px;
  }

  .service-suite__panel {
    padding: 22px;
  }

  .service-suite__panel-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-slide {
    min-height: 330px;
    padding-bottom: 112px;
  }

  .service-slide__art {
    width: min(60%, 220px);
    right: -2px;
    bottom: -6px;
  }
}

@media (max-width: 520px) {
  .service-suite__nav {
    grid-template-columns: 1fr;
  }
}
