:root{
  --bg:#07072b;
  --bg2:#07072b;
  --card: rgba(255,255,255,.06);
  --card2: rgba(255,255,255,.06);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted2: rgba(255,255,255,.55);
  --blue:#03035A;
  --orange:#FF7A00;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
  --container: 1120px;
}

*{box-sizing:border-box}
html{
  scroll-behavior:smooth;
  /* IMPORTANTE: Compensa la altura del header fijo al navegar */
  scroll-padding-top: 90px;
  min-height:100%;
  background: linear-gradient(180deg, var(--bg), var(--bg2));
  background-color: var(--bg2);
}
body{
  margin:0;
  font-family: "Rajdhani", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
  color:var(--text);
  background: transparent;
  background-color: var(--bg2);
  min-height:100vh;
  overflow-x:hidden;
  padding-bottom: env(safe-area-inset-bottom);
}

/* Fondo fijo para evitar líneas blancas en móvil */
body::before{
  content:"";
  position:fixed;
  inset:-2px;
  z-index:-3;
  background:
    radial-gradient(900px 600px at 15% 10%, rgba(255,122,0,.12), transparent 60%),
    radial-gradient(900px 600px at 85% 20%, rgba(66,120,255,.10), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

a{color:inherit; text-decoration:none}
.container{
  width:min(var(--container), calc(100% - 40px));
  margin-inline:auto;
}

/* Ambient canvas */
#ambient{
  position:fixed;
  inset:-2px;
  width:100%;
  height:100%;
  z-index:-2;
  opacity:.55;
  transform: translateZ(0);
}

/* Scroll progress */
.scroll-progress{
  position:fixed;
  top: calc(74px + env(safe-area-inset-top));
  left:0;
  right:0;
  height:3px;
  z-index:60;
  background:rgba(255,255,255,.06);
}
.scroll-progress span{
  display:block;
  height:100%;
  width:0%;
  background:linear-gradient(90deg, rgba(255,122,0,.95), rgba(110,160,255,.95));
}

/* Header / Nav */
.header{
  position:sticky;
  top: 0;
  left:0;
  right:0;
  width:100%;
  z-index:50;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(5,5,32,.75), rgba(5,5,32,.35));
  border-bottom:1px solid rgba(255,255,255,.08);
  padding-top: env(safe-area-inset-top);
  transform: translateZ(0);
}
.nav{
  height:74px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  margin-left: -30px;
}
.brand-mark{
  width:34px;
  height:34px;
  border-radius:12px;
  background:
    radial-gradient(12px 12px at 30% 30%, rgba(255,255,255,.65), transparent 60%),
    linear-gradient(135deg, rgba(255,122,0,1), rgba(3,3,90,1));
  box-shadow: 0 12px 30px rgba(255,122,0,.18);
  position:relative;
  overflow:hidden;
}
.brand-mark:after{
  content:"";
  position:absolute;
  inset:-60%;
  background:conic-gradient(from 180deg, transparent, rgba(255,255,255,.18), transparent);
  animation: spin 10s linear infinite;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav-links a{
  color: var(--muted);
  font-weight:600;
  letter-spacing:.2px;
  font-size:16px;
  padding:10px 10px;
  border-radius:12px;
  transition: all .2s ease;
}
.nav-links a:hover{
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.nav-toggle{
  display:none;
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  cursor:pointer;
  padding: 0;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background: rgba(255,255,255,.75);
  margin:4px auto;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  letter-spacing:.2px;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
  gap:10px;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px) }
.btn:active{ transform: translateY(0px) }
.btn-sm{ padding:10px 14px; font-size:15px }

.btn-primary{
  border-color: rgba(255,122,0,.35);
  background: linear-gradient(135deg, rgba(255,122,0,1), rgba(255,122,0,.7));
  box-shadow: 0 14px 30px rgba(255,122,0,.20);
  color:#140a00;
}
.btn-primary:hover{ box-shadow: 0 18px 40px rgba(255,122,0,.26) }

.btn-ghost{
  background: rgba(255,255,255,.05);
}
.btn-ghost:hover{
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.22);
}

