
      :root {
        --cream: #faf7f2;
        --cream2: #f2ede4;
        --dark: #0f0d0a;
        --dark2: #1c1917;
        --orange: #e85d04;
        --orange2: #f48c06;
        --orange-pale: #fef3e2;
        --orange-dim: rgba(232, 93, 4, 0.1);
        --text: #1c1917;
        --muted: #6b6560;
        --dimmer: #b0a99f;
        --border: rgba(15, 13, 10, 0.08);
        --border2: rgba(15, 13, 10, 0.14);
        --display: "Playfair Display", serif;
        --headline: "Bebas Neue", sans-serif;
        --body: "DM Sans", sans-serif;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        background: var(--cream);
        color: var(--text);
        font-family: var(--body);
        font-size: 16px;
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* NOISE TEXTURE */
      body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 9999;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
        opacity: 0.7;
      }

      /* ─── NAV ─── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 0 56px;
        height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition:
          background 0.3s,
          box-shadow 0.3s;
      }
      nav.scrolled {
        background: rgba(250, 247, 242, 0.94);
        box-shadow: 0 1px 0 var(--border);
        backdrop-filter: blur(16px);
      }
      .nav-logo {
        font-family: var(--display);
        font-weight: 700;
        font-size: 19px;
        color: var(--dark);
        text-decoration: none;
        letter-spacing: -0.3px;
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .nav-logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      .nav-logo-mark img {
        width: 40px;
        height: 40px;
        fill: white;
      }
      .nav-links {
        display: flex;
        align-items: center;
        gap: 36px;
        list-style: none;
      }
      .nav-links a {
        font-size: 14px;
        font-weight: 500;
        color: var(--muted);
        text-decoration: none;
        transition: color 0.2s;
        letter-spacing: 0.01em;
      }
      .nav-links a:hover {
        color: var(--dark);
      }
      .nav-cta {
        padding: 10px 22px;
        border-radius: 6px;
        background: var(--orange);
        border: none;
        color: white;
        font-family: var(--body);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.22s;
        text-decoration: none;
        letter-spacing: 0.01em;
      }
      .nav-cta:hover {
        background: #c94d00;
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
      }
      .nav-mob {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        font-size: 22px;
      }

      /* ─── HERO ─── */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding: 100px 56px 60px;
        position: relative;
        overflow: hidden;
        background: var(--cream);
      }
      .hero-dec-1 {
        position: absolute;
        top: -80px;
        right: -80px;
        width: 560px;
        height: 560px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(232, 93, 4, 0.08) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .hero-dec-2 {
        position: absolute;
        bottom: -120px;
        left: -120px;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(244, 140, 6, 0.06) 0%,
          transparent 70%
        );
        pointer-events: none;
      }
      .hero-lines {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image:
          linear-gradient(rgba(15, 13, 10, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(15, 13, 10, 0.04) 1px, transparent 1px);
        background-size: 80px 80px;
        mask-image: radial-gradient(
          ellipse 60% 60% at 80% 40%,
          black 0%,
          transparent 100%
        );
        pointer-events: none;
      }
      .hero-inner {
        position: relative;
        z-index: 2;
        max-width: 1280px;
        margin: 0 auto;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 24px;
        font-family: var(--body);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--orange);
      }
      .hero-eyebrow::before {
        content: "";
        width: 28px;
        height: 1px;
        background: var(--orange);
      }
      .hero-h1 {
        font-family: var(--display);
        font-weight: 900;
        font-size: clamp(40px, 5vw, 68px);
        line-height: 1.02;
        letter-spacing: -1.5px;
        color: var(--dark);
        margin-bottom: 24px;
      }
      .hero-h1 em {
        font-style: italic;
        color: var(--orange);
      }
      .hero-sub {
        font-size: 17px;
        font-weight: 400;
        color: var(--muted);
        line-height: 1.7;
        max-width: 460px;
        margin-bottom: 40px;
      }
      .hero-cta-row {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-wrap: wrap;
      }
      .btn-orange {
        padding: 14px 30px;
        border-radius: 7px;
        background: var(--orange);
        border: 2px solid var(--orange);
        color: white;
        font-family: var(--body);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.22s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        letter-spacing: 0.01em;
      }
      .btn-orange:hover {
        background: #c94d00;
        border-color: #c94d00;
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(232, 93, 4, 0.3);
      }
      .btn-outline {
        padding: 14px 30px;
        border-radius: 7px;
        background: transparent;
        border: 2px solid var(--border2);
        color: var(--dark);
        font-family: var(--body);
        font-size: 15px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.22s;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
      }
      .btn-outline:hover {
        border-color: var(--dark);
        transform: translateY(-2px);
      }
      .hero-trust {
        display: flex;
        gap: 32px;
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--border);
      }
      .ht-item {
      }
      .ht-num {
        font-family: var(--display);
        font-size: 28px;
        font-weight: 700;
        color: var(--orange);
        letter-spacing: -0.5px;
      }
      .ht-label {
        font-size: 12px;
        color: var(--muted);
        margin-top: 2px;
      }

      /* HERO VISUAL */
      .hero-visual {
        position: relative;
      }
      .hero-card-main {
        background: var(--dark);
        border-radius: 20px;
        padding: 36px;
        box-shadow: 0 40px 80px rgba(15, 13, 10, 0.2);
        position: relative;
        overflow: hidden;
      }
      .hero-card-main::before {
        content: "";
        position: absolute;
        top: -60px;
        right: -60px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(232, 93, 4, 0.25),
          transparent 70%
        );
        pointer-events: none;
      }
      .hcm-tag {
        font-family: var(--body);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.4);
        margin-bottom: 20px;
      }
      .hcm-title {
        font-family: var(--display);
        font-size: 22px;
        font-weight: 700;
        color: white;
        margin-bottom: 6px;
        line-height: 1.2;
      }
      .hcm-sub {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 28px;
      }
      .hcm-metric {
        display: flex;
        align-items: baseline;
        gap: 6px;
        margin-bottom: 24px;
      }
      .hcm-num {
        font-family: var(--headline);
        font-size: 54px;
        color: var(--orange);
        line-height: 1;
      }
      .hcm-unit {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.5);
      }
      .hcm-bars {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
      }
      .hcm-bar-row {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .hcm-bar-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.5);
        width: 80px;
        flex-shrink: 0;
      }
      .hcm-bar-track {
        flex: 1;
        height: 6px;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 3px;
        overflow: hidden;
      }
      .hcm-bar-fill {
        height: 100%;
        border-radius: 3px;
        background: linear-gradient(90deg, var(--orange), var(--orange2));
      }
      .hcm-bar-pct {
        font-family: "JetBrains Mono", monospace;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
        width: 32px;
        text-align: right;
      }
      .hcm-pill {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 14px;
        border-radius: 20px;
        background: rgba(232, 93, 4, 0.15);
        font-size: 12px;
        font-weight: 600;
        color: var(--orange2);
      }
      .pill-dot {
        width: 6px;
        height: 6px;
        background: var(--orange2);
        border-radius: 50%;
        animation: blink 2s ease-in-out infinite;
      }
      @keyframes blink {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.3;
        }
      }

      .float-chip {
        position: absolute;
        background: var(--cream);
        border: 1px solid var(--border2);
        border-radius: 12px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 8px 32px rgba(15, 13, 10, 0.12);
      }
      .fc-1 {
        bottom: -90px;
        left: -36px;
        animation: floatA 4s ease-in-out infinite;
      }
      .fc-2 {
        top: -90px;
        right: -36px;
        animation: floatB 4s ease-in-out infinite;
      }
      @keyframes floatA {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-8px);
        }
      }
      @keyframes floatB {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-6px);
        }
      }
      .fc-ico {
        font-size: 22px;
      }
      .fc-text-n {
        font-family: var(--display);
        font-size: 15px;
        font-weight: 700;
      }
      .fc-text-l {
        font-size: 11px;
        color: var(--muted);
      }

      /* ─── SHARED ─── */
      .sec {
        padding: 100px 56px;
      }
      .sec-inner {
        max-width: 1280px;
        margin: 0 auto;
      }
      .sec-eyebrow {
        font-family: var(--body);
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--orange);
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 16px;
      }
      .sec-eyebrow::before {
        content: "";
        width: 20px;
        height: 1px;
        background: var(--orange);
      }
      .sec-title {
        font-family: var(--display);
        font-weight: 900;
        font-size: clamp(30px, 4vw, 52px);
        line-height: 1.05;
        letter-spacing: -1.5px;
        color: var(--dark);
        margin-bottom: 18px;
      }
      .sec-title em {
        font-style: italic;
        color: var(--orange);
      }
      .sec-sub {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.7;
        max-width: 560px;
      }

      /* ─── SOBRE NOSOTROS ─── */
      .about-sec {
        background: var(--cream2);
      }
      .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        margin-top: 60px;
      }
      .about-story {
        font-size: 16px;
        color: var(--muted);
        line-height: 1.8;
      }
      .about-story p + p {
        margin-top: 16px;
      }
      .about-story strong {
        color: var(--dark);
        font-weight: 600;
      }
      .about-mvv {
        display: flex;
        flex-direction: column;
        gap: 24px;
      }
      .mvv-card {
        background: var(--cream);
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 24px;
        transition: all 0.25s;
        border-left: 3px solid transparent;
      }
      .mvv-card:hover {
        border-left-color: var(--orange);
        transform: translateX(4px);
      }
      .mvv-icon {
        font-size: 24px;
        margin-bottom: 10px;
      }
      .mvv-label {
        font-family: var(--body);
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--orange);
        margin-bottom: 6px;
      }
      .mvv-text {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.65;
      }

      /* VALORES */
      .valores-row {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 40px;
      }
      .valor {
        padding: 8px 18px;
        border-radius: 30px;
        background: var(--cream);
        border: 1px solid var(--border2);
        font-size: 13px;
        font-weight: 500;
        color: var(--dark);
        display: flex;
        align-items: center;
        gap: 6px;
        transition: all 0.2s;
      }
      .valor:hover {
        border-color: var(--orange);
        color: var(--orange);
      }

      /* ─── SERVICIOS ─── */
      .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 60px;
      }
      .service-card {
        background: var(--cream2);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        transition: all 0.28s;
        position: relative;
        overflow: hidden;
        cursor: default;
      }
      .service-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--orange), var(--orange2));
        transform: scaleX(0);
        transition: transform 0.3s;
        transform-origin: left;
      }
      .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(15, 13, 10, 0.1);
      }
      .service-card:hover::after {
        transform: scaleX(1);
      }
      .sc-num {
        font-family: var(--headline);
        font-size: 48px;
        color: var(--border2);
        line-height: 1;
        margin-bottom: 16px;
      }
      .sc-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--orange-dim);
        border: 1px solid rgba(232, 93, 4, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 16px;
      }
      .sc-title {
        font-family: var(--display);
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.2px;
      }
      .sc-text {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.65;
      }
      .sc-benefits {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: 16px;
      }
      .sc-benefit {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 12px;
        color: var(--orange);
        font-weight: 500;
      }
      .sc-benefit::before {
        content: "✦";
        font-size: 9px;
      }

      /* ─── PROPUESTA DE VALOR ─── */
      .valor-sec {
        background: var(--dark);
        overflow: hidden;
        position: relative;
      }
      .valor-sec-bg {
        position: absolute;
        top: -100px;
        right: -100px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(
          circle,
          rgba(232, 93, 4, 0.12),
          transparent 70%
        );
        pointer-events: none;
      }
      .valor-sec-inner {
        position: relative;
        z-index: 2;
      }
      .valor-sec .sec-eyebrow {
        color: var(--orange2);
      }
      .valor-sec .sec-eyebrow::before {
        background: var(--orange2);
      }
      .valor-sec .sec-title {
        color: white;
      }
      .valor-sec .sec-sub {
        color: rgba(255, 255, 255, 0.5);
      }
      .why-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-top: 60px;
      }
      .why-card {
        padding: 28px 24px;
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.03);
        transition: all 0.25s;
      }
      .why-card:hover {
        border-color: rgba(232, 93, 4, 0.3);
        background: rgba(232, 93, 4, 0.05);
      }
      .why-icon {
        font-size: 28px;
        margin-bottom: 16px;
      }
      .why-title {
        font-family: var(--display);
        font-size: 17px;
        font-weight: 700;
        color: white;
        margin-bottom: 8px;
        letter-spacing: -0.2px;
      }
      .why-text {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.5);
        line-height: 1.65;
      }

      /* ─── PROCESO ─── */
      .proceso-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        margin-top: 60px;
        position: relative;
      }
      .proceso-grid::before {
        content: "";
        position: absolute;
        top: 28px;
        left: 12.5%;
        right: 12.5%;
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--border2),
          var(--border2),
          var(--border2),
          transparent
        );
      }
      .paso {
        text-align: center;
        padding: 0 12px;
      }
      .paso-num {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        margin: 0 auto 20px;
        background: var(--orange-pale);
        border: 2px solid rgba(232, 93, 4, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--headline);
        font-size: 24px;
        color: var(--orange);
        position: relative;
        z-index: 1;
      }
      .paso h3 {
        font-family: var(--display);
        font-size: 17px;
        font-weight: 700;
        margin-bottom: 8px;
        letter-spacing: -0.2px;
      }
      .paso p {
        font-size: 14px;
        color: var(--muted);
        line-height: 1.65;
      }

      /* ─── TESTIMONIOS ─── */
      .testi-sec {
        background: var(--cream2);
      }
      .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 60px;
      }
      .testi-card {
        background: var(--cream);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px;
        transition: all 0.25s;
      }
      .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 40px rgba(15, 13, 10, 0.08);
      }
      .testi-stars {
        display: flex;
        gap: 3px;
        margin-bottom: 16px;
      }
      .star {
        width: 14px;
        height: 14px;
        background: var(--orange);
        clip-path: polygon(
          50% 0%,
          61% 35%,
          98% 35%,
          68% 57%,
          79% 91%,
          50% 70%,
          21% 91%,
          32% 57%,
          2% 35%,
          39% 35%
        );
      }
      .testi-q {
        font-family: var(--display);
        font-size: 32px;
        font-weight: 900;
        color: var(--orange);
        line-height: 1;
        margin-bottom: 12px;
        font-style: italic;
      }
      .testi-text {
        font-size: 15px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 24px;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .testi-av {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--orange), var(--orange2));
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: var(--display);
        font-size: 15px;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
      }
      .testi-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--dark);
      }
      .testi-role {
        font-size: 12px;
        color: var(--dimmer);
      }

      /* ─── CONTACTO ─── */
      .contact-sec {
        overflow: hidden;
        position: relative;
      }
      .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: start;
        margin-top: 60px;
      }
      .contact-info {
      }
      .contact-info h3 {
        font-family: var(--display);
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 24px;
        letter-spacing: -0.4px;
      }
      .c-item {
        display: flex;
        gap: 14px;
        padding: 16px 0;
        border-bottom: 1px solid var(--border);
      }
      .c-item:last-child {
        border-bottom: none;
      }
      .c-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: var(--orange-dim);
        border: 1px solid rgba(232, 93, 4, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
      }
      .c-text-l {
        font-size: 11px;
        font-weight: 600;
        color: var(--dimmer);
        text-transform: uppercase;
        letter-spacing: 0.06em;
        margin-bottom: 3px;
      }
      .c-text-v {
        font-size: 14px;
        color: var(--dark);
        font-weight: 500;
      }
      .contact-form {
        background: var(--cream2);
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 36px;
      }
      .form-title {
        font-family: var(--display);
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 6px;
        letter-spacing: -0.3px;
      }
      .form-sub {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 28px;
      }
      .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-bottom: 16px;
      }
      .form-label {
        font-size: 12px;
        font-weight: 600;
        color: var(--dark);
        letter-spacing: 0.02em;
      }
      .form-input {
        padding: 12px 14px;
        background: var(--cream);
        border: 1px solid var(--border2);
        border-radius: 8px;
        color: var(--dark);
        font-family: var(--body);
        font-size: 14px;
        outline: none;
        transition: border-color 0.2s;
      }
      .form-input:focus {
        border-color: var(--orange);
      }
      .form-input::placeholder {
        color: var(--dimmer);
      }
      textarea.form-input {
        resize: vertical;
        min-height: 110px;
      }
      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }
      .btn-form {
        width: 100%;
        padding: 14px;
        border-radius: 8px;
        background: var(--orange);
        border: none;
        color: white;
        font-family: var(--body);
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.22s;
        margin-top: 8px;
      }
      .btn-form:hover {
        background: #c94d00;
        box-shadow: 0 8px 24px rgba(232, 93, 4, 0.3);
        transform: translateY(-1px);
      }

      /* CTA STRIP */
      .cta-strip {
        background: var(--orange);
        padding: 80px 56px;
        text-align: center;
        position: relative;
        overflow: hidden;
      }
      .cta-strip::before {
        content: "";
        position: absolute;
        top: -60px;
        left: -60px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.06);
        pointer-events: none;
      }
      .cta-strip::after {
        content: "";
        position: absolute;
        bottom: -80px;
        right: -80px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.06);
        pointer-events: none;
      }
      .cta-strip-inner {
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: 0 auto;
      }
      .cta-strip h2 {
        font-family: var(--display);
        font-size: clamp(28px, 4vw, 48px);
        font-weight: 900;
        color: white;
        letter-spacing: -1.5px;
        margin-bottom: 14px;
        line-height: 1.08;
      }
      .cta-strip p {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 36px;
        line-height: 1.6;
      }
      .btn-white {
        padding: 14px 32px;
        border-radius: 8px;
        background: white;
        border: none;
        color: var(--orange);
        font-family: var(--body);
        font-size: 15px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.22s;
        text-decoration: none;
        display: inline-block;
      }
      .btn-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
      }

      /* ─── FOOTER ─── */
      footer {
        background: var(--dark);
        padding: 64px 56px 32px;
      }
      .footer-inner {
        max-width: 1280px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 1.6fr 1fr 1fr 1fr;
        gap: 56px;
        margin-bottom: 48px;
      }
      .footer-brand p {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.7;
        max-width: 240px;
        margin: 16px 0 20px;
      }
      .footer-rfc {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 5px;
        font-family: "DM Sans", monospace;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.4);
      }
      .footer-col h4 {
        font-family: var(--display);
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 20px;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-col a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.4);
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-col a:hover {
        color: rgba(255, 255, 255, 0.9);
      }
      .footer-bottom {
        padding-top: 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.07);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-copy {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.3);
      }
      .footer-status {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.4);
      }
      .status-dot {
        width: 7px;
        height: 7px;
        background: #22c55e;
        border-radius: 50%;
        animation: blink 2s ease-in-out infinite;
      }

      /* SCROLL REVEAL */
      .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition:
          opacity 0.65s cubic-bezier(0.23, 1, 0.32, 1),
          transform 0.65s cubic-bezier(0.23, 1, 0.32, 1);
      }
      .reveal.visible {
        opacity: 1;
        transform: none;
      }
      .reveal-d1 {
        transition-delay: 0.1s;
      }
      .reveal-d2 {
        transition-delay: 0.2s;
      }
      .reveal-d3 {
        transition-delay: 0.3s;
      }
      .reveal-d4 {
        transition-delay: 0.4s;
      }

      /* RESPONSIVE */
      @media (max-width: 1024px) {
        .hero-inner,
        .about-grid,
        .contact-grid,
        .footer-top {
          grid-template-columns: 1fr !important;
        }
        .hero-visual,
        .hero-trust {
          margin-top: 0;
        }
        .why-grid {
          grid-template-columns: 1fr 1fr;
        }
        .services-grid {
          grid-template-columns: 1fr 1fr;
        }
        .testi-grid {
          grid-template-columns: 1fr 1fr;
        }
        nav,
        section,
        .sec,
        .hero,
        .cta-strip,
        footer {
          padding-left: 28px;
          padding-right: 28px;
        }
        .proceso-grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .proceso-grid::before {
          display: none;
        }
      }
      @media (max-width: 640px) {
        .nav-links,
        .nav-cta {
          display: none;
        }
        .nav-mob {
          display: block;
        }
        nav {
          padding: 0 20px;
        }
        .hero {
          padding: 100px 20px 60px;
        }
        .hero-h1 {
          font-size: 38px;
        }
        .float-chip{
            display: none;
        }
        .why-grid,
        .services-grid,
        .testi-grid {
          grid-template-columns: 1fr;
        }
        .proceso-grid {
          grid-template-columns: 1fr;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 32px;
        }
        .footer-brand {
          grid-column: span 2;
        }
        .sec,
        .cta-strip,
        footer {
          padding: 60px 20px;
        }
        .contact-form {
          padding: 24px;
        }
        .form-row {
          grid-template-columns: 1fr;
        }
      }
    