  /* ─── PAGE HERO ─── */
  #page-hero {
    min-height: 420px;
    padding: 140px 5rem 6rem;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
  }

  #page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background:
      linear-gradient(140deg, rgba(253,241,240,0.85) 0%, transparent 55%),
      radial-gradient(ellipse 60% 70% at 95% 50%, rgba(240,242,248,0.7) 0%, transparent 65%);
    pointer-events: none;
  }

  /* Decoración geométrica fondo */
  #page-hero::after {
    content: '';
    position: absolute;
    right: 4rem; top: 50%;
    transform: translateY(-50%);
    width: 320px; height: 320px;
    border: 1.5px solid var(--red-border);
    border-radius: 50%;
    opacity: 0.7;
    pointer-events: none;
  }

  .page-hero-inner {
    position: relative; z-index: 2;
    max-width: 680px;
  }

  .page-hero-inner .section-tag { margin-bottom: 1.25rem; }

  .page-hero-inner h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    margin-bottom: 1.25rem;
  }

  .page-hero-inner .hero-desc { margin-bottom: 0; }

  /* Segundo círculo decorativo */
  .hero-deco-circle {
    position: absolute;
    right: 6rem; top: 50%;
    transform: translateY(-50%);
    width: 200px; height: 200px;
    border: 1px solid var(--red-border);
    border-radius: 50%;
    opacity: 0.35;
    pointer-events: none;
  }

  /* ─── SECCIONES GENERALES ─── */
  .page-section {
    padding: 6rem 5rem;
  }

  .page-section.bg-soft { background: var(--bg-soft); }
  .page-section.bg-white { background: var(--bg); }

  /* ─── QUIÉNES SOMOS — layout 2 col ─── */
  .about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-text h2 { margin-bottom: 1.5rem; }

  .about-text p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .about-text p:last-child { margin-bottom: 0; }

  /* Panel de datos destacados */
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .about-stat-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
  }

  .about-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }

  .about-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--red-border);
  }

  .about-stat-card:hover::before { transform: scaleX(1); }

  .about-stat-num {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
  }

  .about-stat-label {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .about-stat-desc {
    font-size: 0.78rem;
    color: var(--ink-muted);
    margin-top: 0.4rem;
    line-height: 1.5;
  }

  /* ─── VALORES / PILLARS ─── */
  .pillars-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .pillar-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s;
    position: relative; overflow: hidden;
  }

  .pillar-card::after {
    content: ''; position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--red);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
  }

  .pillar-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--red-border);
  }

  .pillar-card:hover::after { transform: scaleX(1); }

  .pillar-icon {
    width: 46px; height: 46px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    transition: background 0.3s;
  }

  .pillar-card:hover .pillar-icon { background: rgba(204,34,24,0.12); }

  .pillar-card h3 {
    font-size: 0.97rem; font-weight: 700;
    margin-bottom: 0.6rem; color: var(--ink);
  }

  .pillar-card p {
    font-size: 0.85rem; color: var(--ink-soft); line-height: 1.65;
  }

  /* ─── SECCIÓN SAAS & CLOUD ─── */
  .saas-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
  }

  .saas-intro h2 { margin-bottom: 1.25rem; }

  .saas-intro p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  /* Lista de ventajas SaaS */
  .saas-advantages {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .saas-adv-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.1rem 1.25rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s;
  }

  .saas-adv-item:hover {
    border-color: var(--red-border);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
  }

  .saas-adv-icon {
    width: 32px; height: 32px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 7px;
    display: flex; align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .saas-adv-content strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.2rem;
  }

  .saas-adv-content span {
    font-size: 0.8rem;
    color: var(--ink-soft);
    line-height: 1.55;
  }

  /* ─── DÓNDE ESTAMOS ─── */
  .location-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
  }

  .location-info h2 { margin-bottom: 1.25rem; }

  .location-info p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .location-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .location-item {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .location-item-icon {
    width: 34px; height: 34px;
    background: var(--red-pale);
    border: 1px solid var(--red-border);
    border-radius: 8px;
    display: flex; align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .location-item span {
    font-size: 0.875rem;
    color: var(--ink-soft);
    line-height: 1.6;
    padding-top: 0.5rem;
  }

  .location-item a {
    color: var(--red);
    text-decoration: none;
  }

  /* Mapa embed */
  .map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    height: 360px;
  }

  .map-container iframe {
    width: 100%; height: 100%;
    border: none;
    display: block;
  }

  /* ─── CTA FINAL ─── */
  .cta-band {
    padding: 5rem;
    background: var(--ink);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(204,34,24,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-band-inner {
    position: relative; z-index: 2;
    max-width: 560px;
    margin: 0 auto;
  }

  .cta-band .section-tag {
    color: rgba(255,255,255,0.5);
    justify-content: center;
  }

  .cta-band .section-tag::before { background: rgba(255,255,255,0.3); }

  .cta-band h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
  }

  .cta-band p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 2.5rem;
  }

  .cta-band .hero-ctas { justify-content: center; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    #page-hero { padding: 120px 1.5rem 4rem; }
    #page-hero::after { display: none; }
    .hero-deco-circle { display: none; }
    .page-section { padding: 4rem 1.5rem; }
    .about-layout,
    .saas-layout,
    .location-layout,
    .pillars-header { grid-template-columns: 1fr; gap: 2.5rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .cta-band { padding: 4rem 1.5rem; }
  }

  @media (max-width: 480px) {
    .about-stats { grid-template-columns: 1fr; }
  }