:root{
  --bg:#02090c;
  --panel:#071217cc;
  --panel-solid:#071217;
  --muted:#b6c5c7;
  --text:#eef8f8;
  --white:#ffffff;
  --teal:#22c7bd;
  --teal-dark:#0d8f89;
  --teal-soft:#84f4ec;
  --line:rgba(34,199,189,.24);
  --shadow:0 24px 70px rgba(0,0,0,.45);
  --radius:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at 55% 12%, rgba(34,199,189,.16), transparent 30%),
    radial-gradient(circle at 15% 35%, rgba(34,199,189,.08), transparent 28%),
    var(--bg);
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(115deg, rgba(255,255,255,.03), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(34,199,189,.08), transparent 35%);
}

#networkCanvas{
  position:fixed;
  inset:0;
  z-index:-1;
  width:100%;
  height:100%;
  opacity:.9;
}

a{color:inherit;text-decoration:none}
p{color:var(--muted);line-height:1.75}
img{max-width:100%;display:block}

.container{
  width:min(1180px, calc(100% - 42px));
  margin-inline:auto;
}

.section{
  padding:105px 0;
  position:relative;
}

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(18px);
  background:linear-gradient(to bottom, rgba(2,9,12,.88), rgba(2,9,12,.55));
  border-bottom:1px solid rgba(255,255,255,.06);
}

.nav{
  display:flex;
  align-items:center;
  gap:24px;
  min-height:88px;
}

.brand{
  display:flex;
  align-items:center;
  margin-right:auto;
}

.brand img{
  width:198px;
  height:auto;
  object-fit:contain;
  background:transparent;
  filter:none;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:28px;
  font-weight:700;
  font-size:14px;
}

.main-nav a{
  color:#e8f5f5;
  opacity:.9;
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-12px;
  height:3px;
  background:var(--teal);
  border-radius:99px;
  transform:scaleX(0);
  transition:.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after{
  transform:scaleX(1);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 24px;
  border-radius:16px;
  font-weight:800;
  border:1px solid transparent;
  transition:.25s ease;
}

.btn-primary{
  background:linear-gradient(135deg, var(--teal), var(--teal-dark));
  color:#062225;
  box-shadow:0 12px 38px rgba(34,199,189,.25);
}

.btn-primary:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 55px rgba(34,199,189,.35);
}

.btn-outline{
  border-color:rgba(132,244,236,.55);
  color:var(--white);
  background:rgba(255,255,255,.03);
}

.btn-outline:hover{
  background:rgba(34,199,189,.1);
  transform:translateY(-2px);
}

.btn-light{
  color:#062225;
  background:var(--white);
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  width:44px;
  height:44px;
  flex-direction:column;
  gap:6px;
  align-items:center;
  justify-content:center;
}

.menu-toggle span{
  width:24px;
  height:2px;
  background:#fff;
  border-radius:99px;
}

.hero{
  min-height:calc(100vh - 88px);
  display:flex;
  align-items:center;
  padding-top:75px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:65px;
  align-items:center;
}

.eyebrow{
  color:var(--teal);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:900;
  margin:0 0 20px;
}

.hero h1{
  font-size:clamp(42px,6vw,78px);
  line-height:.98;
  letter-spacing:-.06em;
  margin:0 0 28px;
}

.hero h1 span{
  color:var(--teal);
  text-shadow:0 0 35px rgba(34,199,189,.35);
}

.lead{
  max-width:650px;
  font-size:18px;
}

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

.hero-visual{
  min-height:520px;
  display:grid;
  place-items:center;
  position:relative;
}

.orbital{
  width:min(520px,90vw);
  aspect-ratio:1;
  border-radius:50%;
  position:relative;
  display:grid;
  place-items:center;
  background:radial-gradient(circle, rgba(34,199,189,.23), transparent 56%);
}

.orbit{
  position:absolute;
  inset:10%;
  border:1px solid rgba(34,199,189,.26);
  border-radius:50%;
  animation:spin 18s linear infinite;
}

.orbit-two{inset:20%;transform:rotate(34deg);animation-duration:13s}
.orbit-three{inset:3%;transform:rotate(-18deg);animation-duration:24s}

.cube-stack{
  width:270px;
  height:270px;
  position:relative;
  transform:rotateX(55deg) rotateZ(45deg);
  transform-style:preserve-3d;
  animation:float 5s ease-in-out infinite;
}

.cube-stack span{
  position:absolute;
  width:78px;
  height:78px;
  background:linear-gradient(135deg, rgba(132,244,236,.95), rgba(4,52,58,.85));
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 0 55px rgba(34,199,189,.38);
  border-radius:10px;
}

