/* =============================================
   jorgebeltran.cloud — v3 dark
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #080808;
  --surface:  #0f0f0f;
  --surface2: #141414;
  --b:        0.5px solid rgba(255,255,255,0.07);
  --green:    #1D9E75;
  --green-hi: #4fd1a5;
  --green-dim:rgba(29,158,117,0.1);
  --red:      #E24B4A;
  --amber:    #ECAB2D;
  --t1: #eeeeee;
  --t2: rgba(255,255,255,0.68);
  --t3: rgba(255,255,255,0.42);
  --mono: 'DM Mono', monospace;
  --sans: 'DM Sans', sans-serif;
  --syne: 'Space Grotesk', sans-serif;
  --r: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--t1);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  max-width: 1440px;
  margin: 0 auto;
  border-left: var(--b);
  border-right: var(--b);
  min-height: 100vh;
}

/* ── NAV ────────────────────────────────────── */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 2.5rem;
  border-bottom: var(--b);
  position: sticky;
  top: 0;
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 100;
}

.logo {
  font-family: var(--syne);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--t1);
  text-decoration: none;
}

.logo-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(29,158,117,0.6);
  animation: pulse 2.5s infinite;
}

.logo-accent { color: var(--green); }

@keyframes pulse {
  0%, 70%, 100% { opacity: 1; }
  35% { opacity: 0.1; }
}

.nav-links { display: flex; gap: 4px; align-items: center; }

.nl {
  background: transparent;
  border: 0.5px solid rgba(255,255,255,0.09);
  color: var(--t3);
  padding: 6px 12px;
  border-radius: var(--r);
  font-family: var(--mono);
  font-size: 11px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.15s, border-color 0.15s;
}
.nl:hover { color: var(--t1); border-color: rgba(255,255,255,0.25); }

.nl-cta {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 7px 16px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.15s;
}
.nl-cta:hover { background: #0F6E56; }

/* ── HERO ───────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 53px);
  border-bottom: var(--b);
  position: relative;
  background-color: var(--bg);
  background-image: radial-gradient(rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
}

/* Glow verde sutil desde abajo-centro */
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 25%;
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(29,158,117,0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-left {
  padding: 4rem 3rem 3.5rem 2.5rem;
  border-right: var(--b);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-right {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--t3);
  margin-bottom: 2.5rem;
  background: rgba(255,255,255,0.03);
  border: var(--b);
  padding: 5px 12px 5px 8px;
  border-radius: 999px;
  width: fit-content;
}

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.5s infinite;
  box-shadow: 0 0 0 2px rgba(29,158,117,0.2), 0 0 10px rgba(29,158,117,0.45);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--syne);
  font-size: clamp(50px, 5.6vw, 86px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -3px;
  margin-bottom: 1.75rem;
}

.hl-line { display: block; color: var(--t1); }
.hl-muted { color: rgba(255,255,255,0.28); }
.hl-accent {
  display: block;
  background: linear-gradient(130deg, var(--green) 0%, var(--green-hi) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--t2);
  max-width: 400px;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--green);
  padding-left: 14px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

/* Buttons */
.btn-primary {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 13px 22px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: #0F6E56; transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--t2);
  border: var(--b);
  padding: 13px 22px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: var(--t1); }

.btn-outline {
  background: transparent;
  color: var(--t2);
  border: var(--b);
  padding: 11px 20px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 13px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s, color 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.05); color: var(--t1); }

/* Hero stats */
.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: var(--b);
  padding-top: 1.75rem;
}
.hm { padding-right: 1.25rem; }
.hm + .hm { border-left: var(--b); padding-left: 1.25rem; }
.hm-val {
  font-family: var(--syne);
  font-size: 30px;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
}
.hm-lbl { font-size: 11px; color: var(--t3); margin-top: 4px; line-height: 1.3; }

/* ── TERMINAL ───────────────────────────────── */
.terminal {
  flex: 1;
  border-bottom: var(--b);
  font-family: var(--mono);
  font-size: 11.5px;
  line-height: 1.9;
  overflow: hidden;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
}

