    :root{
      --bg1:#05060f;
      --bg2:#0b1030;
      --p1:#7c3aed;
      --p2:#22d3ee;
      --text:#eef2ff;
      --muted:rgba(238,242,255,.72);
      --card:rgba(255,255,255,.06);
      --border:rgba(255,255,255,.12);
      --shadow:0 30px 90px rgba(0,0,0,.55);
    }

    *{box-sizing:border-box; font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;}
    html{ scroll-behavior:smooth; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
      color:var(--text);
      background: linear-gradient(180deg, #080a19 0%, #0f144b 25%, #0c1328 50%, #0a0c22 75%, #080a19 100%);
      overflow-x:hidden;
      padding-top:72px; /* adjust if your navbar height changes */

    }

    /* subtle noise - disabled */
    body::before{
      display:none;
    }
    @keyframes drift{
      from{ transform:translate3d(-2%, -2%, 0) rotate(2deg); }
      to{ transform:translate3d(2%, 2%, 0) rotate(2deg); }
    }

    /* Sticky top nav */
    .nav{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:50;
    padding:14px 18px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background:linear-gradient(180deg, rgba(8,10,25,.72), rgba(8,10,25,.35));
    border-bottom:1px solid rgba(255,255,255,.10);
    }

    .nav-inner{
      max-width:1100px;
      margin:0 auto;
      display:flex;
      align-items:center;
      gap:14px;
      justify-content:space-between;
    }

    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      letter-spacing:.2px;
      user-select:none;
    }

    .logo-badge{
      width:34px; height:34px;
      border-radius:12px;
      background:linear-gradient(135deg, var(--p1), var(--p2));
      box-shadow:0 0 30px rgba(124,58,237,.45);
      display:flex;
      align-items:center;
      justify-content:center;
      overflow:hidden;
    }

    .brand{
      background:linear-gradient(90deg, #a78bfa, #22d3ee, #a78bfa);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      background-size:200% 100%;
      /* animation: shimmer 4s ease-in-out infinite; */
      display:inline-block;
    }



    .logo-badge img{ height:20px; max-width:100%; display:block; }
    .hero .brand img{
      height:clamp(64px, 12vw, 160px);
      max-width:90vw;
      display:block;
      /* background:#ffffff; */
      background: linear-gradient(135deg, rgba(167, 139, 250, 0.5), rgba(34, 211, 238, 0.5));
      /* background: linear-gradient(135deg, #a78bfa, #22d3ee); */
      padding:8px 12px;
      border-radius:100px;
      box-shadow:0 12px 30px rgba(2,6,23,0.45);
      margin-top: 10px;
      margin-bottom: 10px;
    }
    /* @keyframes shimmer{
      0%,100%{ background-position:0% 50%; }
      50%{ background-position:100% 50%; }
    } */

    .menu{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      justify-content:center;
    }

    .menu a{
      text-decoration:none;
      color:rgba(238,242,255,.86);
      padding:10px 12px;
      border-radius:999px;
      border:1px solid transparent;
      transition: .2s ease;
      font-weight:650;
      font-size:14px;
      line-height:1;
    }

    .menu a:hover{
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.14);
      transform:translateY(-1px);
    }

    .cta{
      display:flex;
      gap:10px;
      align-items:center;
    }

    .btn{
      border:none;
      cursor:pointer;
      padding:11px 16px;
      border-radius:999px;
      font-weight:750;
      color:#05060f;
      background:linear-gradient(90deg, var(--p1), var(--p2));
      box-shadow:0 0 28px rgba(124,58,237,.42);
      transition:.2s ease;
      white-space:nowrap;
    }
    .btn:hover{ transform: translateY(-1px); }

    .btn-ghost{
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      color:rgba(238,242,255,.9);
      box-shadow:none;
    }

    /* NEW: Hamburger button (only visible on mobile) */
    .menu-toggle{
      display:none;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.06);
      color:rgba(238,242,255,.9);
      border-radius:999px;
      padding:10px 12px;
      cursor:pointer;
      line-height:1;
      font-weight:800;
      transition:.2s ease;
      white-space:nowrap;
    }
    .menu-toggle:hover{ transform:translateY(-1px); }
    .menu-toggle:active{ transform:translateY(0); }

    /* Sections */
    .wrap{
      max-width:1100px;
      margin:0 auto;
      padding:0 18px;
    }

    section{
      padding:86px 0;
      scroll-margin-top:88px; /* offset for sticky nav */
    }

    .card{
      position:relative;
      background:var(--card);
      border:1px solid var(--border);
      border-radius:28px;
      padding:clamp(26px, 5vw, 56px);
      box-shadow:var(--shadow);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      overflow:hidden;
    }

    .card::before{
      content:"";
      position:absolute;
      inset:-2px;
      border-radius:30px;
      background:conic-gradient(from 180deg,
        rgba(124,58,237,.0),
        rgba(124,58,237,.55),
        rgba(34,211,238,.55),
        rgba(124,58,237,.0));
      filter: blur(18px);
      opacity:.45;
      animation: spin 8s linear infinite;
      pointer-events:none;
    }
    .card::after{
      content:"";
      position:absolute; inset:1px;
      border-radius:27px;
      background:linear-gradient(180deg, rgba(8,10,25,.78), rgba(8,10,25,.55));
      pointer-events:none;
    }
    @keyframes spin{ to{ transform:rotate(360deg); } }

    .content{ position:relative; z-index:1; }

    .hero{
      text-align:center;
      padding:110px 0 70px;
    }

    h1{
      margin:10px 0 12px;
      font-size:clamp(46px, 6.7vw, 92px);
      line-height:1.02;
      letter-spacing:-1px;
    }

    h2{
      margin:0 0 14px;
      font-size:clamp(26px, 3.6vw, 44px);
      letter-spacing:-.4px;
    }

    p{
      margin:0;
      color:var(--muted);
      font-size:clamp(16px, 2.1vw, 19px);
      line-height:1.6;
      max-width:70ch;
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.14);
      color:rgba(238,242,255,.8);
      font-weight:700;
    }
    .dot{
      width:10px; height:10px;
      border-radius:50%;
      background:linear-gradient(180deg, var(--p2), var(--p1));
      box-shadow:0 0 18px rgba(34,211,238,.65);
      animation:pulse 1.6s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{ transform:scale(1); opacity:.85; }
      50%{ transform:scale(1.35); opacity:1; }
    }

    .grid{
      display:grid;
      grid-template-columns:repeat(12, 1fr);
      gap:18px;
      margin-top:28px;
    }

    .box{
      grid-column: span 6;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      border-radius:22px;
      padding:22px;
    }
    .box strong{
      display:block;
      margin-bottom:8px;
      font-size:16px;
      letter-spacing:-.2px;
      color:rgba(238,242,255,.95);
    }
    .box span{ color:var(--muted); }

    .grid-3 .box{ grid-column: span 4; }

    .kpis{
      display:flex;
      gap:14px;
      justify-content:center;
      flex-wrap:wrap;
      margin-top:26px;
    }
    .kpi{
      padding:14px 16px;
      border-radius:18px;
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      min-width:180px;
    }
    .kpi b{
      display:block;
      font-size:20px;
      letter-spacing:-.2px;
    }
    .kpi small{ color:var(--muted); }

    .faq{
      margin-top:18px;
      display:grid;
      gap:12px;
    }
    details{
      background:rgba(255,255,255,.05);
      border:1px solid rgba(255,255,255,.10);
      border-radius:18px;
      padding:14px 16px;
    }
    summary{
      cursor:pointer;
      font-weight:750;
      color:rgba(238,242,255,.92);
      list-style:none;
    }
    summary::-webkit-details-marker{ display:none; }
    details p{ margin-top:10px; }

    footer{
      padding:28px 0 50px;
      text-align:center;
      color:rgba(238,242,255,.55);
    }

    /* Footer links: plain underlines only (no extra decoration/separators) */
    footer a{
      color:inherit;
      text-decoration:underline;
      text-decoration-thickness:1px;
      text-underline-offset:3px;
      text-decoration-color:rgba(238,242,255,.55);
      padding:0 8px;
      border:0;
      background:none;
    }
    footer a:hover{
      opacity:0.95;
      text-decoration-color:rgba(238,242,255,.9);
    }

    /* footer button should look like the links */
    footer .footer-link{
    color:inherit;
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-underline-offset:3px;
    text-decoration-color:rgba(238,242,255,.55);
    padding:0 8px;
    border:0;
    background:none;
    cursor:pointer;
    font:inherit;
    }
    footer .footer-link:hover{
    opacity:0.95;
    text-decoration-color:rgba(238,242,255,.9);
    }

    /* Cookie side modal (drawer) */

    .cookies-link {
      color:white;
    }

    .cookie-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease;
    z-index:200;
    }

    .cookie-overlay.open{
    opacity:1;
    pointer-events:auto;
    }


    
    .cookie-drawer{
    position:absolute;
    top:0;
    bottom:0;
    width:min(420px, 92vw);
    left:0; /* slide from LEFT */
    background:linear-gradient(180deg, rgba(8,10,25,.92), rgba(8,10,25,.86));
    border-right:1px solid rgba(255,255,255,.12);
    box-shadow: 30px 0 90px rgba(0,0,0,.65);
    transform: translateX(-105%);
    transition: transform .25s ease;
    display:flex;
    flex-direction:column;
    }

    .cookie-drawer-header{
    padding:18px 20px 12px;
    display:flex;
    justify-content:center;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,.08);
    }

    .cookie-overlay.open .cookie-drawer{
    transform: translateX(0);
    }

    .cookie-head{
    padding:16px 16px 10px;
    border-bottom:1px solid rgba(255,255,255,.10);
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:12px;
    }

    /* Cookie drawer "more info" link: clean + underline only */
    .cookie-head a{
    color:inherit;
    text-decoration:underline;
    text-decoration-thickness:1px;
    text-underline-offset:3px;
    text-decoration-color:rgba(238,242,255,.55);
    background:none;
    border:0;
    padding:0;
    }

    .cookie-head a:hover{
    text-decoration-color:rgba(238,242,255,.9);
    opacity:.95;
    }


    .cookie-title{
    font-size:18px;
    margin:0;
    }

    .cookie-close{
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.06);
    color:rgba(238,242,255,.9);
    width:36px;
    height:36px;
    border-radius:12px;
    cursor:pointer;
    line-height:1;
    font-size:18px;
    }

    .cookie-body{
    padding:14px 16px 0;
    overflow:auto;
    }

    .cookie-body p{
    margin:0 0 10px;
    color:rgba(238,242,255,.72);
    font-size:14px;
    line-height:1.55;
    }

    .cookie-subtitle{
    margin:14px 0 10px;
    font-size:16px;
    color:rgba(238,242,255,.92);
    }

    .cookie-list{
    display:grid;
    gap:10px;
    margin-bottom:14px;
    }

    .cookie-item{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.10);
    border-radius:16px;
    padding:12px 12px;
    }

    .cookie-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    }

    .cookie-row b{
    font-size:14px;
    color:rgba(238,242,255,.92);
    }

    .cookie-desc{
    margin-top:8px;
    color:rgba(238,242,255,.70);
    font-size:13px;
    line-height:1.45;
    }

    /* accordion */
    .cookie-item details{
    background:transparent;
    border:0;
    padding:0;
    }
    .cookie-item summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    cursor:pointer;
    list-style:none;
    color:rgba(238,242,255,.92);
    }
    .cookie-item summary::-webkit-details-marker{ display:none; }

    .cookie-plus{
    width:22px;
    height:22px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.06);
    display:grid;
    place-items:center;
    }

    /* Toggle switch */
    .switch{
    position:relative;
    width:46px;
    height:26px;
    flex:0 0 auto;
    }
    .switch input{
    opacity:0;
    width:0;
    height:0;
    }
    .slider{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.14);
    border:1px solid rgba(255,255,255,.18);
    border-radius:999px;
    transition:.2s ease;
    }
    .slider::before{
    content:"";
    position:absolute;
    height:20px;
    width:20px;
    left:3px;
    top:50%;
    transform:translateY(-50%);
    background:rgba(238,242,255,.92);
    border-radius:50%;
    transition:.2s ease;
    }

    .switch input:checked + .slider{
    background:linear-gradient(90deg, var(--p1), var(--p2));
    border-color:rgba(255,255,255,.10);
    }
    .switch input:checked + .slider::before{
    left:23px;
    background:#05060f;
    }

    .switch input:disabled + .slider{
    opacity:.6;
    cursor:not-allowed;
    }

    /* Footer actions inside drawer */
    .cookie-actions{
    padding:14px 16px 16px;
    border-top:1px solid rgba(255,255,255,.10);
    display:flex;
    gap:10px;
    justify-content:flex-end;
    background:linear-gradient(180deg, rgba(8,10,25,.15), rgba(8,10,25,.45));
    }

    .cookie-actions .btn{
    padding:11px 14px;
    }

    /* summary row layout: [+ title] ..... [toggle] */
    .cookie-item summary.cookie-summary{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    cursor:pointer;
    list-style:none;
    padding:0;
    }

    /* group: plus + title on same line */
    .cookie-summary-left{
    display:flex;
    align-items:center;
    gap:10px;
    min-width:0;
    }

    /* keep the title from wrapping weirdly */
    .cookie-summary-left span:last-child{
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
    }

    /* plus is before the text (inline) */
    .cookie-plus{
    width:22px;
    height:22px;
    border-radius:8px;
    border:1px solid rgba(255,255,255,.14);
    background:rgba(255,255,255,.06);
    display:grid;
    place-items:center;
    flex:0 0 auto;
    }


    @media (max-width: 520px){
    .cookie-drawer{ width: 92vw; }
    }


    /* Responsive: keep the SAME design, just change navbar behavior */
    @media (max-width:900px){
      /* show hamburger, hide desktop nav + desktop CTA */
      .menu-toggle{ display:inline-flex; align-items:center; gap:8px; }
      .cta{ display:none; }
      .menu{ display:none; }

      /* mobile menu dropdown */
      .menu.mobile{
        position:fixed;
        top:72px;
        right:14px;
        left:14px;
        display:none;
        flex-direction:column;
        gap:10px;
        padding:14px;
        border-radius:22px;
        background:#000; /* reverted to pure black */
        border:1px solid rgba(255,255,255,.14);
        box-shadow:0 40px 90px rgba(0,0,0,.7);
        z-index:60;
      }
      .menu.mobile.open{ display:flex; }

      .menu.mobile a{
        padding:14px 16px;
        border-radius:14px;
        background:rgba(255,255,255,.05);
        text-align:center;
      }
      .menu.mobile a:hover{
        transform:none;
        border-color:transparent;
      }

      .menu.mobile .mobile-actions{
        display:flex;
        gap:10px;
        flex-wrap:wrap;
        justify-content:center;
        padding-top:6px;
      }
      .menu.mobile .mobile-actions .btn{ color:#ffffff; }

      /* Footer links container stacks vertically on mobile */
      .footer-links{
        display:flex;
        flex-direction:column;
        gap:12px;
        margin-top:10px;
      }
      .footer-links a, .footer-links .footer-link{
        display:block;
      }
      .footer-links ::before, .footer-links ::after{
        display:none;
      }

      .hero{ padding-top:70px; }
      .box{ grid-column: span 12; }
      .grid-3 .box{ grid-column: span 12; }
    }

    @media (prefers-reduced-motion: reduce){
      *{ animation:none !important; transition:none !important; }
      body::before{ display:none; }
    }

    /* First Visit Cookie Banner */
    .cookie-first-visit-banner {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 300;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    .cookie-first-visit-banner.show {
      opacity: 1;
      pointer-events: auto;
    }

    .cookie-banner-content {
      background: linear-gradient(180deg, rgba(8, 10, 25, 0.95), rgba(8, 10, 25, 0.88));
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 16px;
      padding: 32px 28px;
      max-width: 480px;
      width: 90vw;
      text-align: center;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
    }

    .cookie-banner-content h2 {
      margin: 0 0 14px;
      font-size: 22px;
      color: rgba(238, 242, 255, 0.95);
    }

    .cookie-banner-content p {
      margin: 0 0 24px;
      color: rgba(238, 242, 255, 0.72);
      font-size: 14px;
      line-height: 1.6;
    }

    .cookie-banner-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .cookie-banner-buttons .btn {
      padding: 12px 20px;
      width: 100%;
    }

    .btn-whatsapp{
        background:linear-gradient(135deg, #25D366, #1ebe5d);
        color:#ffffff;
        box-shadow:0 0 28px rgba(37, 211, 102, .45);
        /* display:inline-flex; */
        align-items:center;
        gap:8px;
        text-decoration:none;
        padding: 20px;
    }

    .btn-whatsapp:hover{
        transform:translateY(-1px);
        box-shadow:0 0 36px rgba(37, 211, 102, .6);
    }

    /* Contact buttons: same size + wider */
    #contact .content > div a.btn{
    min-width: 220px;              /* wider */
    display: inline-flex;          /* consistent layout */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    }

    /* keep icons same size and avoid <br> spacing differences */
    #contact .content > div a.btn i{
    font-size: 30px;               /* keep your icon size */
    }

    #contact .content > div{
    width: 100%;
    font-size: 20px;
    }

    #contact .content > div a.btn{
    max-width: 260px;              /* optional cap */
    }

    #contact a[href^="mailto:"]{
    text-decoration: none !important;
    }

    /* Floating WhatsApp button */
    .whatsapp-float{
    position: fixed;
    bottom: 100px;              /* not the corner */
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: #ffffff;
    display: grid;
    place-items: center;
    text-decoration: none;
    z-index: 180;
    box-shadow: 0 18px 40px rgba(37, 211, 102, .45);
    transition: transform .2s ease, box-shadow .2s ease;
    }

    .whatsapp-float i{
    font-size: 28px;
    line-height: 1;
    }

    .whatsapp-float:hover{
    transform: translateY(-3px);
    box-shadow: 0 22px 50px rgba(37, 211, 102, .6);
    }
