*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  position:relative;

  margin:0;

  color:white;

  font-family:Arial, Helvetica, sans-serif;

  background:
    linear-gradient(
      180deg,
      #020617 0%,
      #030712 45%,
      #050816 100%
    );

  overflow-x:hidden;

  min-height:100vh;
}

/* GRID OVERLAY */

body::before{
  content:"";

  position:fixed;
  inset:0;

  background:

    radial-gradient(
      circle at top left,
      rgba(59,130,246,.16),
      transparent 25%
    ),

    radial-gradient(
      circle at 80% 20%,
      rgba(14,165,233,.12),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(168,85,247,.14),
      transparent 35%
    );

  animation:
    auroraMove 28s ease-in-out infinite alternate;

  pointer-events:none;

  z-index:0;
}

body::after{
  content:"";

  position:fixed;
  inset:0;

  background-image:

    linear-gradient(
      rgba(255,255,255,.045) 1px,
      transparent 1px
    ),

    linear-gradient(
      90deg,
      rgba(255,255,255,.045) 1px,
      transparent 1px
    );

  background-size:80px 80px;

  pointer-events:none;

  z-index:1;
}

/* REVEAL */

.reveal{
  will-change:transform, opacity;
}

/* SECTIONS */

.services,
.timeline-section,
.contact{
  position:relative;

  isolation:isolate;

  padding:140px 60px;

  z-index:10;
}

.services::before,
.timeline-section::before,
.contact::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.015),
      rgba(255,255,255,.005)
    );

  z-index:-1;
}

.services::after,
.timeline-section::after{
  content:"";

  position:absolute;

  left:50%;
  bottom:-120px;

  transform:translateX(-50%);

  width:70%;
  height:240px;

  background:
    radial-gradient(
      ellipse,
      rgba(59,130,246,.18),
      transparent 70%
    );

  filter:blur(80px);

  pointer-events:none;

  z-index:-1;
}

/* SECTION HEADER */

.section-header{
  margin-bottom:60px;
}

.section-header span{
  display:inline-block;

  color:#3b82f6;

  text-transform:uppercase;
  letter-spacing:.12em;

  font-size:13px;
  font-weight:700;

  margin-bottom:14px;
}

.section-header h2{
  font-size:48px;

  color:white;

  margin:0;
}

/* SERVICES */

.services-grid{
  display:grid;

  grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

  gap:32px;
}

/* CARD */

.service-card{
  position:relative;

  overflow:hidden;

  display:flex;
  flex-direction:column;

  min-height:320px;

  padding:34px;

  border-radius:32px;

  text-decoration:none;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.08),
      rgba(255,255,255,.025)
    );

  border:
    1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);

  transition:
    transform .45s cubic-bezier(.16,1,.3,1),
    border-color .35s ease,
    box-shadow .35s ease;

  transform:
    translateZ(0);

  isolation:isolate;
}

/* LIGHT */

.service-card::before{
  content:"";

  position:absolute;
  inset:-2px;

  border-radius:inherit;

  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.45),
      transparent 30%,
      transparent 70%,
      rgba(168,85,247,.35)
    );

  opacity:0;

  transition:.45s ease;

  z-index:-2;
}

/* GLOW */

.service-card::after{
  content:"";

  position:absolute;

  width:240px;
  height:240px;

  background:
    radial-gradient(
      circle,
      rgba(59,130,246,.25),
      transparent 70%
    );

  top:-80px;
  right:-80px;

  opacity:0;

  transition:.45s ease;

  pointer-events:none;
}

/* HOVER */

.service-card:hover{

  transform:
    translateY(-12px)
    scale(1.015);

  border-color:
    rgba(59,130,246,.35);

  box-shadow:
    0 30px 80px rgba(0,0,0,.35),
    0 10px 40px rgba(37,99,235,.18);
}

.service-card:hover::before{
  opacity:1;
}

.service-card:hover::after{
  opacity:1;
}

/* TOP */

.service-top{
  display:flex;

  justify-content:space-between;
  align-items:flex-start;

  margin-bottom:32px;
}

/* ICON */