.t-bar {
  display: flex; gap: 6px; align-items: center;
  padding: 0.9rem 1.5rem;
  border-bottom: var(--b);
  flex-shrink: 0;
}
.t-dot { width: 10px; height: 10px; border-radius: 50%; }
.t-dot.r { background: #E34850; }
.t-dot.y { background: #ECAB2D; }
.t-dot.g { background: #2CBB5D; }
.t-label { font-size: 10px; color: var(--t3); margin-left: auto; }

.t-tabs {
  display: flex;
  border-bottom: var(--b);
  flex-shrink: 0;
}
.t-tab {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--t3);
  padding: 7px 14px;
  border: none;
  background: transparent;
  cursor: default;
  border-right: var(--b);
  transition: color 0.25s, background 0.25s;
  white-space: nowrap;
}
.t-tab.active { color: var(--green); background: rgba(29,158,117,0.07); }

.t-body {
  flex: 1;
  padding: 1.2rem 1.5rem 1rem;
  overflow: hidden;
  min-height: 210px;
}

.tl { display: flex; gap: 6px; align-items: baseline; white-space: pre; }
.tl.indent { padding-left: 14px; }

.tp  { color: var(--green); flex-shrink: 0; }
.tc  { color: var(--t3); flex-shrink: 0; }
.tv  { color: rgba(255,255,255,0.72); }
.tok { color: var(--green); }
.twarn { color: var(--amber); }

.cursor {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--green);
  animation: blink-cur 1.1s step-end infinite;
  vertical-align: text-bottom;
  margin-left: 1px;
  flex-shrink: 0;
}
@keyframes blink-cur { 0%,100%{opacity:1;} 50%{opacity:0;} }

/* ── BRAND STRIP ────────────────────────────── */
.brand-strip {
  display: flex;
  border-bottom: var(--b);
  overflow-x: auto;
  scrollbar-width: none;
}
.brand-strip::-webkit-scrollbar { display: none; }

.brand-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1.1rem 2rem;
  border-right: var(--b);
  flex-shrink: 0;
  transition: background 0.15s;
  cursor: default;
  flex: 1;
  justify-content: center;
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { background: var(--surface); }

.brand-logo {
  width: 36px; height: 36px;
  object-fit: contain; flex-shrink: 0;
}

.brand-info { display: flex; flex-direction: column; }
.brand-name { font-size: 11px; font-weight: 500; color: var(--t2); line-height: 1.2; }
.brand-cert { font-family: var(--mono); font-size: 9px; color: var(--green); }

/* ── SECTIONS ───────────────────────────────── */
.section { border-bottom: var(--b); }

.section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: end;
  padding: 2.5rem 2.5rem 1.75rem;
  border-bottom: var(--b);
}

.slabel {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.8;
}

.h2 {
  font-family: var(--syne);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: var(--t1);
}

.sh-right {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.75;
  font-weight: 300;
}

/* ── PAIN GRID ──────────────────────────────── */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.pain {
  padding: 2rem 2.5rem;
  border-right: var(--b);
  border-bottom: var(--b);
  transition: background 0.15s;
  cursor: default;
}
.pain:nth-child(3n)        { border-right: none; }
.pain:nth-last-child(-n+3) { border-bottom: none; }
.pain:hover { background: var(--surface); }

.pain-label { font-family: var(--mono); font-size: 10px; color: var(--red); margin-bottom: 8px; letter-spacing: 0.5px; }
.pain-q { font-family: var(--syne); font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.3; color: var(--t1); }
.pain-a { font-size: 14px; color: var(--t2); line-height: 1.75; }
.pain-arrow { font-family: var(--mono); font-size: 10px; color: var(--green); margin-top: 12px; }

/* ── SERVICES ───────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.svc {
  padding: 2rem 2.5rem;
  border-right: var(--b);
  transition: background 0.15s;
  cursor: default;
}
.svc:last-child { border-right: none; }
.svc:hover { background: var(--surface); }
.svc.feat {
  background: var(--surface);
  border-top: 1.5px solid var(--green);
}

.svc-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.2rem; }
.svc-num { font-family: var(--mono); font-size: 10px; color: var(--t3); }
.svc-badge {
  font-size: 9px; font-weight: 500;
  background: var(--green-dim);
  color: var(--green);
  padding: 3px 9px; border-radius: 999px;
  border: 0.5px solid rgba(29,158,117,0.2);
}
.svc-icon { font-size: 22px; color: var(--green); margin-bottom: 12px; display: block; }
.svc-title { font-family: var(--syne); font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--t1); }
.svc-desc { font-size: 14px; color: var(--t2); line-height: 1.65; margin-bottom: 1.2rem; }

.svc-list { list-style: none; }
.svc-list li { font-size: 13px; color: var(--t2); padding: 6px 0; display: flex; align-items: center; gap: 8px; border-top: var(--b); }
.svc-list li:first-child { border-top: none; }
.svc-list li::before { content: '→'; color: var(--green); font-size: 11px; flex-shrink: 0; }

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; }

.tcard {
  padding: 2rem 2.5rem;
  border-right: var(--b);
  border-bottom: var(--b);
  transition: background 0.15s;
  cursor: default;
}
.tcard:hover { background: var(--surface); }
.tcard:nth-child(2n+1):not(.span2) { border-right: none; }
.tcard:nth-last-child(-n+2)        { border-bottom: none; }
.tcard.span2 { grid-column: span 2; border-right: none; background: var(--surface); }

.tcard-source { font-family: var(--mono); font-size: 9px; color: var(--t3); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.tcard-quote { font-size: 13px; line-height: 1.8; font-style: italic; color: var(--t2); margin-bottom: 1rem; }
.tcard-quote.large { font-size: 15px; }
.tcard-quote strong { font-style: normal; font-weight: 500; color: var(--green-hi); }

.tcard-person { display: flex; align-items: center; gap: 10px; }
.tp-avatar { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--syne); font-size: 10px; font-weight: 800; color: #fff; flex-shrink: 0; }
.tp-name { font-size: 12px; font-weight: 500; line-height: 1.2; color: var(--t1); }
.tp-role { font-size: 11px; color: var(--t3); }

/* ── BITÁCORA ───────────────────────────────── */
.bitacora-grid { display: grid; grid-template-columns: repeat(3, 1fr); }