/* Hero */
.hero{
  padding: 72px 0 20px;
  position:relative;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items:center;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  font-weight:700;
  letter-spacing:.25px;
}
.kicker .dot{
  width:10px; height:10px;
  border-radius:99px;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,122,0,.14);
}
h1{
  margin: 14px 0 10px;
  font-size: clamp(36px, 4.6vw, 58px);
  line-height: .95;
  letter-spacing:-.6px;
}
.accent{
  background: linear-gradient(90deg, rgba(255,122,0,1), rgb(248, 249, 251));
  -webkit-background-clip: text;
  background-clip:text;
  color: transparent;
}
.lead{
  margin:0;
  font-size: 20px;
  line-height:1.25;
  color: var(--muted);
  max-width: 56ch;
}
.hero-cta{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* === Metrics & Cards Flip Logic === */
.hero-metrics{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  perspective: 1200px; /* 3D effect container */
}

/* Estilo base para Flip Cards (usado en metricas y seguridad) */
.metric-flip,
.sec-card.sec-flip {
  position: relative;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  cursor: pointer;
}

/* Metricas específicas */
.metric {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
  min-height: 165px;
}

.metric-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}

.metric-flip:hover .metric-inner,
.metric-flip:focus .metric-inner {
  transform: rotateY(180deg);
}

.metric-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.metric-front {
  transform: rotateY(0deg);
}
.metric-back {
  transform: rotateY(180deg);
  background: rgba(5,5,32,0.8);
  border-radius: 18px; /* Mantener bordes redondeados al girar */
  text-align: center;
}

.metric-value {
  font-weight:800;
  font-size:18px;
  text-align: center;
}
.metric-sub {
  color: var(--muted2);
  font-weight:600;
  font-size: 14px;
  line-height:1.2;
}

/* Hero visual */
.hero-visual{
  position:relative;
  min-height: 520px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-iso-wrap{
  width: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

/* Sections */
.section{
  padding: 72px 0;
}
.section-alt{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.00));
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.section-head{
  max-width: 78ch;
}
.section-head h2{
  margin:0;
  font-size: clamp(28px, 3.2vw, 40px);
  letter-spacing:-.4px;
  line-height:1.05;
}
.section-head p{
  margin: 10px 0 0;
  color: var(--muted);
  font-weight:650;
  font-size: 18px;
  line-height:1.25;
}

/* === Honeycomb / Panal === */
.ps-honey{
  width: min(1200px, 92vw);
  margin: 30px auto 0;
}
.ps-honey__wrap{
  display: grid;
  /* Panel más ancho y más cercano al panal */
  grid-template-columns: minmax(380px, 600px) 1.45fr;
  gap: 56px;              /* acerca visualmente el panel al panal */
  align-items: center;
}

.hex-container{
  /* Ajuste responsivo del tamaño de los hexágonos (ligeramente más grandes en desktop) */
  --hex-w: clamp(84px, 20vw, 124px);
  --hex-h: calc(var(--hex-w) * 1.10);
  --hex-gap: clamp(8px, 2vw, 12px);
  --hex-overlap: calc(var(--hex-h) * 0.22);

  display:flex;
  flex-direction:column;
  align-items:center;
  padding:26px 0;
  position: relative;
  isolation: isolate;
}

.hex-container::before{
  content:"";
  position:absolute;
  inset:-40px -60px;
  z-index:-1;
  pointer-events:none;
  background:
    radial-gradient(420px 260px at 50% 55%, rgba(56,189,248,.10), transparent 65%),
    repeating-linear-gradient(90deg, rgba(255,255,255,.045) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(255,255,255,.030) 0 1px, transparent 1px 18px);
  opacity:.28;
  filter: blur(.1px);
  -webkit-mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,.0));
          mask-image: radial-gradient(closest-side, rgba(0,0,0,1), rgba(0,0,0,.0));
}