.service-icon{
  width:68px;
  height:68px;

  border-radius:22px;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:30px;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.14),
      rgba(255,255,255,.04)
    );

  border:
    1px solid rgba(255,255,255,.08);

  box-shadow:
    inset 0 1px 1px rgba(255,255,255,.06),
    0 10px 30px rgba(0,0,0,.25);
}

/* BADGE */

.service-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:34px;

  padding:0 14px;

  border-radius:999px;

  font-size:11px;
  font-weight:800;

  letter-spacing:.14em;

  text-transform:uppercase;
}

.service-badge.public{
  background:
    rgba(34,197,94,.14);

  color:#4ade80;

  border:
    1px solid rgba(74,222,128,.18);
}

.service-badge.private{
  background:
    rgba(245,158,11,.12);

  color:#fbbf24;

  border:
    1px solid rgba(251,191,36,.18);
}

.service-badges{
  display:flex;
  gap:10px;

  flex-wrap:wrap;
}

.service-tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:8px 12px;

  border-radius:999px;

  font-size:11px;
  font-weight:700;

  letter-spacing:.08em;

  background:
    rgba(255,255,255,.06);

  color:
    rgba(255,255,255,.72);

  border:
    1px solid rgba(255,255,255,.08);
}

.service-tag{
  color:rgba(255,255,255,.72) !important;
}

/* TITLE */

.service-card h3{
  margin:0 0 18px;

  font-size:30px;
  font-weight:800;

  letter-spacing:-.03em;

  color:white;
}

/* DESCRIPTION */

.service-card p{
  margin:0;

  color:rgba(255,255,255,.68);

  font-size:16px;

  line-height:1.9;
}

/* FOOTER */

.service-footer{
  margin-top:auto;

  padding-top:36px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* OPEN */

.service-open{
  display:flex;
  align-items:center;
  gap:10px;

  color:white;

  font-size:14px;
  font-weight:700;

  letter-spacing:.04em;
}

/* STATUS */

.service-status{
  display:flex;
  align-items:center;
  gap:10px;

  color:rgba(255,255,255,.55);

  font-size:13px;
}

.service-status-dot{
  width:10px;
  height:10px;

  border-radius:999px;

  background:#22c55e;

  box-shadow:
    0 0 14px #22c55e;
}

.service-category{
  margin:28px 0 18px;

  text-align:center;

  color:#60a5fa;

  text-transform:uppercase;

  letter-spacing:.18em;

  font-size:12px;

  font-weight:700;
}

/* TIMELINE */

.timeline-grid{
  position:relative;

  display:flex;
  flex-direction:column;

  gap:34px;

  padding-left:80px;
}

/* LINE */

.timeline-grid::before{
  content:"";

  position:absolute;

  top:0;
  bottom:0;
  left:28px;

  width:2px;

  background:
    linear-gradient(
      180deg,
      rgba(59,130,246,.8),
      rgba(59,130,246,.1)
    );

  box-shadow:
    0 0 20px rgba(59,130,246,.35);
}

/* CARD */

.timeline-card{
  position:relative;

  padding:34px 38px;

  border-radius:30px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.06),
      rgba(255,255,255,.02)
    );

  border:
    1px solid rgba(255,255,255,.08);

  backdrop-filter:blur(18px);

  overflow:hidden;

  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease;
}

/* HOVER */

.timeline-card:hover{

  transform:
    translateY(-6px);

  border-color:
    rgba(59,130,246,.3);

  box-shadow:
    0 20px 60px rgba(0,0,0,.28),
    0 10px 30px rgba(37,99,235,.12);
}

/* LIGHT */

.timeline-card::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at top right,
      rgba(59,130,246,.16),
      transparent 35%
    );

  pointer-events:none;
}

/* NODE */

.timeline-node{
  position:absolute;

  left:-66px;
  top:40px;

  width:22px;
  height:22px;

  border-radius:999px;

  background:
    radial-gradient(
      circle,
      #60a5fa,
      #2563eb
    );

  border:
    4px solid rgba(2,6,23,.95);

  box-shadow:
    0 0 25px rgba(59,130,246,.7),
    0 0 50px rgba(59,130,246,.35);

  z-index:2;
}