.bcard {
  padding: 2rem 2.5rem;
  border-right: var(--b);
  transition: background 0.15s;
  cursor: default;
}
.bcard:last-child { border-right: none; }
.bcard:hover { background: var(--surface); }

.bcard-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.bcard-num { font-family: var(--mono); font-size: 10px; color: var(--t3); }
.bcard-tag { font-size: 9px; font-weight: 500; padding: 3px 9px; border-radius: 999px; border: var(--b); color: var(--t3); font-family: var(--mono); }
.bcard-title { font-family: var(--syne); font-size: 15px; font-weight: 700; line-height: 1.35; margin-bottom: 8px; color: var(--t1); }
.bcard-desc { font-size: 13px; color: var(--t2); line-height: 1.65; margin-bottom: 1.2rem; }
.bcard-footer { display: flex; justify-content: space-between; align-items: center; border-top: var(--b); padding-top: 12px; }
.bcard-clouds { display: flex; gap: 4px; }
.bcloud { width: 18px; height: 18px; object-fit: contain; }
.bcard-read { font-family: var(--mono); font-size: 10px; color: var(--green); text-decoration: none; }
.bcard-read:hover { text-decoration: underline; }

.bitacora-footer { padding: 1.5rem 2.5rem; border-top: var(--b); display: flex; justify-content: center; }

/* ── CTA SECTION ────────────────────────────── */
.cta-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: none;
}