.hex-row{
  display:flex;
  justify-content:center;
  margin-bottom: calc(var(--hex-overlap) * -1);
}
.hex-row > .hex{
  margin: 0 calc(var(--hex-gap) * 0.5);
}

.hex{
  width: var(--hex-w);
  height: var(--hex-h);
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);

  /* Tech glass: keep same shape, add depth + subtle grid reflections */
  background:
    radial-gradient(140px 120px at 35% 30%, rgba(255,255,255,.07), transparent 55%),
    radial-gradient(180px 140px at 70% 75%, rgba(56,189,248,.08), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.020));

  border:1px solid rgba(255,255,255,.11);
  box-shadow:
    0 18px 44px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.10),
    inset 0 -10px 24px rgba(0,0,0,.18);

  transition:transform .18s ease, filter .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  transform: translateZ(0);
}

.hex::before{
  content:"";
  position:absolute;
  inset:2px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  border:1px solid rgba(255,255,255,.13);
  opacity:.70;
  pointer-events:none;
}

.hex::after{
  content:"";
  position:absolute;
  inset:-1px;
  clip-path:polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  pointer-events:none;
  background:
    conic-gradient(from 220deg,
      rgba(56,189,248,.00),
      rgba(56,189,248,.22),
      rgba(255,122,0,.16),
      rgba(56,189,248,.00)
    );
  opacity:.40;
  filter: blur(.2px);
  mix-blend-mode: screen;
}

.hex-row.middle .hex:nth-child(2)::after{
  opacity:.55;
  filter: hue-rotate(-18deg) saturate(1.15);
  animation: psHexSheen 10s linear infinite;
}

  .hex:hover, .hex:focus{
    transform:translateY(-4px) scale(1.06);
    z-index:10;

    /* Orange PeopleSync glow */
    filter:
      drop-shadow(0 0 22px rgba(255,122,0,.35))
      drop-shadow(0 0 14px rgba(255,180,90,.22));

    border-color: rgba(255,122,0,.38);

    background:
      radial-gradient(160px 140px at 35% 30%, rgba(255,255,255,.10), transparent 58%),
      radial-gradient(200px 160px at 70% 75%, rgba(255,122,0,.22), transparent 62%),
      linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));

    box-shadow:
      0 24px 60px rgba(0,0,0,.30),
      0 0 0 1px rgba(255,122,0,.35),
      inset 0 1px 0 rgba(255,255,255,.14);

    outline:none;
  }

  .hex:hover::after, .hex:focus::after {
    opacity: 0.8;
    animation: psHexSheen 2s linear infinite;
  }