/* LABEL */

.timeline-label{
  display:inline-flex;
  align-items:center;

  height:34px;

  padding:0 14px;

  border-radius:999px;

  background:
    rgba(59,130,246,.12);

  border:
    1px solid rgba(59,130,246,.18);

  color:#60a5fa;

  font-size:12px;
  font-weight:800;

  letter-spacing:.14em;

  text-transform:uppercase;

  margin-bottom:18px;
}

/* TEXT */

.timeline-card p{
  margin:0;

  color:rgba(255,255,255,.72);

  font-size:17px;

  line-height:1.9;
}

/* MOBILE */

@media(max-width:768px){

  .timeline-grid{
    padding-left:50px;
  }

  .timeline-grid::before{
    left:18px;
  }

  .timeline-node{
    left:-36px;
  }

  .timeline-card{
    padding:28px;
  }

}

/* CONTACT */

.contact{
  position:relative;

  padding:
    220px 60px 140px;

  overflow:hidden;
}

/* GLOW */

.contact-glow{
  position:absolute;

  width:700px;
  height:700px;

  left:50%;
  top:50%;

  transform:
    translate(-50%,-50%);

  background:
    radial-gradient(
      circle,
      rgba(59,130,246,.22),
      transparent 70%
    );

  filter:blur(120px);

  pointer-events:none;

  z-index:0;
}

/* CONTENT */

.contact-box{
  position:relative;

  z-index:2;

  max-width:920px;
}

.contact-box span{
  display:inline-block;

  margin-bottom:22px;

  color:#60a5fa;

  font-size:13px;
  font-weight:800;

  letter-spacing:.18em;

  text-transform:uppercase;
}

/* BIG TITLE */

.contact-box h2{
  margin:0;

  font-size:
    clamp(64px,9vw,140px);

  line-height:.92;

  letter-spacing:-.06em;

  color:white;
}

/* TEXT */

.contact-box p{
  margin-top:42px;

  max-width:760px;

  color:
    rgba(255,255,255,.68);

  font-size:22px;

  line-height:1.9;
}

/* ACTIONS */

.contact-actions{
  display:flex;
  align-items:center;

  gap:22px;

  margin-top:54px;

  flex-wrap:wrap;
}

/* PRIMARY */

.contact-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height:62px;

  padding:0 34px;

  border-radius:22px;

  text-decoration:none;

  font-size:15px;
  font-weight:800;

  color:white;

  background:
    linear-gradient(
      135deg,
      #0ea5ff,
      #2563eb
    );

  box-shadow:
    0 12px 40px rgba(37,99,235,.35);

  transition:.35s ease;
}

.contact-btn:hover{

  transform:
    translateY(-3px);

  box-shadow:
    0 20px 60px rgba(37,99,235,.45);
}

/* SECONDARY */

.contact-link{
  color:
    rgba(255,255,255,.72);

  text-decoration:none;

  font-size:15px;
  font-weight:700;

  transition:.25s ease;
}

.contact-link:hover{
  color:white;
}

/* FOOTER */

.footer{
  display:flex;

  justify-content:space-between;
  align-items:center;

  gap:30px;

  padding:
    40px 60px 60px;

  border-top:
    1px solid rgba(255,255,255,.06);

  position:relative;

  z-index:5;
}

/* LEFT */

.footer-brand{
  color:white;

  font-size:18px;
  font-weight:800;
}

.footer-copy{
  margin-top:8px;

  color:
    rgba(255,255,255,.45);

  font-size:14px;
}

/* LINKS */

.footer-links{
  display:flex;
  align-items:center;

  gap:26px;
}

.footer-links a{
  color:
    rgba(255,255,255,.52);

  text-decoration:none;

  font-size:14px;
  font-weight:600;

  transition:.25s ease;
}

.footer-links a:hover{
  color:white;
}

/* MOBILE */

@media(max-width:768px){

  .contact{
    padding:
      160px 24px 100px;
  }

  .contact-box h2{
    font-size:58px;
  }

  .contact-box p{
    font-size:18px;
  }

  .footer{
    flex-direction:column;
    align-items:flex-start;

    padding:
      32px 24px 50px;
  }

  .footer-links{
    flex-wrap:wrap;
  }

}

