:root{
      /* ============================================================
         COLORES INSTITUCIONALES EXTRAÍDOS DEL LOGO
         ============================================================ */
      --turquoise: #44C6C5;
      --turquoise-dark: #27AAA9;
      --coral: #FC6B6C;
      --coral-dark: #E8575D;

      --ink: #121C2C;
      --ink-2: #263A4F;
      --slate: #5C6774;
      --muted: #748091;
      --line: #E7EBEF;
      --soft: #F6F8FA;
      --white: #FFFFFF;

      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 32px;
      --shadow: 0 18px 55px rgba(18,28,44,.10);
      --shadow-soft: 0 12px 35px rgba(18,28,44,.07);

      --container: 1180px;
    }

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

    html{
      scroll-behavior:smooth;
    }

    body{
      font-family:"Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color:var(--ink);
      background:var(--white);
      line-height:1.6;
      overflow-x:hidden;
    }

    img{
      max-width:100%;
      display:block;
    }

    a{
      color:inherit;
      text-decoration:none;
    }

    button,
    input,
    textarea,
    select{
      font:inherit;
    }

    button{
      cursor:pointer;
    }

    section{
      scroll-margin-top:88px;
    }

    .container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }

    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(68,198,197,.12);
      color:var(--turquoise-dark);
      font-size:.78rem;
      font-weight:800;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--coral);
      box-shadow:0 0 0 5px rgba(252,107,108,.12);
    }

    .section-heading{
      max-width:760px;
      margin-bottom:52px;
    }

    .section-heading.center{
      text-align:center;
      margin-left:auto;
      margin-right:auto;
    }

    .section-heading h2{
      margin-top:14px;
      font-size:clamp(2rem,4vw,3.35rem);
      line-height:1.08;
      letter-spacing:-.04em;
    }

    .section-heading p{
      margin-top:18px;
      color:var(--slate);
      font-size:1.05rem;
      max-width:680px;
    }

    .section-heading.center p{
      margin-left:auto;
      margin-right:auto;
    }

    .text-gradient{
      background:linear-gradient(100deg,var(--turquoise-dark),var(--coral));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    /* ============================================================
       BOTONES
       ============================================================ */
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:50px;
      padding:0 22px;
      border:1px solid transparent;
      border-radius:999px;
      font-weight:800;
      transition:.25s ease;
      white-space:nowrap;
    }

    .btn svg{
      width:20px;
      height:20px;
    }

    .btn-primary{
      background:var(--coral);
      color:white;
      box-shadow:0 12px 30px rgba(252,107,108,.24);
    }

    .btn-primary:hover{
      transform:translateY(-2px);
      background:var(--coral-dark);
      box-shadow:0 16px 35px rgba(252,107,108,.30);
    }

    .btn-secondary{
      background:white;
      color:var(--ink);
      border-color:var(--line);
    }

    .btn-secondary:hover{
      transform:translateY(-2px);
      border-color:rgba(68,198,197,.55);
      color:var(--turquoise-dark);
      box-shadow:var(--shadow-soft);
    }

    .btn-dark{
      background:var(--ink);
      color:white;
    }

    .btn-dark:hover{
      background:var(--ink-2);
      transform:translateY(-2px);
    }

    /* ============================================================
       HEADER
       ============================================================ */
    .site-header{
      position:fixed;
      top:0;
      left:0;
      right:0;
      z-index:1000;
      border-bottom:1px solid transparent;
      transition:.25s ease;
    }

    .site-header.scrolled{
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(16px);
      border-bottom-color:var(--line);
      box-shadow:0 8px 25px rgba(18,28,44,.05);
    }

    .nav{
      min-height:82px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      flex-shrink:0;
    }

    .brand-logo-shell{
    width:68px;
    height:68px;
    overflow:hidden;
    border-radius:16px;
    background:white;
    display:grid;
    place-items:center;
    flex:0 0 68px;
    padding:4px;
  }

  .brand-logo-shell img{
      width:100%;
      height:100%;
      max-width:100%;
      object-fit:contain;
      object-position:center;
      transform:none;
  }

    .brand-word{
      display:flex;
      flex-direction:column;
      line-height:1;
      gap:4px;
    }

    .brand-word strong{
      letter-spacing:.03em;
      font-size:1.03rem;
    }

    .brand-word span{
      color:var(--muted);
      font-size:.72rem;
      font-weight:700;
      letter-spacing:.12em;
      text-transform:uppercase;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:28px;
      list-style:none;
    }

    .nav-links a{
      font-size:.92rem;
      font-weight:700;
      color:var(--ink-2);
      transition:.2s ease;
    }

    .nav-links a:hover{
      color:var(--turquoise-dark);
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }

    .menu-toggle{
      display:none;
      width:46px;
      height:46px;
      border-radius:12px;
      border:1px solid var(--line);
      background:white;
      align-items:center;
      justify-content:center;
    }

    .menu-toggle svg{
      width:22px;
      height:22px;
    }

    /* ============================================================
       HERO
       ============================================================ */
    .hero{
      position:relative;
      min-height:760px;
      padding:150px 0 90px;
      overflow:hidden;
      display:flex;
      align-items:center;
      background:
        radial-gradient(circle at 72% 25%, rgba(68,198,197,.18), transparent 26%),
        radial-gradient(circle at 88% 76%, rgba(252,107,108,.12), transparent 24%),
        linear-gradient(180deg,#FAFCFD 0%,#FFFFFF 100%);
    }

    .hero::before{
      content:"";
      position:absolute;
      width:480px;
      height:480px;
      border-radius:50%;
      border:1px solid rgba(68,198,197,.16);
      right:-160px;
      top:90px;
      box-shadow:
        0 0 0 55px rgba(68,198,197,.025),
        0 0 0 110px rgba(68,198,197,.018);
    }

    .hero-grid{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:70px;
      align-items:center;
    }

    .hero-copy h1{
      margin-top:20px;
      max-width:760px;
      font-size:clamp(3rem,6.4vw,5.8rem);
      line-height:.98;
      letter-spacing:-.065em;
    }

    .hero-copy h1 .accent{
      color:var(--coral);
    }

    .hero-copy p{
      max-width:670px;
      margin-top:24px;
      color:var(--slate);
      font-size:clamp(1rem,1.5vw,1.18rem);
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:34px;
    }

    .hero-proof{
      margin-top:36px;
      display:flex;
      flex-wrap:wrap;
      gap:20px;
      color:var(--slate);
      font-size:.9rem;
      font-weight:700;
    }

    .hero-proof span{
      display:flex;
      align-items:center;
      gap:8px;
    }

    .hero-proof svg{
      width:18px;
      height:18px;
      color:var(--turquoise-dark);
    }

    /* Visual ficticio / conceptual, NO pretende ser un producto existente */
    .hero-visual{
      position:relative;
      min-height:520px;
    }

    .visual-orbit{
      position:absolute;
      inset:28px 0 0 35px;
      border:1px dashed rgba(68,198,197,.35);
      border-radius:50%;
      transform:rotate(-9deg);
    }

    .visual-card{
      position:absolute;
      border-radius:28px;
      box-shadow:var(--shadow);
      border:1px solid rgba(18,28,44,.06);
      backdrop-filter:blur(18px);
    }

    .visual-main{
      width:min(100%,500px);
      right:0;
      top:55px;
      padding:24px;
      background:rgba(255,255,255,.94);
      transform:rotate(2deg);
    }

    .mock-window{
      border-radius:20px;
      overflow:hidden;
      background:#F8FAFB;
      border:1px solid var(--line);
    }

    .mock-topbar{
      height:54px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 16px;
      background:white;
      border-bottom:1px solid var(--line);
    }

    .dots{
      display:flex;
      gap:7px;
    }

    .dots i{
      width:9px;
      height:9px;
      border-radius:50%;
      display:block;
    }

    .dots i:nth-child(1){background:var(--coral)}
    .dots i:nth-child(2){background:#FFC759}
    .dots i:nth-child(3){background:var(--turquoise)}

    .mini-label{
      padding:6px 10px;
      border-radius:999px;
      font-size:.68rem;
      font-weight:800;
      color:var(--turquoise-dark);
      background:rgba(68,198,197,.10);
    }

    .mock-body{
      display:grid;
      grid-template-columns:92px 1fr;
      min-height:325px;
    }

    .mock-sidebar{
      padding:20px 14px;
      background:var(--ink);
      display:flex;
      flex-direction:column;
      gap:11px;
    }

    .mock-sidebar i{
      display:block;
      height:9px;
      border-radius:999px;
      background:rgba(255,255,255,.17);
    }

    .mock-sidebar i:nth-child(1),
    .mock-sidebar i:nth-child(4){
      background:rgba(68,198,197,.55);
    }

    .mock-content{
      padding:20px;
    }

    .mock-title{
      width:55%;
      height:14px;
      border-radius:999px;
      background:#DCE3E8;
      margin-bottom:18px;
    }

    .metric-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-bottom:18px;
    }

    .metric{
      padding:15px 12px;
      border-radius:14px;
      background:white;
      border:1px solid var(--line);
    }

    .metric b{
      display:block;
      font-size:1.08rem;
    }

    .metric span{
      font-size:.62rem;
      color:var(--muted);
      font-weight:700;
    }

    .chart{
      position:relative;
      height:148px;
      border-radius:16px;
      background:
        linear-gradient(to top, transparent 24%, #E9EEF2 25%, transparent 26%),
        linear-gradient(to top, transparent 49%, #E9EEF2 50%, transparent 51%),
        linear-gradient(to top, transparent 74%, #E9EEF2 75%, transparent 76%),
        white;
      border:1px solid var(--line);
      overflow:hidden;
    }

    .bars{
      position:absolute;
      inset:25px 18px 18px;
      display:flex;
      align-items:flex-end;
      justify-content:space-around;
      gap:10px;
    }

    .bars i{
      width:19%;
      border-radius:8px 8px 2px 2px;
      background:linear-gradient(180deg,var(--turquoise),var(--turquoise-dark));
    }

    .bars i:nth-child(1){height:55%}
    .bars i:nth-child(2){height:82%; background:linear-gradient(180deg,var(--coral),var(--coral-dark))}
    .bars i:nth-child(3){height:40%}
    .bars i:nth-child(4){height:68%}

    .visual-small{
      left:-12px;
      bottom:32px;
      width:230px;
      padding:18px;
      background:rgba(18,28,44,.96);
      color:white;
      transform:rotate(-5deg);
    }

    .visual-small .code-line{
      height:8px;
      border-radius:999px;
      margin:10px 0;
      background:rgba(255,255,255,.20);
    }

    .visual-small .code-line:nth-child(2){
      width:78%;
      background:var(--turquoise);
    }

    .visual-small .code-line:nth-child(3){
      width:56%;
    }

    .visual-small .code-line:nth-child(4){
      width:88%;
      background:var(--coral);
    }

    .visual-small .code-line:nth-child(5){
      width:68%;
    }

    .floating-chip{
      position:absolute;
      right:-14px;
      bottom:0;
      display:flex;
      align-items:center;
      gap:10px;
      padding:13px 16px;
      border-radius:16px;
      background:white;
      box-shadow:var(--shadow-soft);
      border:1px solid var(--line);
      font-weight:800;
      font-size:.82rem;
      animation:float 4.5s ease-in-out infinite;
    }

    .floating-chip span{
      width:12px;
      height:12px;
      background:var(--turquoise);
      border-radius:50%;
      box-shadow:0 0 0 6px rgba(68,198,197,.12);
    }

    @keyframes float{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(-10px)}
    }

    /* ============================================================
       STATEMENT
       ============================================================ */
    .statement{
      padding:92px 0;
      background:var(--ink);
      color:white;
    }

    .statement-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:90px;
      align-items:center;
    }

    .statement .eyebrow{
      background:rgba(68,198,197,.13);
      color:#83E0DF;
    }

    .statement h2{
      margin-top:18px;
      font-size:clamp(2.2rem,4.5vw,4.3rem);
      line-height:1.04;
      letter-spacing:-.05em;
    }

    .statement h2 span{
      color:var(--turquoise);
    }

    .statement-copy p{
      color:#C7D1DA;
      font-size:1.08rem;
      margin-bottom:20px;
    }

    .statement-list{
      display:grid;
      gap:13px;
      margin-top:30px;
    }

    .statement-list li{
      list-style:none;
      display:flex;
      align-items:flex-start;
      gap:12px;
      color:#EEF4F7;
    }

    .statement-list svg{
      width:21px;
      height:21px;
      color:var(--coral);
      flex:0 0 auto;
      margin-top:3px;
    }

    /* ============================================================
       SERVICES
       ============================================================ */
    .services{
      padding:110px 0;
      background:white;
    }

    .service-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }

    .service-card{
      position:relative;
      min-height:320px;
      padding:28px;
      border:1px solid var(--line);
      border-radius:var(--radius-md);
      background:white;
      overflow:hidden;
      transition:.3s ease;
    }

    .service-card::after{
      content:"";
      position:absolute;
      width:130px;
      height:130px;
      border-radius:50%;
      background:rgba(68,198,197,.07);
      right:-48px;
      bottom:-48px;
      transition:.3s ease;
    }

    .service-card:hover{
      transform:translateY(-7px);
      border-color:rgba(68,198,197,.45);
      box-shadow:var(--shadow-soft);
    }

    .service-card:hover::after{
      transform:scale(1.25);
      background:rgba(252,107,108,.09);
    }

    .service-icon{
      width:56px;
      height:56px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:rgba(68,198,197,.11);
      color:var(--turquoise-dark);
      margin-bottom:24px;
    }

    .service-card:nth-child(2n) .service-icon{
      background:rgba(252,107,108,.11);
      color:var(--coral-dark);
    }

    .service-icon svg{
      width:27px;
      height:27px;
    }

    .service-card h3{
      font-size:1.25rem;
      letter-spacing:-.02em;
    }

    .service-card p{
      margin-top:12px;
      color:var(--slate);
      font-size:.94rem;
    }

    .service-card .tag{
      display:inline-block;
      margin-top:22px;
      font-size:.76rem;
      font-weight:800;
      color:var(--muted);
      letter-spacing:.03em;
    }

    /* ============================================================
       SOLUTIONS
       ============================================================ */
    .solutions{
      padding:110px 0;
      background:var(--soft);
    }

    .solution-wrap{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:70px;
      align-items:start;
    }

    .solution-sticky{
      position:sticky;
      top:120px;
    }

    .solution-sticky h2{
      margin-top:14px;
      font-size:clamp(2.3rem,4vw,3.8rem);
      line-height:1.06;
      letter-spacing:-.05em;
    }

    .solution-sticky p{
      margin-top:18px;
      color:var(--slate);
      max-width:520px;
    }

    .solution-list{
      display:grid;
      gap:14px;
    }

    .solution-item{
      display:grid;
      grid-template-columns:64px 1fr;
      gap:20px;
      padding:24px;
      border-radius:20px;
      background:white;
      border:1px solid var(--line);
      transition:.25s ease;
    }

    .solution-item:hover{
      transform:translateX(6px);
      border-color:rgba(68,198,197,.4);
      box-shadow:var(--shadow-soft);
    }

    .solution-number{
      width:50px;
      height:50px;
      display:grid;
      place-items:center;
      border-radius:15px;
      background:var(--ink);
      color:white;
      font-weight:800;
    }

    .solution-item:nth-child(even) .solution-number{
      background:var(--coral);
    }

    .solution-item h3{
      font-size:1.08rem;
    }

    .solution-item p{
      color:var(--slate);
      margin-top:7px;
      font-size:.92rem;
    }

    /* ============================================================
       PROCESS
       ============================================================ */
    .process{
      padding:110px 0;
    }

    .process-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
    }

    .process-card{
      min-height:265px;
      padding:22px;
      border-radius:20px;
      border:1px solid var(--line);
      background:white;
      position:relative;
    }

    .process-step{
      width:42px;
      height:42px;
      border-radius:13px;
      display:grid;
      place-items:center;
      background:var(--soft);
      color:var(--turquoise-dark);
      font-weight:900;
      margin-bottom:36px;
    }

    .process-card:nth-child(3) .process-step,
    .process-card:nth-child(5) .process-step{
      color:var(--coral-dark);
      background:rgba(252,107,108,.10);
    }

    .process-card h3{
      font-size:1rem;
      margin-bottom:10px;
    }

    .process-card p{
      color:var(--slate);
      font-size:.86rem;
    }

    .process-arrow{
      position:absolute;
      right:-13px;
      top:42px;
      width:26px;
      height:26px;
      display:grid;
      place-items:center;
      z-index:2;
      background:white;
      border:1px solid var(--line);
      border-radius:50%;
      color:var(--muted);
    }

    .process-card:last-child .process-arrow{
      display:none;
    }

    /* ============================================================
       WHY / VALUE
       ============================================================ */
    .why{
      padding:110px 0;
      background:var(--ink);
      color:white;
      position:relative;
      overflow:hidden;
    }

    .why::before{
      content:"";
      position:absolute;
      width:480px;
      height:480px;
      border-radius:50%;
      background:rgba(68,198,197,.08);
      top:-220px;
      right:-180px;
    }

    .why-grid{
      position:relative;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:center;
    }

    .why-copy h2{
      margin-top:16px;
      font-size:clamp(2.2rem,4vw,3.8rem);
      line-height:1.06;
      letter-spacing:-.05em;
    }

    .why-copy p{
      color:#C7D1DA;
      margin-top:18px;
      max-width:590px;
    }

    .why-points{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:15px;
    }

    .why-point{
      padding:22px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.045);
    }

    .why-point strong{
      display:block;
      color:var(--turquoise);
      font-size:1.08rem;
      margin-bottom:7px;
    }

    .why-point:nth-child(2n) strong{
      color:#FF9B9C;
    }

    .why-point span{
      color:#C7D1DA;
      font-size:.86rem;
    }

    /* ============================================================
       FAQ
       ============================================================ */
    .faq{
      padding:110px 0;
      background:white;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:70px;
    }

    .faq-intro h2{
      margin-top:14px;
      font-size:clamp(2.1rem,3.6vw,3.2rem);
      line-height:1.08;
      letter-spacing:-.04em;
    }

    .faq-intro p{
      margin-top:16px;
      color:var(--slate);
    }

    .faq-list{
      border-top:1px solid var(--line);
    }

    .faq-item{
      border-bottom:1px solid var(--line);
    }

    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:22px 0;
      border:0;
      background:transparent;
      text-align:left;
      color:var(--ink);
      font-weight:800;
    }

    .faq-question span:last-child{
      width:32px;
      height:32px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--soft);
      flex:0 0 auto;
      transition:.25s ease;
    }

    .faq-answer{
      max-height:0;
      overflow:hidden;
      color:var(--slate);
      transition:max-height .35s ease;
    }

    .faq-answer p{
      padding:0 0 22px;
    }

    .faq-item.active .faq-answer{
      max-height:220px;
    }

    .faq-item.active .faq-question span:last-child{
      transform:rotate(45deg);
      color:var(--coral);
    }

    /* ============================================================
       CONTACT
       ============================================================ */
    .contact{
      padding:110px 0;
      background:
        radial-gradient(circle at 15% 20%,rgba(68,198,197,.12),transparent 25%),
        radial-gradient(circle at 88% 76%,rgba(252,107,108,.10),transparent 20%),
        var(--soft);
    }

    .contact-card{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:40px;
      padding:34px;
      border-radius:32px;
      background:white;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }

    .contact-info{
      min-height:100%;
      padding:36px;
      border-radius:25px;
      background:var(--ink);
      color:white;
      display:flex;
      flex-direction:column;
    }

    .contact-info h2{
      margin-top:18px;
      font-size:clamp(2.1rem,3.5vw,3.25rem);
      line-height:1.05;
      letter-spacing:-.05em;
    }

    .contact-info p{
      margin-top:18px;
      color:#C7D1DA;
    }

    .contact-lines{
      display:grid;
      gap:13px;
      margin-top:30px;
    }

    .contact-line{
      display:flex;
      align-items:center;
      gap:12px;
      color:#EAF1F4;
      font-size:.92rem;
    }

    .contact-line svg{
      width:20px;
      height:20px;
      color:var(--turquoise);
    }

    .socials{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:auto;
      padding-top:36px;
    }

    .social-link{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:12px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      transition:.2s ease;
    }

    .social-link:hover{
      background:var(--coral);
      transform:translateY(-3px);
    }

    .social-link svg{
      width:19px;
      height:19px;
    }

    .lead-form{
      padding:20px 10px 10px;
    }

    .lead-form h3{
      font-size:1.45rem;
      margin-bottom:8px;
    }

    .lead-form > p{
      color:var(--slate);
      margin-bottom:25px;
      font-size:.92rem;
    }

    .field-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }

    .field{
      display:grid;
      gap:7px;
      margin-bottom:14px;
    }

    .field label{
      font-size:.8rem;
      font-weight:800;
      color:var(--ink-2);
    }

    .field input,
    .field textarea,
    .field select{
      width:100%;
      border:1px solid var(--line);
      background:#FBFCFD;
      border-radius:13px;
      padding:13px 14px;
      outline:none;
      transition:.2s ease;
      color:var(--ink);
    }

    .field textarea{
      min-height:135px;
      resize:vertical;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus{
      border-color:var(--turquoise);
      box-shadow:0 0 0 4px rgba(68,198,197,.10);
      background:white;
    }

    .lead-form .btn{
      width:100%;
      margin-top:4px;
    }

    .form-note{
      margin-top:12px;
      color:var(--muted);
      font-size:.75rem;
      text-align:center;
    }

    /* ============================================================
       FOOTER
       ============================================================ */
    footer{
      background:#0C1420;
      color:#C7D1DA;
      padding:42px 0 28px;
    }

    .footer-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:30px;
      padding-bottom:28px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }

    .footer-brand{
      display:flex;
      align-items:center;
      gap:13px;
    }

    .footer-brand .brand-logo-shell{
    width:64px;
    height:64px;
    flex-basis:64px;
    }

    .footer-brand strong{
      color:white;
      display:block;
      font-size:1rem;
    }

    .footer-brand span{
      font-size:.76rem;
      color:#8794A1;
    }

    .footer-nav{
      display:flex;
      flex-wrap:wrap;
      gap:18px;
      font-size:.82rem;
      font-weight:700;
    }

    .footer-nav a:hover{
      color:var(--turquoise);
    }

    .footer-bottom{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding-top:24px;
      font-size:.76rem;
      color:#84909D;
    }

    /* ============================================================
       FLOATING WHATSAPP
       ============================================================ */
    .whatsapp-float{
      position:fixed;
      z-index:999;
      right:22px;
      bottom:22px;
      width:58px;
      height:58px;
      display:grid;
      place-items:center;
      border-radius:50%;
      color:white;
      background:#25D366;
      box-shadow:0 14px 32px rgba(37,211,102,.32);
      transition:.25s ease;
    }

    .whatsapp-float:hover{
      transform:translateY(-4px) scale(1.04);
    }

    .whatsapp-float svg{
      width:28px;
      height:28px;
    }

    /* ============================================================
       REVEAL
       ============================================================ */
    .reveal{
      opacity:0;
      transform:translateY(22px);
      transition:opacity .65s ease, transform .65s ease;
    }

    .reveal.visible{
      opacity:1;
      transform:none;
    }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 1050px){
      .nav-links{
        position:fixed;
        left:20px;
        right:20px;
        top:92px;
        display:none;
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
        padding:20px;
        background:white;
        border:1px solid var(--line);
        border-radius:20px;
        box-shadow:var(--shadow);
      }

      .nav-links.open{
        display:flex;
      }

      .nav-links a{
        display:block;
        width:100%;
        padding:10px 8px;
      }

      .menu-toggle{
        display:flex;
      }

      .nav-actions .btn{
        display:none;
      }

      .hero-grid,
      .statement-grid,
      .solution-wrap,
      .why-grid,
      .faq-wrap,
      .contact-card{
        grid-template-columns:1fr;
      }

      .hero{
        padding-top:125px;
      }

      .hero-copy{
        text-align:center;
      }

      .hero-copy p{
        margin-left:auto;
        margin-right:auto;
      }

      .hero-actions,
      .hero-proof{
        justify-content:center;
      }

      .hero-visual{
        max-width:650px;
        width:100%;
        margin:0 auto;
      }

      .statement-grid{
        gap:40px;
      }

      .service-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .solution-sticky{
        position:relative;
        top:auto;
      }

      .process-grid{
        grid-template-columns:repeat(2,1fr);
      }

      .process-arrow{
        display:none;
      }

      .why-points{
        grid-template-columns:repeat(2,1fr);
      }
    }

    @media (max-width: 680px){
      .container{
        width:min(calc(100% - 28px), var(--container));
      }

      .brand-word{
        display:none;
      }

      .hero{
        min-height:auto;
        padding:115px 0 70px;
      }

      .hero-grid{
        gap:28px;
      }

      .hero-copy h1{
        font-size:clamp(2.75rem,14vw,4.5rem);
      }

      .hero-actions{
        flex-direction:column;
      }

      .hero-actions .btn{
        width:100%;
      }

      .hero-proof{
        flex-direction:column;
        align-items:center;
      }

      .hero-visual{
        min-height:390px;
      }

      .visual-main{
        top:30px;
        padding:12px;
      }

      .mock-body{
        grid-template-columns:60px 1fr;
        min-height:270px;
      }

      .mock-content{
        padding:14px;
      }

      .metric-grid{
        grid-template-columns:1fr;
      }

      .metric:nth-child(2),
      .metric:nth-child(3){
        display:none;
      }

      .chart{
        height:130px;
      }

      .visual-small{
        width:180px;
        left:0;
        bottom:8px;
      }

      .floating-chip{
        right:0;
        bottom:0;
      }

      .statement,
      .services,
      .solutions,
      .process,
      .why,
      .faq,
      .contact{
        padding:78px 0;
      }

      .service-grid,
      .process-grid,
      .why-points,
      .field-grid{
        grid-template-columns:1fr;
      }

      .service-card{
        min-height:auto;
      }

      .contact-card{
        padding:14px;
        border-radius:24px;
      }

      .contact-info{
        padding:26px 22px;
      }

      .lead-form{
        padding:18px 8px 8px;
      }

      .footer-top,
      .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
      }

      .footer-nav{
        gap:12px 16px;
      }
    }

    @media (prefers-reduced-motion: reduce){
      *{
        scroll-behavior:auto !important;
        animation:none !important;
        transition:none !important;
      }

      .reveal{
        opacity:1;
        transform:none;
      }
    }


/* ============================================================
   AJUSTES DEL FORMULARIO DE CONTACTO
   ============================================================ */
#contactForm .field-grid{
  grid-template-columns:repeat(3,1fr);
}

@media (max-width: 900px){
  #contactForm .field-grid{
    grid-template-columns:1fr;
  }
}

.form-status{
  display:none;
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  font-size:.86rem;
  font-weight:700;
}

.form-status.success{
  display:block;
  color:#137C70;
  background:rgba(68,198,197,.12);
  border:1px solid rgba(68,198,197,.28);
}

.form-status.error{
  display:block;
  color:#B83E45;
  background:rgba(252,107,108,.10);
  border:1px solid rgba(252,107,108,.25);
}
