
    .page-hero .hero-cta {
      margin-top: 40px;
    }

    .page-hero .hero-cta .btn-primary {
      font-size: 15px;
      padding: 14px 32px;
    }

    /* ===== FEATURE SECTIONS ===== */
    @keyframes gridPulse {

      0%,
      100% {
        opacity: 0.03;
      }

      50% {
        opacity: 0.08;
      }
    }

    @keyframes scanLine {
      0% {
        top: -2px;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        top: calc(100% + 2px);
        opacity: 0;
      }
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0) scale(1);
      }

      50% {
        transform: translateY(-20px) scale(1.1);
      }
    }

    @keyframes barGrow {
      from {
        width: 0;
      }

      to {
        width: var(--bar-w);
      }
    }

    @keyframes pulseGlow {

      0%,
      100% {
        box-shadow: 0 0 20px rgba(0, 111, 160, 0.15);
      }

      50% {
        box-shadow: 0 0 40px rgba(0, 111, 160, 0.35);
      }
    }

    @keyframes nodeAppear {
      from {
        transform: scale(0);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes dashMove {
      to {
        stroke-dashoffset: 0;
      }
    }

    .feature-section {
      position: relative;
      padding: 120px 40px;
      overflow: hidden;
      background: var(--charcoal);
      color: var(--white);
    }

    /* Tech grid background */
    .feature-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(157, 201, 221, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 201, 221, 0.05) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridPulse 6s ease-in-out infinite;
      pointer-events: none;
    }

    /* Scan line */
    .feature-section .scan-line {
      position: absolute;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--sky), transparent);
      opacity: 0;
      pointer-events: none;
      z-index: 2;
    }

    .feature-section.in-view .scan-line {
      animation: scanLine 3s ease-in-out forwards;
    }

    /* Floating orbs */
    .feature-orb {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      filter: blur(40px);
    }

    .feature-orb--1 {
      width: 300px;
      height: 300px;
      background: rgba(0, 111, 160, 0.15);
      top: -80px;
      right: -60px;
      animation: float 8s ease-in-out infinite;
    }

    .feature-orb--2 {
      width: 200px;
      height: 200px;
      background: rgba(157, 201, 221, 0.1);
      bottom: -40px;
      left: -40px;
      animation: float 10s ease-in-out infinite 2s;
    }

    .feature-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .feature-text {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .feature-section.in-view .feature-text {
      opacity: 1;
      transform: translateY(0);
    }

    .feature-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-subtitle);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 2.5px;
      color: var(--sky);
      margin-bottom: 20px;
      padding: 6px 14px;
      border: 1px solid rgba(157, 201, 221, 0.2);
      border-radius: 100px;
      background: rgba(157, 201, 221, 0.05);
    }

    .feature-label .label-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--sky);
      animation: float 2s ease-in-out infinite;
    }

    .feature-text h2 {
      font-size: clamp(28px, 3.5vw, 42px);
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 24px;
    }

    .feature-text h2 .gradient-text {
      background: linear-gradient(135deg, var(--sky), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .feature-text .feature-lead {
      font-size: 17px;
      color: var(--silver);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .feature-text .feature-body {
      font-size: 15px;
      color: var(--gray-text);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .feature-text .feature-accent {
      font-size: 15px;
      color: var(--sky-light);
      font-style: italic;
      line-height: 1.7;
      margin-top: 20px;
      padding-left: 16px;
      border-left: 2px solid var(--blue);
    }

    /* ===== GANTT VISUAL ===== */
    .feature-visual {
      position: relative;
      opacity: 0;
      transform: translateY(40px) scale(0.95);
      transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    }

    .feature-section.in-view .feature-visual {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .gantt-mockup {
      background: rgba(0, 0, 0, 0.45);
      border: 1px solid rgba(157, 201, 221, 0.15);
      border-radius: 16px;
      overflow: hidden;
      position: relative;
      backdrop-filter: blur(10px);
      animation: pulseGlow 4s ease-in-out infinite;
      box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(0, 111, 160, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .mockup-browser-bar {
      display: flex;
      align-items: center;
      padding: 12px 16px;
      background: rgba(15, 23, 42, 0.7);
      border-bottom: 1px solid rgba(157, 201, 221, 0.08);
      gap: 12px;
    }

    .mockup-dots {
      display: flex;
      gap: 6px;
      flex-shrink: 0;
    }

    .mockup-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .mockup-dot--red {
      background: #ff5f57;
    }

    .mockup-dot--yellow {
      background: #febc2e;
    }

    .mockup-dot--green {
      background: #28c840;
    }

    .mockup-address-bar {
      flex: 1;
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.06);
      border-radius: 8px;
      padding: 6px 12px;
      font-size: 12px;
      font-family: var(--font-body);
      color: rgba(157, 201, 221, 0.5);
    }

    .mockup-address-bar svg {
      color: rgba(157, 201, 221, 0.35);
      flex-shrink: 0;
    }

    .mockup-view-toggle {
      display: flex;
      gap: 4px;
      flex-shrink: 0;
    }

    .mockup-view-btn {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 6px;
      padding: 4px 12px;
      font-size: 11px;
      font-family: var(--font-subtitle);
      color: rgba(157, 201, 221, 0.5);
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .mockup-view-btn:hover {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(157, 201, 221, 0.8);
    }

    .mockup-view-btn.active {
      background: var(--blue);
      border-color: var(--blue);
      color: #fff;
    }

    .mockup-screen {
      position: relative;
      overflow: hidden;
    }

    .mockup-screenshot {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .gantt-mockup:hover .mockup-screenshot {
      transform: scale(1.02);
    }

    .gantt-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(157, 201, 221, 0.08);
    }

    .gantt-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .gantt-dots {
      display: flex;
      gap: 6px;
    }

    .gantt-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(157, 201, 221, 0.2);
    }

    .gantt-dots span:first-child {
      background: rgba(255, 95, 87, 0.6);
    }

    .gantt-dots span:nth-child(2) {
      background: rgba(255, 189, 46, 0.6);
    }

    .gantt-dots span:nth-child(3) {
      background: rgba(40, 200, 64, 0.6);
    }

    .gantt-title {
      font-family: var(--font-subtitle);
      font-size: 12px;
      color: var(--gray-text);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .gantt-view-toggle {
      display: flex;
      gap: 4px;
    }

    .gantt-view-toggle span {
      padding: 4px 10px;
      border-radius: 4px;
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: default;
    }

    .gantt-view-toggle span.active {
      background: rgba(0, 111, 160, 0.3);
      color: var(--sky);
    }

    /* Timeline header */
    .gantt-timeline {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 0;
      margin-bottom: 8px;
    }

    .gantt-timeline-label {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: rgba(157, 201, 221, 0.3);
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 0;
    }

    .gantt-timeline-months {
      display: flex;
      justify-content: space-between;
      padding: 4px 0;
    }

    .gantt-timeline-months span {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: rgba(157, 201, 221, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    /* Gantt rows */
    .gantt-row {
      display: grid;
      grid-template-columns: 140px 1fr;
      align-items: center;
      gap: 0;
      padding: 6px 0;
      border-top: 1px solid rgba(157, 201, 221, 0.04);
    }

    .gantt-task-name {
      font-family: var(--font-subtitle);
      font-size: 12px;
      color: var(--silver);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .gantt-task-name .status-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .gantt-bar-track {
      position: relative;
      height: 24px;
      background: rgba(157, 201, 221, 0.03);
      border-radius: 4px;
    }

    .gantt-bar {
      position: absolute;
      top: 4px;
      height: 16px;
      border-radius: 3px;
      width: 0;
    }

    .feature-section.in-view .gantt-bar {
      animation: barGrow 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .gantt-bar--blue {
      background: linear-gradient(90deg, var(--blue), var(--blue-light));
      box-shadow: 0 0 12px rgba(0, 111, 160, 0.4);
    }

    .gantt-bar--sky {
      background: linear-gradient(90deg, var(--sky), var(--sky-light));
      box-shadow: 0 0 12px rgba(157, 201, 221, 0.3);
    }

    .gantt-bar--navy {
      background: linear-gradient(90deg, var(--navy), var(--blue));
      box-shadow: 0 0 12px rgba(35, 71, 109, 0.4);
    }

    .gantt-bar--accent {
      background: linear-gradient(90deg, #2d7d9a, var(--sky));
      box-shadow: 0 0 12px rgba(45, 125, 154, 0.4);
    }

    /* Dependency lines SVG overlay */
    .gantt-dependencies {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
    }

    .gantt-dependencies line {
      stroke: rgba(157, 201, 221, 0.2);
      stroke-width: 1;
      stroke-dasharray: 4 3;
    }

    /* Today marker */
    .gantt-today {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 2px;
      background: rgba(255, 95, 87, 0.5);
      left: 58%;
      z-index: 3;
    }

    .gantt-today::before {
      content: 'HOY';
      position: absolute;
      top: -18px;
      left: 50%;
      transform: translateX(-50%);
      font-family: var(--font-subtitle);
      font-size: 8px;
      color: rgba(255, 95, 87, 0.7);
      letter-spacing: 1px;
    }

    /* Baseline comparison ghost bar */
    .gantt-bar-baseline {
      position: absolute;
      top: 18px;
      height: 4px;
      border-radius: 2px;
      background: rgba(157, 201, 221, 0.12);
      border: 1px dashed rgba(157, 201, 221, 0.2);
    }

    /* Bottom stats */
    .gantt-footer {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      padding-top: 16px;
      border-top: 1px solid rgba(157, 201, 221, 0.08);
    }

    .gantt-stat {
      text-align: center;
    }

    .gantt-stat-value {
      font-family: var(--font-title);
      font-size: 20px;
      color: var(--sky);
      line-height: 1;
    }

    .gantt-stat-label {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    /* ===== ALTERNATING LAYOUT ===== */
    .feature-section--reverse .feature-inner {
      direction: rtl;
    }

    .feature-section--reverse .feature-inner>* {
      direction: ltr;
    }

    /* Light variant */
    .feature-section--light {
      background: var(--off-white);
      color: var(--charcoal);
    }

    .feature-section--light::before {
      background-image:
        linear-gradient(rgba(0, 111, 160, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 111, 160, 0.04) 1px, transparent 1px);
    }

    .feature-section--light .feature-text h2 {
      color: var(--charcoal);
    }

    .feature-section--light .feature-text .feature-lead {
      color: #4a5568;
    }

    .feature-section--light .feature-text .feature-body {
      color: var(--gray-text);
    }

    .feature-section--light .feature-text .feature-accent {
      color: var(--navy);
    }

    .feature-section--light .scan-line {
      background: linear-gradient(90deg, transparent, var(--blue), transparent);
    }

    /* ===== ENTREGABLES MOCKUP ===== */
    @keyframes checkPop {
      0% {
        transform: scale(0) rotate(-45deg);
        opacity: 0;
      }

      60% {
        transform: scale(1.3) rotate(0deg);
        opacity: 1;
      }

      100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
      }
    }

    @keyframes fileSlideIn {
      from {
        opacity: 0;
        transform: translateX(-20px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes progressFill {
      from {
        width: 0;
      }

      to {
        width: var(--progress);
      }
    }

    @keyframes ringProgress {
      from {
        stroke-dashoffset: 157;
      }

      to {
        stroke-dashoffset: var(--ring-offset);
      }
    }

    .entregables-mockup {
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(0, 111, 160, 0.1);
      border-radius: 16px;
      padding: 28px;
      position: relative;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    }

    .entregables-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(0, 111, 160, 0.08);
    }

    .entregables-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .entregables-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .entregables-icon svg {
      width: 16px;
      height: 16px;
      color: var(--white);
    }

    .entregables-header-title {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--charcoal);
      letter-spacing: 0.5px;
    }

    .entregables-header-badge {
      font-family: var(--font-subtitle);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 10px;
      border-radius: 100px;
      background: rgba(40, 200, 64, 0.1);
      color: #1a9a3e;
    }

    /* Entregable cards */
    .entregable-card {
      background: var(--white);
      border: 1px solid rgba(0, 111, 160, 0.06);
      border-radius: 10px;
      padding: 16px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 14px;
      opacity: 0;
      transform: translateX(-20px);
      transition: box-shadow var(--transition);
    }

    .feature-section.in-view .entregable-card {
      animation: fileSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .feature-section.in-view .entregable-card:nth-child(1) {
      animation-delay: 0.3s;
    }

    .feature-section.in-view .entregable-card:nth-child(2) {
      animation-delay: 0.5s;
    }

    .feature-section.in-view .entregable-card:nth-child(3) {
      animation-delay: 0.7s;
    }

    .entregable-card:hover {
      box-shadow: 0 4px 20px rgba(0, 111, 160, 0.1);
    }

    .entregable-check {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .entregable-check--done {
      background: linear-gradient(135deg, #28c840, #1a9a3e);
    }

    .entregable-check--done svg {
      width: 14px;
      height: 14px;
      color: white;
      opacity: 0;
      transform: scale(0);
    }

    .feature-section.in-view .entregable-check--done svg {
      animation: checkPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .feature-section.in-view .entregable-card:nth-child(1) .entregable-check--done svg {
      animation-delay: 0.7s;
    }

    .feature-section.in-view .entregable-card:nth-child(2) .entregable-check--done svg {
      animation-delay: 0.9s;
    }

    .entregable-check--pending {
      border: 2px solid rgba(0, 111, 160, 0.2);
      background: transparent;
    }

    .entregable-info {
      flex: 1;
      min-width: 0;
    }

    .entregable-name {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--charcoal);
      margin-bottom: 4px;
    }

    .entregable-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .entregable-meta-item {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .entregable-meta-item svg {
      width: 12px;
      height: 12px;
      opacity: 0.5;
    }

    .entregable-evidence {
      display: flex;
      gap: 4px;
      flex-shrink: 0;
    }

    .evidence-thumb {
      width: 28px;
      height: 28px;
      border-radius: 4px;
      font-family: var(--font-subtitle);
      font-size: 7px;
      text-transform: uppercase;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
    }

    .evidence-thumb--pdf {
      background: linear-gradient(135deg, #e74c3c, #c0392b);
    }

    .evidence-thumb--img {
      background: linear-gradient(135deg, var(--blue), var(--navy));
    }

    .evidence-thumb--xls {
      background: linear-gradient(135deg, #27ae60, #1e8449);
    }

    .evidence-thumb--doc {
      background: linear-gradient(135deg, #2980b9, #1a5276);
    }

    /* Progress ring */
    .entregables-progress {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(0, 111, 160, 0.06);
    }

    .progress-ring-container {
      position: relative;
      width: 56px;
      height: 56px;
      flex-shrink: 0;
    }

    .progress-ring {
      transform: rotate(-90deg);
    }

    .progress-ring-bg {
      fill: none;
      stroke: rgba(0, 111, 160, 0.08);
      stroke-width: 4;
    }

    .progress-ring-fill {
      fill: none;
      stroke: url(#progressGradient);
      stroke-width: 4;
      stroke-linecap: round;
      stroke-dasharray: 157;
      stroke-dashoffset: 157;
    }

    .feature-section.in-view .progress-ring-fill {
      animation: ringProgress 1.5s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
    }

    .progress-ring-value {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-title);
      font-size: 14px;
      color: var(--blue);
    }

    .progress-details {
      flex: 1;
    }

    .progress-details-title {
      font-family: var(--font-subtitle);
      font-size: 12px;
      color: var(--charcoal);
      margin-bottom: 2px;
    }

    .progress-details-sub {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      letter-spacing: 0.3px;
    }

    /* ===== ACUERDOS / MINUTAS MOCKUP ===== */
    @keyframes linkPulse {

      0%,
      100% {
        opacity: 0.4;
      }

      50% {
        opacity: 1;
      }
    }

    @keyframes typeIn {
      from {
        width: 0;
      }

      to {
        width: 100%;
      }
    }

    @keyframes connectionDraw {
      from {
        stroke-dashoffset: 100;
      }

      to {
        stroke-dashoffset: 0;
      }
    }

    .minutas-mockup {
      background: rgba(0, 0, 0, 0.4);
      border: 1px solid rgba(157, 201, 221, 0.12);
      border-radius: 16px;
      padding: 28px;
      position: relative;
      backdrop-filter: blur(10px);
      animation: pulseGlow 4s ease-in-out infinite;
    }

    .minutas-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(157, 201, 221, 0.08);
    }

    .minutas-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .minutas-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--sky), var(--blue));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .minutas-icon svg {
      width: 16px;
      height: 16px;
      color: var(--white);
    }

    .minutas-title {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--silver);
      letter-spacing: 0.5px;
    }

    .minutas-date {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 10px;
      border: 1px solid rgba(157, 201, 221, 0.15);
      border-radius: 4px;
    }

    /* Meeting info strip */
    .minutas-info {
      display: flex;
      gap: 20px;
      margin-bottom: 18px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(157, 201, 221, 0.06);
    }

    .minutas-info-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-subtitle);
      font-size: 11px;
      color: var(--gray-text);
    }

    .minutas-info-item svg {
      width: 14px;
      height: 14px;
      opacity: 0.5;
    }

    .minutas-info-item span {
      color: var(--silver);
    }

    /* Acuerdo rows */
    .acuerdo-row {
      display: flex;
      align-items: stretch;
      gap: 14px;
      padding: 12px 0;
      border-top: 1px solid rgba(157, 201, 221, 0.04);
      opacity: 0;
      transform: translateY(15px);
    }

    .feature-section.in-view .acuerdo-row {
      animation: fileSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .feature-section.in-view .acuerdo-row:nth-child(1) {
      animation-delay: 0.3s;
    }

    .feature-section.in-view .acuerdo-row:nth-child(2) {
      animation-delay: 0.5s;
    }

    .feature-section.in-view .acuerdo-row:nth-child(3) {
      animation-delay: 0.7s;
    }

    .acuerdo-number {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: rgba(157, 201, 221, 0.08);
      border: 1px solid rgba(157, 201, 221, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-title);
      font-size: 12px;
      color: var(--sky);
      flex-shrink: 0;
    }

    .acuerdo-content {
      flex: 1;
      min-width: 0;
    }

    .acuerdo-text {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--silver);
      margin-bottom: 6px;
      line-height: 1.4;
    }

    .acuerdo-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .acuerdo-tag {
      font-family: var(--font-subtitle);
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      padding: 3px 8px;
      border-radius: 4px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .acuerdo-tag svg {
      width: 10px;
      height: 10px;
    }

    .acuerdo-tag--person {
      background: rgba(157, 201, 221, 0.08);
      color: var(--sky);
      border: 1px solid rgba(157, 201, 221, 0.15);
    }

    .acuerdo-tag--date {
      background: rgba(255, 189, 46, 0.08);
      color: #f0b429;
      border: 1px solid rgba(255, 189, 46, 0.15);
    }

    .acuerdo-tag--link {
      background: rgba(0, 111, 160, 0.1);
      color: var(--blue-light);
      border: 1px solid rgba(0, 111, 160, 0.2);
    }

    .feature-section.in-view .acuerdo-tag--link {
      animation: linkPulse 2s ease-in-out infinite;
      animation-delay: 1.2s;
    }

    /* Connection lines */
    .acuerdo-link-arrow {
      flex-shrink: 0;
      align-self: center;
      opacity: 0;
    }

    .feature-section.in-view .acuerdo-link-arrow {
      animation: fileSlideIn 0.4s ease forwards;
      animation-delay: 1s;
    }

    .acuerdo-link-arrow svg {
      width: 20px;
      height: 20px;
      color: rgba(157, 201, 221, 0.3);
    }

    /* Linked item pill */
    .acuerdo-linked {
      flex-shrink: 0;
      align-self: center;
      background: rgba(0, 111, 160, 0.12);
      border: 1px solid rgba(0, 111, 160, 0.25);
      border-radius: 8px;
      padding: 8px 12px;
      min-width: 110px;
      opacity: 0;
      transform: translateX(10px);
    }

    .feature-section.in-view .acuerdo-linked {
      animation: fileSlideIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
      animation-delay: 1.1s;
    }

    .acuerdo-linked-type {
      font-family: var(--font-subtitle);
      font-size: 8px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--sky);
      margin-bottom: 2px;
    }

    .acuerdo-linked-name {
      font-family: var(--font-subtitle);
      font-size: 11px;
      color: var(--silver);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Download bar */
    .minutas-download {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 18px;
      padding-top: 14px;
      border-top: 1px solid rgba(157, 201, 221, 0.08);
    }

    .minutas-download-info {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .minutas-download-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: rgba(157, 201, 221, 0.08);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .minutas-download-icon svg {
      width: 14px;
      height: 14px;
      color: var(--sky);
    }

    .minutas-download-text {
      font-family: var(--font-subtitle);
      font-size: 11px;
      color: var(--gray-text);
    }

    .minutas-download-btn {
      font-family: var(--font-subtitle);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--sky);
      padding: 6px 14px;
      border: 1px solid rgba(157, 201, 221, 0.2);
      border-radius: 6px;
      background: rgba(157, 201, 221, 0.05);
      cursor: default;
      transition: all var(--transition);
    }

    .minutas-download-btn:hover {
      background: rgba(157, 201, 221, 0.12);
      border-color: rgba(157, 201, 221, 0.35);
    }

    /* ===== PERSONAS / HORAS MOCKUP ===== */
    @keyframes countUp {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes barFillH {
      from {
        width: 0;
      }

      to {
        width: var(--fill-w);
      }
    }

    @keyframes avatarPop {
      0% {
        transform: scale(0);
        opacity: 0;
      }

      70% {
        transform: scale(1.15);
        opacity: 1;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }

      100% {
        background-position: 200% 0;
      }
    }

    .personas-mockup {
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(0, 111, 160, 0.1);
      border-radius: 16px;
      padding: 28px;
      position: relative;
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    }

    .personas-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(0, 111, 160, 0.08);
    }

    .personas-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .personas-icon {
      width: 32px;
      height: 32px;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--blue), var(--navy));
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .personas-icon svg {
      width: 16px;
      height: 16px;
      color: var(--white);
    }

    .personas-header-title {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--charcoal);
      letter-spacing: 0.5px;
    }

    .personas-header-toggle {
      display: flex;
      gap: 4px;
    }

    .personas-header-toggle span {
      padding: 4px 10px;
      border-radius: 4px;
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: default;
    }

    .personas-header-toggle span.active {
      background: rgba(0, 111, 160, 0.1);
      color: var(--blue);
    }

    /* Team member rows */
    .persona-row {
      display: grid;
      grid-template-columns: 44px 1fr 80px;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-top: 1px solid rgba(0, 111, 160, 0.04);
      opacity: 0;
      transform: translateX(-20px);
    }

    .feature-section.in-view .persona-row {
      animation: fileSlideIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .feature-section.in-view .persona-row:nth-child(1) {
      animation-delay: 0.3s;
    }

    .feature-section.in-view .persona-row:nth-child(2) {
      animation-delay: 0.5s;
    }

    .feature-section.in-view .persona-row:nth-child(3) {
      animation-delay: 0.7s;
    }

    .feature-section.in-view .persona-row:nth-child(4) {
      animation-delay: 0.9s;
    }

    .persona-avatar {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-title);
      font-size: 14px;
      color: white;
      flex-shrink: 0;
      opacity: 0;
      transform: scale(0);
    }

    .feature-section.in-view .persona-avatar {
      animation: avatarPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .feature-section.in-view .persona-row:nth-child(1) .persona-avatar {
      animation-delay: 0.5s;
    }

    .feature-section.in-view .persona-row:nth-child(2) .persona-avatar {
      animation-delay: 0.7s;
    }

    .feature-section.in-view .persona-row:nth-child(3) .persona-avatar {
      animation-delay: 0.9s;
    }

    .feature-section.in-view .persona-row:nth-child(4) .persona-avatar {
      animation-delay: 1.1s;
    }

    .persona-avatar--blue {
      background: linear-gradient(135deg, var(--blue), var(--navy));
    }

    .persona-avatar--sky {
      background: linear-gradient(135deg, var(--sky), var(--blue));
    }

    .persona-avatar--teal {
      background: linear-gradient(135deg, #2d7d9a, var(--sky));
    }

    .persona-avatar--navy {
      background: linear-gradient(135deg, var(--navy), #1a3a5c);
    }

    .persona-info {
      min-width: 0;
    }

    .persona-name {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--charcoal);
      margin-bottom: 3px;
    }

    .persona-role {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 8px;
    }

    .persona-bar-container {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .persona-bar-track {
      flex: 1;
      height: 6px;
      background: rgba(0, 111, 160, 0.06);
      border-radius: 3px;
      overflow: hidden;
      position: relative;
    }

    .persona-bar-fill {
      height: 100%;
      border-radius: 3px;
      width: 0;
    }

    .feature-section.in-view .persona-bar-fill {
      animation: barFillH 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .feature-section.in-view .persona-row:nth-child(1) .persona-bar-fill {
      animation-delay: 0.6s;
    }

    .feature-section.in-view .persona-row:nth-child(2) .persona-bar-fill {
      animation-delay: 0.8s;
    }

    .feature-section.in-view .persona-row:nth-child(3) .persona-bar-fill {
      animation-delay: 1.0s;
    }

    .feature-section.in-view .persona-row:nth-child(4) .persona-bar-fill {
      animation-delay: 1.2s;
    }

    .persona-bar-fill--normal {
      background: linear-gradient(90deg, var(--blue), var(--sky));
    }

    .persona-bar-fill--high {
      background: linear-gradient(90deg, #e67e22, #e74c3c);
    }

    .persona-bar-fill--low {
      background: linear-gradient(90deg, #27ae60, #2ecc71);
    }

    .persona-bar-label {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      min-width: 36px;
      text-align: right;
      letter-spacing: 0.3px;
    }

    .persona-hours {
      text-align: right;
    }

    .persona-hours-value {
      font-family: var(--font-title);
      font-size: 16px;
      color: var(--charcoal);
      line-height: 1;
    }

    .persona-hours-label {
      font-family: var(--font-subtitle);
      font-size: 9px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 2px;
    }

    .persona-hours-diff {
      font-family: var(--font-subtitle);
      font-size: 9px;
      letter-spacing: 0.3px;
      margin-top: 2px;
    }

    .persona-hours-diff--over {
      color: #e74c3c;
    }

    .persona-hours-diff--under {
      color: #27ae60;
    }

    .persona-hours-diff--on {
      color: var(--blue);
    }

    /* Summary footer */
    .personas-summary {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(0, 111, 160, 0.06);
    }

    .personas-stat {
      text-align: center;
      padding: 12px 8px;
      border-radius: 10px;
      background: rgba(0, 111, 160, 0.03);
      border: 1px solid rgba(0, 111, 160, 0.06);
      opacity: 0;
      transform: translateY(10px);
    }

    .feature-section.in-view .personas-stat {
      animation: countUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .feature-section.in-view .personas-stat:nth-child(1) {
      animation-delay: 1s;
    }

    .feature-section.in-view .personas-stat:nth-child(2) {
      animation-delay: 1.15s;
    }

    .feature-section.in-view .personas-stat:nth-child(3) {
      animation-delay: 1.3s;
    }

    .personas-stat-value {
      font-family: var(--font-title);
      font-size: 22px;
      color: var(--blue);
      line-height: 1;
    }

    .personas-stat-label {
      font-family: var(--font-subtitle);
      font-size: 10px;
      color: var(--gray-text);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-top: 4px;
    }

    .personas-stat--alert .personas-stat-value {
      color: #e74c3c;
    }

    /* --- Portafolios Mockup --- */
    @keyframes orbitSpin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    @keyframes radarSweep {
      0% {
        transform: rotate(0deg);
        opacity: 0.6;
      }

      100% {
        transform: rotate(360deg);
        opacity: 0.6;
      }
    }

    @keyframes scaleIn {
      0% {
        transform: scale(0);
        opacity: 0;
      }

      60% {
        transform: scale(1.15);
        opacity: 1;
      }

      100% {
        transform: scale(1);
        opacity: 1;
      }
    }

    @keyframes barReveal {
      0% {
        width: 0;
      }

      100% {
        width: var(--bar-pct);
      }
    }

    .portafolios-mockup {
      background: rgba(36, 36, 36, 0.6);
      border: 1px solid rgba(157, 201, 221, 0.12);
      border-radius: 16px;
      padding: 28px;
      backdrop-filter: blur(12px);
      position: relative;
      overflow: hidden;
    }

    .portafolios-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(157, 201, 221, 0.1);
    }

    .portafolios-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .portafolios-header-left svg {
      color: var(--sky);
    }

    .portafolios-header-title {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--white);
      letter-spacing: 0.5px;
    }

    .portafolios-view-toggle {
      display: flex;
      gap: 4px;
      background: rgba(157, 201, 221, 0.08);
      border-radius: 8px;
      padding: 3px;
    }

    .portafolios-view-btn {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
      padding: 4px 10px;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .portafolios-view-btn--active {
      background: rgba(157, 201, 221, 0.15);
      color: var(--sky);
    }

    .portafolios-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-bottom: 20px;
    }

    .portafolio-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(157, 201, 221, 0.08);
      border-radius: 12px;
      padding: 18px;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.4s ease;
    }

    .in-view .portafolio-card {
      opacity: 1;
      transform: translateY(0);
    }

    .in-view .portafolio-card:nth-child(1) {
      transition-delay: 0.15s;
    }

    .in-view .portafolio-card:nth-child(2) {
      transition-delay: 0.3s;
    }

    .in-view .portafolio-card:nth-child(3) {
      transition-delay: 0.45s;
    }

    .in-view .portafolio-card:nth-child(4) {
      transition-delay: 0.6s;
    }

    .portafolio-card-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .portafolio-card-name {
      font-family: var(--font-subtitle);
      font-size: 12px;
      color: var(--white);
      letter-spacing: 0.3px;
    }

    .portafolio-card-status {
      font-family: var(--font-body);
      font-size: 9px;
      padding: 3px 8px;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }

    .portafolio-card-status--on-track {
      background: rgba(46, 204, 113, 0.15);
      color: #2ecc71;
    }

    .portafolio-card-status--at-risk {
      background: rgba(241, 196, 15, 0.15);
      color: #f1c40f;
    }

    .portafolio-card-status--delayed {
      background: rgba(231, 76, 60, 0.15);
      color: #e74c3c;
    }

    .portafolio-card-bar {
      height: 6px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 3px;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .portafolio-card-fill {
      height: 100%;
      border-radius: 3px;
      width: 0;
    }

    .in-view .portafolio-card-fill {
      animation: barReveal 1.2s ease forwards;
    }

    .in-view .portafolio-card:nth-child(1) .portafolio-card-fill {
      animation-delay: 0.4s;
    }

    .in-view .portafolio-card:nth-child(2) .portafolio-card-fill {
      animation-delay: 0.55s;
    }

    .in-view .portafolio-card:nth-child(3) .portafolio-card-fill {
      animation-delay: 0.7s;
    }

    .in-view .portafolio-card:nth-child(4) .portafolio-card-fill {
      animation-delay: 0.85s;
    }

    .portafolio-card-fill--green {
      background: linear-gradient(90deg, #2ecc71, #27ae60);
    }

    .portafolio-card-fill--yellow {
      background: linear-gradient(90deg, #f1c40f, #e67e22);
    }

    .portafolio-card-fill--red {
      background: linear-gradient(90deg, #e74c3c, #c0392b);
    }

    .portafolio-card-fill--blue {
      background: linear-gradient(90deg, var(--sky), var(--blue));
    }

    .portafolio-card-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .portafolio-card-pct {
      font-family: var(--font-subtitle);
      font-size: 18px;
      color: var(--white);
    }

    .portafolio-card-label {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.35);
    }

    .portafolio-card-projects {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.35);
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .portafolio-card-projects svg {
      width: 12px;
      height: 12px;
      color: rgba(157, 201, 221, 0.4);
    }

    /* Portafolio summary bar */
    .portafolios-summary-bar {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid rgba(157, 201, 221, 0.08);
    }

    .portafolios-kpi {
      text-align: center;
      padding: 12px 8px;
      background: rgba(157, 201, 221, 0.04);
      border-radius: 10px;
      opacity: 0;
      transform: scale(0.8);
    }

    .in-view .portafolios-kpi {
      animation: scaleIn 0.5s ease forwards;
    }

    .in-view .portafolios-kpi:nth-child(1) {
      animation-delay: 0.8s;
    }

    .in-view .portafolios-kpi:nth-child(2) {
      animation-delay: 0.95s;
    }

    .in-view .portafolios-kpi:nth-child(3) {
      animation-delay: 1.1s;
    }

    .portafolios-kpi-value {
      font-family: var(--font-subtitle);
      font-size: 22px;
      color: var(--sky);
      margin-bottom: 2px;
    }

    .portafolios-kpi-label {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(255, 255, 255, 0.4);
    }

    /* --- Adaptable Mockup --- */
    @keyframes gearSpin {
      0% {
        transform: rotate(0deg);
      }

      100% {
        transform: rotate(360deg);
      }
    }

    @keyframes slotSlide {
      0% {
        transform: translateY(-8px);
        opacity: 0;
      }

      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes toggleOn {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(22px);
      }
    }

    .adaptable-mockup {
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(0, 111, 160, 0.1);
      border-radius: 16px;
      padding: 28px;
      backdrop-filter: blur(12px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
      position: relative;
      overflow: hidden;
    }

    .adaptable-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 22px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(0, 111, 160, 0.08);
    }

    .adaptable-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .adaptable-header-left svg {
      color: var(--blue);
    }

    .adaptable-header-title {
      font-family: var(--font-subtitle);
      font-size: 13px;
      color: var(--charcoal);
      letter-spacing: 0.5px;
    }

    .adaptable-badge {
      font-family: var(--font-body);
      font-size: 9px;
      color: var(--blue);
      background: rgba(0, 111, 160, 0.08);
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }

    /* Config blocks */
    .adaptable-blocks {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }

    .adaptable-block {
      background: rgba(0, 111, 160, 0.03);
      border: 1px solid rgba(0, 111, 160, 0.07);
      border-radius: 12px;
      padding: 16px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.5s ease;
    }

    .in-view .adaptable-block {
      opacity: 1;
      transform: translateX(0);
    }

    .in-view .adaptable-block:nth-child(1) {
      transition-delay: 0.15s;
    }

    .in-view .adaptable-block:nth-child(2) {
      transition-delay: 0.3s;
    }

    .in-view .adaptable-block:nth-child(3) {
      transition-delay: 0.45s;
    }

    .in-view .adaptable-block:nth-child(4) {
      transition-delay: 0.6s;
    }

    .adaptable-block-left {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .adaptable-block-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .adaptable-block-icon svg {
      width: 18px;
      height: 18px;
    }

    .adaptable-block-icon--structure {
      background: rgba(0, 111, 160, 0.1);
      color: var(--blue);
    }

    .adaptable-block-icon--flow {
      background: rgba(157, 201, 221, 0.2);
      color: var(--navy);
    }

    .adaptable-block-icon--access {
      background: rgba(35, 71, 109, 0.1);
      color: var(--navy);
    }

    .adaptable-block-icon--fields {
      background: rgba(46, 204, 113, 0.1);
      color: #27ae60;
    }

    .adaptable-block-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .adaptable-block-name {
      font-family: var(--font-subtitle);
      font-size: 12px;
      color: var(--charcoal);
      letter-spacing: 0.2px;
    }

    .adaptable-block-desc {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(36, 36, 36, 0.5);
    }

    /* Toggle switch */
    .adaptable-toggle {
      width: 44px;
      height: 24px;
      border-radius: 12px;
      position: relative;
      flex-shrink: 0;
      transition: background 0.3s;
    }

    .adaptable-toggle--on {
      background: var(--blue);
    }

    .adaptable-toggle--off {
      background: rgba(0, 0, 0, 0.12);
    }

    .adaptable-toggle-knob {
      width: 18px;
      height: 18px;
      background: white;
      border-radius: 50%;
      position: absolute;
      top: 3px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
    }

    .adaptable-toggle--on .adaptable-toggle-knob {
      left: 23px;
    }

    .adaptable-toggle--off .adaptable-toggle-knob {
      left: 3px;
    }

    .in-view .adaptable-toggle--on .adaptable-toggle-knob {
      animation: toggleOn 0.4s ease forwards;
      animation-delay: inherit;
      left: 3px;
    }

    .in-view .adaptable-block:nth-child(1) .adaptable-toggle-knob {
      animation-delay: 0.5s;
    }

    .in-view .adaptable-block:nth-child(2) .adaptable-toggle-knob {
      animation-delay: 0.65s;
    }

    .in-view .adaptable-block:nth-child(3) .adaptable-toggle-knob {
      animation-delay: 0.8s;
    }

    .in-view .adaptable-block:nth-child(4) .adaptable-toggle-knob {
      animation-delay: 0.95s;
    }

    /* Dropdown selector */
    .adaptable-select {
      font-family: var(--font-body);
      font-size: 10px;
      color: var(--blue);
      background: rgba(0, 111, 160, 0.06);
      border: 1px solid rgba(0, 111, 160, 0.12);
      border-radius: 8px;
      padding: 5px 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      flex-shrink: 0;
    }

    .adaptable-select svg {
      width: 10px;
      height: 10px;
      color: var(--blue);
      opacity: 0.6;
    }

    /* Bottom hint */
    .adaptable-footer {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-top: 16px;
      border-top: 1px solid rgba(0, 111, 160, 0.06);
    }

    .adaptable-footer svg {
      width: 14px;
      height: 14px;
      color: var(--blue);
      opacity: 0.5;
      flex-shrink: 0;
    }

    .adaptable-footer span {
      font-family: var(--font-body);
      font-size: 10px;
      color: rgba(36, 36, 36, 0.45);
      line-height: 1.5;
    }

    /* --- CTA Section --- */
    .cta-section {
      background: var(--charcoal);
      padding: 120px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(157, 201, 221, 0.06) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .cta-inner {
      max-width: 720px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .cta-line {
      width: 48px;
      height: 2px;
      background: var(--sky);
      margin: 0 auto 32px;
      opacity: 0.6;
    }

    .cta-heading {
      font-family: var(--font-title);
      font-size: clamp(24px, 4vw, 38px);
      color: var(--white);
      line-height: 1.3;
      margin-bottom: 16px;
    }

    .cta-heading span {
      display: block;
      background: linear-gradient(135deg, var(--sky), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
    }

    .cta-buttons .btn {
      font-size: 15px;
      padding: 14px 32px;
      font-family: var(--font-subtitle);
      letter-spacing: 0.5px;
    }

    .btn-outline {
      background: transparent;
      color: var(--sky);
      border: 1px solid rgba(157, 201, 221, 0.3);
      transition: all var(--transition);
    }

    .btn-outline:hover {
      background: rgba(157, 201, 221, 0.08);
      border-color: var(--sky);
      border-radius: 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .feature-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .feature-section--reverse .feature-inner {
        direction: ltr;
      }
    }

    @media (max-width: 768px) {
      .feature-section {
        padding: 80px 20px;
      }

      .mockup-browser-bar {
        padding: 8px 12px;
      }

      .mockup-dot {
        width: 8px;
        height: 8px;
      }

      .mockup-address-bar {
        font-size: 10px;
        padding: 4px 8px;
      }

      .gantt-row {
        grid-template-columns: 100px 1fr;
      }

      .gantt-timeline {
        grid-template-columns: 100px 1fr;
      }

      .gantt-task-name {
        font-size: 10px;
      }

      .gantt-footer {
        flex-wrap: wrap;
        gap: 16px;
      }

      .entregables-mockup {
        padding: 16px;
      }

      .entregable-evidence {
        display: none;
      }

      .minutas-mockup {
        padding: 16px;
      }

      .minutas-info {
        flex-wrap: wrap;
        gap: 10px;
      }

      .acuerdo-linked {
        display: none;
      }

      .acuerdo-link-arrow {
        display: none;
      }

      .acuerdo-tags {
        gap: 4px;
      }

      .personas-mockup {
        padding: 16px;
      }

      .persona-row {
        grid-template-columns: 36px 1fr 60px;
        gap: 10px;
      }

      .persona-avatar {
        width: 36px;
        height: 36px;
        font-size: 12px;
        border-radius: 8px;
      }

      .personas-summary {
        gap: 8px;
      }

      .personas-stat {
        padding: 10px 4px;
      }

      .personas-stat-value {
        font-size: 18px;
      }

      .portafolios-mockup {
        padding: 16px;
      }

      .portafolios-grid {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .portafolio-card {
        padding: 14px;
      }

      .portafolios-summary-bar {
        gap: 8px;
      }

      .portafolios-kpi {
        padding: 10px 4px;
      }

      .portafolios-kpi-value {
        font-size: 18px;
      }

      .adaptable-mockup {
        padding: 16px;
      }

      .adaptable-block {
        padding: 12px 14px;
      }

      .adaptable-block-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
      }

      .adaptable-block-icon svg {
        width: 15px;
        height: 15px;
      }

      .adaptable-block-desc {
        display: none;
      }

      .cta-section {
        padding: 80px 20px;
      }

      .cta-buttons {
        flex-direction: column;
        gap: 12px;
      }

      .cta-buttons .btn {
        width: 100%;
      }
    }