.cta-left {
  padding: 4rem 2.5rem;
  border-right: var(--b);
  background-image: radial-gradient(rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.cta-section .slabel { margin-bottom: 12px; }

.cta-title {
  font-family: var(--syne);
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--t1);
}

.cta-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.85;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 380px;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  border: none;
  padding: 15px 28px;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s;
}
.wa-btn:hover { background: #1aad55; transform: translateY(-1px); }

.cta-note { font-family: var(--mono); font-size: 10px; color: var(--t3); margin-top: 16px; line-height: 2.2; }

.cta-right {
  padding: 4rem 2.5rem;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.cred {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: rgba(255,255,255,0.02);
  border: var(--b);
  border-radius: var(--r);
  transition: border-color 0.15s;
}
.cred:hover { border-color: rgba(29,158,117,0.3); }
.cred-icon { font-size: 20px; flex-shrink: 0; }
.cred-icon.green  { color: var(--green); }
.cred-icon.amber  { color: var(--amber); }
.cred-icon.red    { color: #C74634; }
.cred-icon.orange { color: #FF6A00; }
.cred-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--t1); }
.cred-text span   { font-size: 11px; color: var(--t3); }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  padding: 1.2rem 2.5rem;
  border-top: var(--b);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  flex-wrap: wrap;
  gap: 6px;
}

/* ── PRICING STRIP ──────────────────────────── */
.pricing-strip {
  border-bottom: var(--b);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pricing-main {
  padding: 3rem 2.5rem;
  border-right: var(--b);
  background-image: radial-gradient(rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 28px 28px;
}

.pricing-claim {
  font-family: var(--syne);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--t1);
  margin: 0.75rem 0 1rem;
}

.pricing-sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.75;
  max-width: 380px;
  border-left: 2px solid rgba(29,158,117,0.4);
  padding-left: 12px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  border-left: none;
}

.pcol {
  flex: 1;
  padding: 1.5rem 2.5rem;
  border-bottom: var(--b);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.pcol:last-child { border-bottom: none; }
.pcol.feat { background: var(--surface); }

.pc-label {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 0.5px;
  width: 120px;
  flex-shrink: 0;
}

.pc-price {
  font-family: var(--syne);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
  flex: 1;
}
.pc-price strong { color: var(--green); }
.pc-price span { font-family: var(--mono); font-size: 11px; color: var(--t3); font-weight: 400; }

.pc-note {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  text-align: right;
  max-width: 200px;
  line-height: 1.5;
}

/* ── VERIFY BUTTONS ─────────────────────────── */
.verify-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.verify-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: var(--r);
  border: none;
  transition: opacity 0.15s, transform 0.12s;
  white-space: nowrap;
}
.verify-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.verify-btn i { font-size: 16px; }
.verify-btn.linkedin { background: #0A66C2; }
.verify-btn.workana  { background: #7B2FBE; }

/* ── AI STRIP ───────────────────────────────── */
.ai-strip {
  border-bottom: var(--b);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--surface);
}

.ai-tag {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.ai-text {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.7;
  max-width: 560px;
}

.ai-tools {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.ai-tool {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  padding: 4px 10px;
  border: var(--b);
  border-radius: 4px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-tool i { font-size: 11px; color: var(--green); }

/* ── STATS LINK ─────────────────────────────── */
.hm-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.15s;
}
.hm-link:hover { opacity: 0.75; }
.hm-link .hm-lbl { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(255,255,255,0.2); }

/* ── FOOTER LINKS ───────────────────────────── */
.footer-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-link {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--t3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--t1); }

/* ── SCROLL FADE-IN ─────────────────────────── */
.pain, .svc, .tcard, .bcard, .cred {
  transition: opacity 0.45s ease, transform 0.45s ease, background 0.15s;
}
.fade-hidden { opacity: 0 !important; transform: translateY(14px); }

/* ── FLOATING WHATSAPP ──────────────────────── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 26px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.55); }

/* ── 900px ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 3rem 2rem 2.5rem; border-right: none; border-bottom: var(--b); }
  .hero-desc { max-width: 100%; }
  .hero-right { display: none; }
}

/* ── 768px ──────────────────────────────────── */
@media (max-width: 768px) {
  body { border-left: none; border-right: none; }
  .nav { padding: 0.85rem 1.25rem; }
  .nav-links .nl { display: none; }

  .section-header { grid-template-columns: 1fr; gap: 0.75rem; padding: 1.75rem 1.25rem 1.25rem; }

  .pain-grid { grid-template-columns: 1fr 1fr; }
  .pain { padding: 1.5rem 1.25rem; }
  .pain:nth-child(3n) { border-right: var(--b); }
  .pain:nth-child(2n) { border-right: none; }
  .pain:nth-last-child(-n+3) { border-bottom: var(--b); }
  .pain:nth-last-child(-n+2) { border-bottom: var(--b); }
  .pain:last-child { border-bottom: none; }

  .ai-strip { grid-template-columns: 1fr; }
  .ai-tools { flex-direction: row; flex-wrap: wrap; }

  .services-grid { grid-template-columns: 1fr; }
  .svc { border-right: none; border-bottom: var(--b); padding: 1.5rem 1.25rem; }
  .svc.feat { border-top: 1.5px solid var(--green); }
  .svc:last-child { border-bottom: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .tcard { border-right: none; padding: 1.5rem 1.25rem; }
  .tcard.span2 { grid-column: span 1; }
  .tcard:nth-last-child(-n+2) { border-bottom: var(--b); }
  .tcard:last-child { border-bottom: none; }

  .bitacora-grid { grid-template-columns: 1fr; }
  .bcard { border-right: none; border-bottom: var(--b); padding: 1.5rem 1.25rem; }
  .bcard:last-child { border-bottom: none; }
  .bitacora-footer { padding: 1.25rem; }

  .brand-strip { display: grid; grid-template-columns: 1fr 1fr; }
  .brand-item { border-right: var(--b); border-bottom: var(--b); flex: none; justify-content: flex-start; }
  .brand-item:nth-child(2n) { border-right: none; }
  .brand-item:nth-last-child(-n+2) { border-bottom: none; }

  .pricing-strip { grid-template-columns: 1fr; }
  .pricing-main { border-right: none; border-bottom: var(--b); padding: 2rem 1.25rem; }
  .pricing-sub { max-width: 100%; }
  .pcol { padding: 1.25rem; }
  .pc-note { display: none; }

  .cta-section { grid-template-columns: 1fr; }
  .cta-left { padding: 2.5rem 1.25rem 2rem; border-right: none; border-bottom: var(--b); }
  .cta-right { padding: 2rem 1.25rem 3rem; }

  .footer { padding: 1rem 1.25rem; flex-direction: column; gap: 5px; text-align: center; }

  .wa-float { display: flex; }
}

/* ── 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  .hero-left { padding: 2rem 1.25rem 2rem; }
  .hero-headline { font-size: clamp(38px, 11vw, 54px); letter-spacing: -2px; }
  .hm-val { font-size: 24px; }
  .wa-btn { width: 100%; justify-content: center; }
  .btn-primary, .btn-ghost { padding: 12px 18px; font-size: 13px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
