/* ── Hero ── */
    .pt-hero {
      background: var(--bk);
      padding: 7rem 0 5rem;
      position: relative;
      overflow: hidden;
    }
    .pt-hero-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 5%;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .pt-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      background: rgba(123,191,62,.12);
      border: 1px solid rgba(123,191,62,.3);
      border-radius: 20px;
      padding: .3rem .9rem;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--g);
      margin-bottom: 1.1rem;
    }
    .pt-hero h1 {
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: #fff;
      line-height: 1.18;
      margin: 0 0 1.1rem;
    }
    .pt-hero h1 em { font-style: normal; color: var(--g); }
    .pt-hero p {
      font-size: 1rem;
      color: rgba(255,255,255,.55);
      line-height: 1.75;
      max-width: 560px;
      margin-bottom: 2rem;
    }
    .pt-hero-logos {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem;
    }
    .pt-hero-logos img {
      display: block;
    }
    .pt-sap-logo { width: 160px; filter: brightness(0) invert(1); }
    .pt-partner-badge-img { width: 130px; }
    .pt-plus {
      font-size: 1.4rem;
      color: rgba(255,255,255,.25);
      font-weight: 300;
    }

    /* ── Secciones generales ── */
    .pt-sec {
      padding: 5rem 0;
    }
    .pt-sec.dark { background: var(--bk); }
    .pt-sec.alt  { background: #f7f8f6; }
    .pt-sec.white{ background: #fff; }

    .pt-inner {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .pt-label {
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--g);
      margin-bottom: .6rem;
    }
    .pt-title {
      font-size: clamp(1.5rem, 2.8vw, 2.1rem);
      font-weight: 700;
      line-height: 1.25;
      margin: 0 0 .9rem;
    }
    .pt-title.light { color: #fff; }
    .pt-sub {
      font-size: .95rem;
      line-height: 1.75;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 3rem;
    }
    .pt-sub.light { color: rgba(255,255,255,.52); }

    /* ── ¿Qué es SAP? (two-col) ── */
    .pt-what-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }
    .pt-what-visual {
      background: #f0f4f9;
      border-radius: 20px;
      padding: 3rem 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
    }
    .pt-stat-row {
      display: flex;
      align-items: baseline;
      gap: .6rem;
    }
    .pt-stat-n {
      font-size: 2.4rem;
      font-weight: 700;
      color: var(--bk);
      line-height: 1;
    }
    .pt-stat-l {
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.4;
    }
    .pt-stat-divider {
      height: 1px;
      background: var(--border);
    }
    .pt-what-text p {
      font-size: .95rem;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 1rem;
    }
    .pt-what-text p:last-child { margin-bottom: 0; }
    .pt-what-text strong { color: var(--bk); font-weight: 600; }

    /* ── Partnership strip ── */
    .pt-strip {
      background: linear-gradient(135deg, #0f1a08 0%, #1a3010 50%, #0a1505 100%);
      border-radius: 20px;
      padding: 3.5rem 3rem;
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      gap: 2.5rem;
      align-items: center;
    }
    .pt-strip-divider { background: rgba(255,255,255,.1); align-self: stretch; }
    .pt-strip-item { text-align: center; }
    .pt-strip-ico {
      width: 52px;
      height: 52px;
      background: rgba(123,191,62,.12);
      border: 1px solid rgba(123,191,62,.25);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
      color: var(--g);
    }
    .pt-strip-ico::before { margin-right: 0 !important; }
    .pt-strip-title {
      font-size: .88rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .4rem;
    }
    .pt-strip-sub {
      font-size: .78rem;
      color: rgba(255,255,255,.45);
      line-height: 1.55;
    }

    /* ── Soluciones que implementamos ── */
    .pt-sol-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }
    .pt-sol-card {
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 1.6rem 1.5rem;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: .6rem;
      transition: border-color .2s, box-shadow .2s, transform .2s;
      background: #fff;
    }
    .pt-sol-card:hover {
      border-color: var(--g);
      box-shadow: 0 8px 28px rgba(123,191,62,.12);
      transform: translateY(-3px);
    }
    .pt-sol-ico {
      width: 44px;
      height: 44px;
      background: var(--g3);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--g2);
    }
    .pt-sol-ico::before { margin-right: 0 !important; }
    .pt-sol-cat {
      font-size: .68rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: var(--g);
    }
    .pt-sol-name {
      font-size: .95rem;
      font-weight: 700;
      color: var(--bk);
      line-height: 1.3;
    }
    .pt-sol-desc {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
    }
    .pt-sol-link {
      font-size: .75rem;
      font-weight: 600;
      color: var(--g);
      margin-top: .4rem;
    }

    /* ── Por qué SAP (dark strip) ── */
    .pt-why-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.07);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.07);
    }
    .pt-why-item {
      background: rgba(255,255,255,.03);
      padding: 2rem 1.5rem;
      transition: background .2s;
    }
    .pt-why-item:hover { background: rgba(123,191,62,.06); }
    .pt-why-ico {
      font-size: 1.6rem;
      color: var(--g);
      margin-bottom: .9rem;
    }
    .pt-why-ico::before { margin-right: 0 !important; }
    .pt-why-title {
      font-size: .88rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: .4rem;
    }
    .pt-why-text {
      font-size: .78rem;
      color: rgba(255,255,255,.45);
      line-height: 1.6;
    }

    /* ── Certificaciones ── */
    .pt-cert-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      align-items: center;
    }
    .pt-cert-chip {
      display: inline-flex;
      align-items: center;
      gap: .55rem;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: .7rem 1.1rem;
      font-size: .8rem;
      font-weight: 600;
      color: var(--bk);
    }
    .pt-cert-ico {
      width: 28px;
      height: 28px;
      background: var(--g3);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .95rem;
      color: var(--g2);
      flex-shrink: 0;
    }
    .pt-cert-ico::before { margin-right: 0 !important; }

    /* ── CTA ── */
    .pt-cta {
      background: var(--bk);
      padding: 5.5rem 5%;
      text-align: center;
    }
    .pt-cta h2 {
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      font-weight: 700;
      color: #fff;
      margin: 0 0 .9rem;
    }
    .pt-cta h2 em { font-style: normal; color: var(--g); }
    .pt-cta p {
      font-size: .95rem;
      color: rgba(255,255,255,.5);
      max-width: 500px;
      margin: 0 auto 2.2rem;
      line-height: 1.7;
    }
    .pt-cta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    @media (max-width: 900px) {
      .pt-hero-inner { grid-template-columns: 1fr; }
      .pt-hero-logos { flex-direction: row; justify-content: flex-start; }
      .pt-what-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .pt-strip { grid-template-columns: 1fr; }
      .pt-strip-divider { display: none; }
      .pt-sol-grid { grid-template-columns: 1fr 1fr; }
      .pt-why-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      .pt-sol-grid { grid-template-columns: 1fr; }
      .pt-why-grid { grid-template-columns: 1fr; }
    }