/* Acento central */
/* Acento central — DEFAULT NARANJO PeopleSync */
.hex-row.middle .hex:nth-child(2){
  background:
    radial-gradient(160px 140px at 35% 30%, rgba(255,255,255,.12), transparent 58%),
    linear-gradient(180deg, rgba(255,122,0,.95), rgba(255,170,60,.75));
  border-color: rgba(255,122,0,.45);
  box-shadow:
    0 22px 56px rgba(0,0,0,.26),
    0 0 0 1px rgba(255,122,0,.38),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* Acento central — HOVER AZUL PeopleSync (corporativo) */
.hex-row.middle .hex:nth-child(2):hover,
.hex-row.middle .hex:nth-child(2):focus{
  background:
    radial-gradient(160px 140px at 35% 30%, rgba(255,255,255,.10), transparent 58%),
    linear-gradient(180deg, rgba(3,3,90,.95), rgba(40,60,160,.80));

  border-color: rgba(80,110,220,.55);

  filter:
    drop-shadow(0 0 26px rgba(40,80,220,.45))
    drop-shadow(0 0 16px rgba(90,130,255,.28));

  box-shadow:
    0 26px 64px rgba(0,0,0,.32),
    0 0 0 1px rgba(80,110,220,.40),
    inset 0 1px 0 rgba(255,255,255,.18);
}

.hex-inner{ display:flex; flex-direction:column; align-items:center; justify-content:center; padding:14px; width:100%; }
.hex-ico{ color:rgba(255,255,255,.92); }
.hex-ico svg{ width:32px; height:32px; }
.hex-label{
  position:absolute !important;
  width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap;
}
.hex-plus{ font-size:46px; line-height:1; font-weight:800; color:rgba(255,255,255,.95); }

/* Panel lateral del panal */
.ps-honey__panel{
  /* Igualar tono con los cards/chips inferiores (APIs / CI-CD) */
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:42px;

  /* Más crecimiento horizontal, menos vertical */
  padding: 26px 24px;
  max-width: 760px;
  min-height: auto;

  box-shadow: 0 22px 60px rgba(0,0,0,.25);
  backdrop-filter: blur(10px);
  position:relative;
}

.ps-honey__kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color:rgba(255,255,255,.78);
  font-weight:600;
  font-size:13px;
  margin-bottom:14px;
}
.ps-honey__dot{ width:8px; height:8px; border-radius:999px; background:#3aa3ff; box-shadow:0 0 0 4px rgba(70,150,255,.14); }
.ps-honey__title{
  margin:0 0 10px;
  font-size: clamp(18px, 2.6vw, 30px); /* más pequeño y más balanceado */
  font-weight:800;
  line-height:1.08;
  color:rgba(255,255,255,.94);
}
.ps-honey__desc{ margin:0 0 18px; color:rgba(255,255,255,.72); font-size:15px; line-height:1.75; font-weight:300; max-width:70ch; }

.ps-honey__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  background: linear-gradient(135deg, #FF7A00, #FF9A2F);
  color:#140a00;
  font-weight:900;
  text-decoration:none;
  letter-spacing:.2px;
  box-shadow:
    0 14px 34px rgba(255,122,0,.35),
    inset 0 1px 0 rgba(255,255,255,.35);
  border:1px solid rgba(255,122,0,.55);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.ps-honey__cta:hover{
  transform: translateY(-2px);
  filter: brightness(1.05) saturate(1.05);
  box-shadow:
    0 18px 44px rgba(255,122,0,.45),
    inset 0 1px 0 rgba(255,255,255,.45);
}

.ps-honey__cta:active{
  transform: translateY(0);
  filter: brightness(.98);
  box-shadow:
    0 10px 24px rgba(255,122,0,.30),
    inset 0 2px 6px rgba(0,0,0,.25);
}

.ps-honey__content.is-fade{ opacity:0; transform:translateY(8px); transition:all .16s ease; }
.ps-honey__content.is-show{ opacity:1; transform:translateY(0); transition:all .16s ease; }

/* Tooltip disabled (we use the right panel only) */
/* Tooltip disabled (we use the right panel only) */
.ps-tooltip{ display:none !important; }

/* Desktop: Panel LEFT, Panal (hex) RIGHT */
.ps-honey__wrap{
  /* Más separación horizontal entre panel y panal */
  grid-template-columns: minmax(420px, 760px) 1.0fr;
  grid-auto-flow: column;
  gap: 72px;
}

.ps-honey__panel{ 
  grid-column: 1; 
  justify-self: end;

  /* Panel más desplazado hacia la izquierda */
  margin-right: 160px;
}

.hex-container{ 
  grid-column: 2;
  transform: scale(1.076);
  transform-origin: center left;

  /* Desplazar el panal hacia la izquierda */
  margin-left: -370px;
}

/* Custom / Two Col */
.two-col{
  margin-top: 24px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
  align-items:start;
}
.stack{ display:flex; flex-direction:column; gap: 12px }
.feature{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px 16px;
}
.feature h3{ margin:0; font-size:22px }
.feature p{ margin: 8px 0 0; color: var(--muted); font-weight:650; line-height:1.2 }

.dev-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}
.dev-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  padding-bottom: 12px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.dev-title{ font-weight:900; font-size:18px }
.dev-badge{
  font-weight:900;
  font-size:13px;
  padding: 6px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,122,0,.30);
  background: rgba(255,122,0,.12);
  color: rgba(255,205,160,.95);
}
.tag-grid{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.tag{
  display:inline-flex;
  padding: 10px 12px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  font-weight:850;
  color: rgba(240,245,255,.90);
  position: relative;
  cursor: pointer;
}
/* Tooltip for Tags */
.tag::after{
  content: attr(data-desc);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: 240px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(188, 96, 5, 0.95);
  border: 1px solid rgba(255,122,0,.25);
  box-shadow: 0 18px 44px rgba(236, 241, 238, 0.45);
  color: rgba(255,255,255,.92);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.25;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 20;
}
.tag:hover::after{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 720px){
  .tag::after{ display:none; }
}
.dev-foot{
  margin-top: 14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Security Grid */
.grid-4{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  perspective: 1200px;
}

.sec-card{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
  min-height: 220px;
  display:flex;
  flex-direction:column;
}

.sec-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.2,.7,.2,1);
}