/* MOBILE */

@media(max-width:768px){

  .services,
  .timeline-section,
  .contact{
    padding:90px 24px;
  }

  .section-header h2{
    font-size:36px;
  }

  .contact-box h2{
    font-size:42px;
  }

  .service-card{
    padding:26px;
  }

}

@keyframes auroraMove{

  0%{
    transform:
      translate3d(0%,0%,0)
      scale(1);
  }

  25%{
    transform:
      translate3d(-6%,4%,0)
      scale(1.08);
  }

  50%{
    transform:
      translate3d(4%,-5%,0)
      scale(1.12);
  }

  75%{
    transform:
      translate3d(-3%,3%,0)
      scale(1.06);
  }

  100%{
    transform:
      translate3d(6%,-4%,0)
      scale(1.14);
  }

}

.particles{
  position:fixed;
  inset:0;

  overflow:hidden;

  pointer-events:none;

  z-index:1;
}

.particles span{
  position:absolute;

  display:block;

  border-radius:999px;

  filter:blur(40px);

  opacity:.18;

  animation:
    floatParticle linear infinite;
}

.particles span:nth-child(1){
  width:240px;
  height:240px;

  background:#2563eb;

  left:10%;
  top:20%;

  animation-duration:18s;
}

.particles span:nth-child(2){
  width:180px;
  height:180px;

  background:#0ea5e9;

  right:15%;
  top:30%;

  animation-duration:22s;
}

.particles span:nth-child(3){
  width:260px;
  height:260px;

  background:#7c3aed;

  left:40%;
  bottom:10%;

  animation-duration:26s;
}

.particles span:nth-child(4){
  width:140px;
  height:140px;

  background:#3b82f6;

  right:30%;
  bottom:20%;

  animation-duration:20s;
}

.particles span:nth-child(5){
  width:200px;
  height:200px;

  background:#9333ea;

  left:70%;
  top:10%;

  animation-duration:24s;
}
@keyframes floatParticle{

  0%{
    transform:
      translateY(0)
      translateX(0)
      scale(1);
  }

  50%{
    transform:
      translateY(-40px)
      translateX(30px)
      scale(1.08);
  }

  100%{
    transform:
      translateY(20px)
      translateX(-20px)
      scale(.96);
  }

}

/* LEGAL */

.footer-legal{
  background:none;

  border:none;

  padding:0;

  cursor:pointer;

  color:
    rgba(255,255,255,.52);

  font-size:14px;
  font-weight:600;

  transition:.25s ease;
}

.footer-legal:hover{
  color:white;
}
/* CONTACT FORM */

.contact-form{
  margin-top:54px;

  max-width:760px;
}

.contact-grid{
  display:grid;

  grid-template-columns:
    repeat(2,minmax(0,1fr));

  gap:20px;
}

.form-group{
  margin-bottom:20px;
}

.form-group label{
  display:block;

  margin-bottom:10px;

  color:
    rgba(255,255,255,.72);

  font-size:14px;
  font-weight:600;
}

.form-group input,
.form-group textarea{
  width:100%;

  border:none;

  outline:none;

  padding:18px 20px;

  border-radius:22px;

  background:
    rgba(255,255,255,.05);

  border:
    1px solid rgba(255,255,255,.08);

  color:white;

  font-size:15px;

  backdrop-filter:blur(14px);

  transition:.25s ease;
}

.form-group textarea{
  resize:vertical;

  min-height:180px;
}

.form-group input:focus,
.form-group textarea:focus{

  border-color:
    rgba(59,130,246,.6);

  box-shadow:
    0 0 0 4px rgba(59,130,246,.12);
}

.contact-status{
  color:
    rgba(255,255,255,.72);

  font-size:14px;
}

/* HONEYPOT */

.hp-field{
  display:none !important;
}

/* MOBILE */

@media(max-width:768px){

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

}

/* CONTACT STATUS */