.cube-stack span:nth-child(1){left:35px;top:35px}
.cube-stack span:nth-child(2){left:120px;top:35px}
.cube-stack span:nth-child(3){left:205px;top:35px}
.cube-stack span:nth-child(4){left:78px;top:120px}
.cube-stack span:nth-child(5){left:163px;top:120px}
.cube-stack span:nth-child(6){left:120px;top:205px}

.scroll-indicator{
  position:absolute;
  bottom:20px;
  left:50%;
  transform:translateX(-50%);
  color:rgba(255,255,255,.55);
  font-size:11px;
  letter-spacing:.32em;
}

.card-grid{
  display:grid;
  gap:22px;
}

.card-grid.three{
  grid-template-columns:repeat(3,1fr);
}

.glass-card,
.solution-card,
.team-card,
.faq-list,
.contact-card,
.highlight-box,
.all-services{
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.11);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter:blur(18px);
}

.glass-card{
  padding:34px;
}

.icon,
.service-icon{
  width:54px;
  height:54px;
  border-radius:18px;
  display:grid;
  place-items:center;
  color:var(--teal-soft);
  background:rgba(34,199,189,.13);
  border:1px solid rgba(34,199,189,.35);
  font-size:26px;
  margin-bottom:18px;
}

h2{
  font-size:clamp(32px,4vw,52px);
  letter-spacing:-.045em;
  margin:0 0 18px;
}

h3{
  font-size:22px;
  line-height:1.2;
  margin:0 0 14px;
}

h4{
  color:var(--teal);
  margin:24px 0 10px;
}

.check-list{
  display:grid;
  gap:12px;
  list-style:none;
  padding:0;
  margin:0;
  color:var(--muted);
  line-height:1.55;
}

.check-list li{
  position:relative;
  padding-left:24px;
}

.check-list li::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--teal);
  position:absolute;
  left:0;
  top:.65em;
  box-shadow:0 0 16px rgba(34,199,189,.85);
}

.section-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 44px;
}

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

.solution-card{
  padding:28px;
  position:relative;
  min-height:520px;
  overflow:hidden;
}

.solution-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 85% 0%, rgba(34,199,189,.16), transparent 30%);
  pointer-events:none;
}

.number{
  position:absolute;
  top:20px;
  right:20px;
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(34,199,189,.2);
  color:var(--teal-soft);
  font-weight:900;
  font-size:13px;
}

.all-services{
  margin-top:24px;
  padding:34px;
}

.service-list{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.service-list span{
  border:1px solid rgba(34,199,189,.22);
  background:rgba(34,199,189,.08);
  color:#d9ffff;
  border-radius:999px;
  padding:11px 14px;
  font-weight:700;
  font-size:14px;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:48px;
  align-items:start;
}

blockquote{
  margin:24px 0;
  padding:24px;
  border-left:4px solid var(--teal);
  background:rgba(34,199,189,.08);
  border-radius:18px;
  color:#f4ffff;
  line-height:1.7;
  font-weight:600;
}

.timeline{
  position:relative;
}

.highlight-box{
  padding:24px;
  color:#dffafa;
  border-color:rgba(34,199,189,.25);
}

.team-card{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:30px;
  padding:34px;
}

.avatar{
  width:140px;
  height:140px;
  border-radius:34px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--teal), #0c5b5b);
  color:#022022;
  font-weight:900;
  font-size:44px;
  box-shadow:0 25px 80px rgba(34,199,189,.25);
}

.culture-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.text-link{
  color:var(--teal-soft);
  font-weight:900;
}

.faq-list{
  max-width:920px;
  margin:auto;
  padding:18px;
}

details{
  border-bottom:1px solid rgba(255,255,255,.08);
  padding:0;
}

details:last-child{border-bottom:0}

summary{
  cursor:pointer;
  padding:22px;
  font-weight:900;
  color:#fff;
  list-style:none;
}

summary::-webkit-details-marker{display:none}

details p{
  margin:0;
  padding:0 22px 22px;
}

.cta-strip{
  padding:45px 0;
}

.cta-inner{
  border:1px solid rgba(34,199,189,.28);
  border-radius:28px;
  padding:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  background:
    linear-gradient(135deg, rgba(34,199,189,.28), rgba(4,18,21,.88)),
    radial-gradient(circle at 20% 50%, rgba(132,244,236,.32), transparent 35%);
  box-shadow:0 24px 80px rgba(34,199,189,.18);
}

.cta-inner h2{
  margin:0;
}

.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.45fr;
  gap:34px;
  align-items:start;
}

.contact a{
  color:var(--teal-soft);
  font-weight:900;
}

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

.contact-card{
  min-height:150px;
  padding:20px;
  text-align:center;
  display:grid;
  place-items:center;
  gap:8px;
  color:#fff;
}