.sec-flip:hover .sec-inner, .sec-flip:focus .sec-inner{
  transform: rotateY(180deg);
}

.sec-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}

.sec-front{
  align-items: flex-start;
  justify-content: flex-start;
  transform: rotateY(0deg);
}
.sec-back{
  transform: rotateY(180deg);
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(5,5,32,0.9);
  border-radius: var(--radius);
  padding: 10px;
}

.sec-iso{
  display:block;
  width: 46px; height: 46px;
  margin-bottom: 12px;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.35));
}
.sec-card h3{ margin:0; font-size:20px }
.sec-card p{ margin: 8px 0 0; color: var(--muted); font-weight:650; line-height:1.2 }

/* Process Steps */
.steps{
  margin-top: 22px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.step{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  padding: 16px;
  position:relative;
  overflow:hidden;
}
.step-n{
  font-weight:900;
  color: rgba(255,122,0,.95);
  letter-spacing:.5px;
  font-size:14px;
}
.step-b h3{ margin: 10px 0 0; font-size:20px }
.step-b p{ margin: 8px 0 0; color: var(--muted); font-weight:650; line-height:1.2 }

.quote{
  margin-top: 18px;
  border-radius: 24px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  padding: 18px;
}
.quote p{ margin:0; font-weight:800; font-size:18px; line-height:1.2 }
.quote-by{ margin-top:10px; color: var(--muted2); font-weight:800 }

/* Contact */
.contact-grid{
  margin-top: 22px;
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 14px;
}
.form{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  padding: 16px;
  box-shadow: 0 22px 60px rgba(0,0,0,.25);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px }
.field{ display:flex; flex-direction:column; gap:6px; margin-bottom: 10px }
label{ font-weight:900; color: rgba(240,245,255,.92) }
input, select, textarea{
  font-family: inherit; font-size: 16px; padding: 12px 12px;
  border-radius: 14px; border:1px solid rgba(255,255,255,.12);
  background: rgba(5,5,32,.35); color: rgba(255,255,255,.92); outline:none;
}
input::placeholder, textarea::placeholder{ color: rgba(255,255,255,.45) }
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,122,0,.35);
  box-shadow: 0 0 0 6px rgba(255,122,0,.10);
}
.form-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 6px }
.form-note{ margin: 12px 0 0; color: var(--muted2); font-weight:650; line-height:1.2 }
.contact-side{ display:flex; flex-direction:column; gap: 12px }
.side-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  padding: 16px;
}
.side-title{ font-weight:900; font-size:18px }
.side-list{ margin: 10px 0 0; padding-left: 18px; color: rgba(255,255,255,.84); font-weight:650 }
.side-list li{ margin: 6px 0 }
.side-lines{ margin-top: 10px; display:flex; flex-direction:column; gap:8px; font-weight:800; color: rgba(255,255,255,.84) }
.muted{ color: var(--muted2) }
.side-cta{ margin-top: 12px }

.footer{
  margin-top: 30px; padding: 18px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex; align-items:flex-start; justify-content:space-between; gap:16px; flex-wrap:wrap;
}
.footer-right{ display:flex; gap:14px; flex-wrap:wrap; color: var(--muted); font-weight:850 }
.footer-right a:hover{ color: var(--text) }