.contact-status{
  display:flex;
  align-items:center;

  min-height:54px;

  padding:0 18px;

  border-radius:18px;

  font-size:14px;
  font-weight:600;

  opacity:0;

  transform:
    translateY(10px);

  transition:.3s ease;
}

/* SHOW */

.contact-status.show{
  opacity:1;

  transform:
    translateY(0);
}

/* SUCCESS */

.contact-status.success{

  color:#4ade80;

  background:
    rgba(34,197,94,.12);

  border:
    1px solid rgba(34,197,94,.22);

  box-shadow:
    0 0 30px rgba(34,197,94,.12);
}

/* ERROR */

.contact-status.error{

  color:#f87171;

  background:
    rgba(239,68,68,.12);

  border:
    1px solid rgba(239,68,68,.22);

  box-shadow:
    0 0 30px rgba(239,68,68,.12);
}
/* MODAL */

.service-modal{
  position:fixed;
  inset:0;

  display:flex;

  align-items:flex-start;
  justify-content:center;

  padding:
    110px 40px 40px;

  background:
    rgba(0,0,0,.65);

  backdrop-filter:blur(12px);

  opacity:0;
  visibility:hidden;

  transition:.25s ease;

  z-index:999;
}

.service-modal.active{
  opacity:1;
  visibility:visible;
}

.service-modal-inner{
  position:relative;

  width:min(760px,100%);

  max-height:
    calc(100vh - 80px);

  overflow-y:auto;

  padding:40px;

  border-radius:32px;

  background:
    linear-gradient(
      180deg,
      rgba(15,23,42,.96),
      rgba(2,6,23,.96)
    );

  border:
    1px solid rgba(255,255,255,.08);

  box-shadow:
    0 20px 80px rgba(0,0,0,.45);

  scrollbar-width:thin;

  scrollbar-color:
    rgba(59,130,246,.5)
    transparent;
}

.service-modal-inner::-webkit-scrollbar{
  width:10px;
}

.service-modal-inner::-webkit-scrollbar-track{
  background:transparent;
}

.service-modal-inner::-webkit-scrollbar-thumb{
  background:
    rgba(59,130,246,.35);

  border-radius:999px;
}

.service-modal-inner::-webkit-scrollbar-thumb:hover{
  background:
    rgba(59,130,246,.55);
}

@media(max-width:768px){

  .service-modal{
    padding:18px;
  }

  .service-modal-inner{
    padding:28px;

    max-height:
      calc(100vh - 36px);
  }

  .service-modal h3{
    font-size:34px;
  }

}

.service-modal-close{
  position:absolute;

  top:22px;
  right:22px;

  width:42px;
  height:42px;

  border:none;

  border-radius:14px;

  background:
    rgba(255,255,255,.06);

  color:white;

  cursor:pointer;
}

.service-modal-top{
  display:flex;
  align-items:center;

  gap:24px;

  margin-bottom:26px;
}

.service-modal-icon{
  width:82px;
  height:82px;

  border-radius:24px;

  display:flex;
  align-items:center;
  justify-content:center;

  background:
    rgba(255,255,255,.06);

  font-size:36px;
}

.service-modal-category{
  color:
    rgba(255,255,255,.45);

  text-transform:uppercase;

  letter-spacing:.12em;

  font-size:12px;

  margin-bottom:10px;
}

.service-modal h3{
  margin:0;

  font-size:42px;

  color:white;
}

.modal-tag{
  margin-bottom:28px;
}

.service-modal-description{
  color:
    rgba(255,255,255,.72);

  line-height:1.9;

  font-size:17px;
}

.service-features{
  display:grid;

  gap:14px;

  margin-top:34px;
}

.service-feature{
  padding:18px 22px;

  border-radius:18px;

  background:
    rgba(255,255,255,.04);

  border:
    1px solid rgba(255,255,255,.06);

  color:white;
}

.service-open-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:36px;

  padding:16px 24px;

  border-radius:18px;

  text-decoration:none;

  font-weight:700;

  color:white;

  background:
    linear-gradient(
      135deg,
      #0ea5ff,
      #2563eb
    );
}
@media(max-width:768px){

  .service-modal{
    padding:
      90px 18px 18px;
  }

}