.contact-card span{
  color:var(--teal);
  font-size:30px;
}

.contact-card small{
  color:var(--muted);
  overflow-wrap:anywhere;
}

.qr{
  width:62px;
  height:62px;
  background:
    linear-gradient(90deg,#fff 8px,transparent 8px 16px,#fff 16px 24px,transparent 24px 32px,#fff 32px 40px,transparent 40px),
    linear-gradient(#fff 8px,transparent 8px 16px,#fff 16px 24px,transparent 24px 32px,#fff 32px 40px,transparent 40px);
  background-size:40px 40px;
  border:6px solid #fff;
  filter:drop-shadow(0 0 12px rgba(255,255,255,.28));
}

.float-btn{
  position:fixed;
  right:24px;
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  z-index:80;
  color:#fff;
  font-size:24px;
  box-shadow:0 18px 45px rgba(0,0,0,.35);
}

.float-btn.instagram{
  bottom:94px;
  background:linear-gradient(135deg,#ff375f,#f39c12);
}

.float-btn.whatsapp{
  bottom:24px;
  background:linear-gradient(135deg,#19d36b,#0a9f5b);
}

.footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(0,0,0,.42);
  padding:28px 0;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer img{
  width:180px;
  filter:none;
}

.footer p{
  margin:6px 0 0;
  font-size:14px;
}

.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .75s ease, transform .75s ease;
}

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

@keyframes spin{
  to{rotate:360deg}
}

@keyframes float{
  0%,100%{translate:0 0}
  50%{translate:0 -18px}
}

@media (max-width:1050px){
  .nav-cta{display:none}
  .solutions-grid{grid-template-columns:repeat(2,1fr)}
  .contact-cards{grid-template-columns:repeat(2,1fr)}
  .hero-grid,.split,.contact-grid{grid-template-columns:1fr}
  .hero-visual{min-height:420px}
}

@media (max-width:820px){
  .menu-toggle{display:flex}
  .main-nav{
    position:absolute;
    left:21px;
    right:21px;
    top:88px;
    display:none;
    flex-direction:column;
    align-items:flex-start;
    padding:24px;
    background:rgba(2,9,12,.96);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
  }
  .main-nav.open{display:flex}
  .card-grid.three,.culture-grid,.team-card{grid-template-columns:1fr}
  .avatar{width:110px;height:110px;font-size:34px}
  .cta-inner{flex-direction:column;align-items:flex-start}
  .brand img{width:165px}
  .section{padding:76px 0}
}

@media (max-width:620px){
  .solutions-grid,.contact-cards{grid-template-columns:1fr}
  .hero h1{font-size:44px}
  .lead{font-size:16px}
  .hero-actions{flex-direction:column;align-items:stretch}
  .footer-inner{flex-direction:column;text-align:center}
  .float-btn{right:15px;width:50px;height:50px}
}


/* Contact icons: real SVG + real QR */
.contact-icon{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  color:var(--teal);
}

.contact-icon svg{
  width:42px;
  height:42px;
  fill:none;
  stroke:currentColor;
  stroke-width:2.1;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.whatsapp-icon svg path:first-child,
.instagram-icon svg rect{
  fill:none;
}

.whatsapp-icon svg path:last-child{
  fill:currentColor;
  stroke:none;
}

.qr-image{
  width:86px;
  height:86px;
  object-fit:contain;
  background:#fff;
  padding:6px;
  border-radius:10px;
  box-shadow:0 0 22px rgba(255,255,255,.16);
}

.float-btn .contact-icon,
.float-btn .contact-icon svg{
  width:28px;
  height:28px;
  color:#fff;
}

.float-btn .whatsapp-icon svg path:first-child{
  fill:none;
}

.float-btn .whatsapp-icon svg path:last-child{
  fill:#fff;
}


/* Language switch */
.language-switch{display:flex;align-items:center;gap:6px;padding:5px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);border-radius:999px}
.lang-btn{color:#dffafa;background:transparent;font-weight:900;font-size:12px;padding:9px 12px;border-radius:999px;transition:.2s ease}
.lang-btn.active{color:#052426;background:var(--teal);box-shadow:0 8px 28px rgba(34,199,189,.25)}
@media (max-width:1050px){.language-switch{margin-left:auto}}
@media (max-width:820px){.language-switch{order:2}.menu-toggle{order:3}.main-nav{order:4}}


/* SoftNerd process section */
.process-section{
  padding-top:90px;
  padding-bottom:95px;
  background:
    radial-gradient(circle at 18% 12%, rgba(34,199,189,.12), transparent 28%),
    radial-gradient(circle at 90% 60%, rgba(34,199,189,.08), transparent 32%);
}

.process-heading{
  text-align:left;
  margin-left:0;
  margin-right:auto;
}

.process-heading h2{
  max-width:850px;
}

.process-heading p:not(.eyebrow){
  max-width:760px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:44px;
}

.process-card{
  position:relative;
  min-height:280px;
  padding:38px 32px;
  border-radius:28px;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.026)),
    radial-gradient(circle at 84% 10%, rgba(34,199,189,.16), transparent 34%);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 24px 80px rgba(0,0,0,.36);
  backdrop-filter:blur(18px);
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.process-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(34,199,189,.16), transparent 36%),
    linear-gradient(315deg, rgba(255,255,255,.04), transparent 42%);
  opacity:.72;
  pointer-events:none;
}

.process-card::after{
  content:"";
  position:absolute;
  left:32px;
  right:32px;
  bottom:0;
  height:3px;
  border-radius:99px 99px 0 0;
  background:linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity:.8;
}

.process-card:hover{
  transform:translateY(-6px);
  border-color:rgba(34,199,189,.38);
  box-shadow:0 28px 95px rgba(34,199,189,.14);
}

.process-number{
  display:block;
  color:transparent;
  -webkit-text-stroke:1.7px var(--teal);
  text-shadow:0 0 28px rgba(34,199,189,.2);
  font-size:58px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.06em;
  margin-bottom:22px;
  position:relative;
  z-index:1;
}

.process-icon{
  position:absolute;
  right:28px;
  top:34px;
  width:54px;
  height:54px;
  display:grid;
  place-items:center;
  border-radius:18px;
  color:var(--teal-soft);
  background:rgba(34,199,189,.08);
  border:1px solid rgba(34,199,189,.2);
  font-size:24px;
}

.process-card h3,
.process-card p{
  position:relative;
  z-index:1;
}

.process-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.process-card p{
  margin:0;
  font-size:16px;
  color:#a8c5ca;
}

@media (max-width:980px){
  .process-grid{
    grid-template-columns:1fr;
  }
  .process-card{
    min-height:auto;
  }
}

@media (max-width:620px){
  .process-section{
    padding-top:70px;
    padding-bottom:70px;
  }
  .process-card{
    padding:30px 24px;
  }
  .process-number{
    font-size:48px;
  }
}


/* SoftNerd legal and compliance section */
.legal-section{padding-top:95px;padding-bottom:100px;position:relative;}
.legal-shell{position:relative;border-radius:34px;overflow:hidden;padding:48px;border:1px solid rgba(34,199,189,.25);background:linear-gradient(135deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),radial-gradient(circle at 12% 18%, rgba(34,199,189,.2), transparent 32%),radial-gradient(circle at 90% 78%, rgba(34,199,189,.11), transparent 30%);box-shadow:0 28px 100px rgba(0,0,0,.42);backdrop-filter:blur(18px);}
.legal-shell::before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.52;background:linear-gradient(90deg, transparent 0 49%, rgba(34,199,189,.08) 50%, transparent 51%),linear-gradient(0deg, transparent 0 49%, rgba(255,255,255,.04) 50%, transparent 51%);background-size:90px 90px;mask-image:radial-gradient(circle at center,#000,transparent 72%);}
.legal-intro{position:relative;z-index:1;max-width:880px;}.legal-intro h2{max-width:820px;}.legal-intro p:not(.eyebrow){max-width:780px;}
.legal-grid{position:relative;z-index:1;display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:38px;}
.legal-card{min-height:230px;padding:28px;border-radius:24px;background:rgba(2,9,12,.42);border:1px solid rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.05);transition:transform .25s ease,border-color .25s ease,background .25s ease;}
.legal-card:hover{transform:translateY(-5px);border-color:rgba(34,199,189,.38);background:rgba(34,199,189,.06);}
.legal-number{display:inline-flex;align-items:center;justify-content:center;width:46px;height:46px;border-radius:14px;margin-bottom:22px;color:#062225;background:linear-gradient(135deg,var(--teal),var(--teal-soft));font-weight:900;box-shadow:0 14px 40px rgba(34,199,189,.2);}
.legal-card h3{margin-bottom:12px;font-size:20px;}.legal-card p{margin:0;color:#a8c5ca;font-size:15px;line-height:1.65;}
.legal-note{position:relative;z-index:1;margin-top:28px;padding:18px 20px;border-radius:18px;color:#c9dedf;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);font-size:14px;line-height:1.65;}
@media (max-width:1050px){.legal-grid{grid-template-columns:repeat(2,1fr);}}
@media (max-width:640px){.legal-shell{padding:30px 22px;border-radius:26px;}.legal-grid{grid-template-columns:1fr;}}