/* Reveal Animation */
.reveal{ opacity:0; transform: translateY(12px); transition: opacity .6s ease, transform .6s ease }
.reveal.is-visible{ opacity:1; transform: translateY(0) }

/* Brand Sizing */
.brand-logo{ display:none; width:auto; object-fit:contain; filter: drop-shadow(0 10px 20px rgba(0,0,0,.35)) }
.brand-wordmark{ height:300px; max-width:320px; transform: translateY(8px) }
.brand-isotipo{ height:36px; width:36px; transform: translateY(1px) }
@media (max-width: 980px){
  .brand{ margin-left:-16px }
  .brand .brand-isotipo{ display:block !important }
  .brand .brand-wordmark{ display:none !important }
}
@media (min-width: 981px){
  .brand .brand-wordmark{ display:block !important }
  .brand .brand-isotipo{ display:none !important }
}

/* 3D Iso Animation */
.iso-3d{
  height: 480px; width: 480px; display:block;
  transform-style: preserve-3d; will-change: transform, filter;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.35)) drop-shadow(0 0 18px rgba(255,122,0,.22));
  animation: isoFloat3d 4.8s ease-in-out infinite;
}
@keyframes isoFloat3d{
  0%{ transform: perspective(900px) rotateX(8deg) rotateY(-18deg) translateY(0px) }
  50%{ transform: perspective(900px) rotateX(-10deg) rotateY(18deg) translateY(6px) }
  100%{ transform: perspective(900px) rotateX(8deg) rotateY(-18deg) translateY(0px) }
}
@media (prefers-reduced-motion: reduce){ .iso-3d{ animation: none } }
@keyframes spin { to { transform: rotate(360deg) } }

/* === MEDIA QUERIES === */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ min-height: 400px; }
  .iso-3d{ width: 320px; height: 320px; }
  .hero-metrics{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .grid-4{ grid-template-columns: 1fr 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  
  /* Ajuste Honeycomb Tablet */
  .ps-honey__wrap{ grid-template-columns:1fr; gap:58px; }
  .ps-honey__panel{ padding:22px; }
}

@media (max-width: 720px){
  /* Mobile Nav */
  .nav-toggle{ display:block }
  .nav-links{
    position: absolute;
    top: calc(74px + env(safe-area-inset-top));
    left: 20px; right: 20px;
    display:none;
    flex-direction:column; align-items:stretch; gap:8px;
    padding: 12px;
    border-radius: 18px;
    border:1px solid rgba(255,255,255,.10);
    background: rgba(5,5,32,.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
  }
  .nav-links.is-open{ display:flex }
  .nav-links a{ padding: 12px 12px; text-align: center; }

  /* Mobile Layout */
  .container{ width: min(var(--container), calc(100% - 28px)); }
  .section{ padding: 46px 0; }
  .hero{ padding: 44px 0 10px; }
  h1{ line-height: 1.02; letter-spacing: -.3px; }
  .lead{ font-size: 17px; max-width: 44ch; }
  .hero-visual{ min-height: 280px; }
  .iso-3d{ width: 240px; height: 240px; }
  .hero-cta .btn{ width: 100%; }

  /* Grids Mobile */
  .grid-4{ grid-template-columns: 1fr; }
  .tag-grid{ grid-template-columns: 1fr; }
  .tag{ justify-content: center; }
  .form-row{ grid-template-columns: 1fr }
  .steps{ grid-template-columns: 1fr }

  /* === Honeycomb Mobile === */
  .hex-container{
    padding: 12px 0;
    --hex-w: 92px;
  }
  .ps-honey__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .ps-honey__panel{ text-align:right; order: 2; }
  .ps-honey__kicker{ justify-content:center }
  .ps-tooltip{ display:none !important } /* No tooltip en móvil */
}
@keyframes psHexSheen{
  0%{ transform: rotate(0deg) }
  100%{ transform: rotate(360deg) }
}