*{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Sora',sans-serif;
    }

    html{
      scroll-behavior:smooth;
    }

    body{
      background:#020617;
      color:white;
      overflow-x:hidden;
      font-size:16px;
      line-height:1.6;
    }

    :root{
      --site-max: 1120px;
      --site-pad: clamp(16px, 4vw, 48px);
    }

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

    /* ================= NAVBAR ================= */
    header{
      width:100%;
      display:flex;
      justify-content:center;
      position:fixed;
      top:0;
      z-index:1000;
      padding:20px;
          height: 93px;
    }

    .navbar{
      width:95%;
      max-width:var(--site-max);
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:16px 30px;
      border-radius:50px;
      background:rgba(255,255,255,0.08);
      backdrop-filter:blur(16px);
      border:1px solid rgba(255,255,255,0.12);
      box-shadow:0 8px 30px rgba(0,0,0,0.3);
    }

    .logo{
      display:flex;
      align-items:center;
      gap:10px;
      text-decoration:none;
      color:white;
      font-size:18px;
      font-weight:700;
    }

    .logo img{
      width:37px;
      height:37px;
      object-fit:contain;
    }

    .nav-links{
      display:flex;
      gap:40px;
    }

    .nav-links a{
      color:#dbeafe;
      text-decoration:none;
      font-size:13px;
      font-weight:600;
      text-transform:uppercase;
      transition:0.3s;
      letter-spacing:0.08em;
    }

    .nav-links a:hover{
      color:#3b82f6;
    }

    .btn{
      background:linear-gradient(135deg,#2563eb,#3b82f6);
      color:white;
      padding:5px 21px;
      border-radius:30px;
      text-decoration:none;
      font-weight:600;
      box-shadow:0 8px 20px rgba(59,130,246,0.35);
      transition:0.3s;
    }

    .btn:hover{
      transform:translateY(-2px);
    }

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

    .nav-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,0.12);
      background:rgba(255,255,255,0.06);
      color:#dbeafe;
      cursor:pointer;
      transition:0.25s;
    }

    .nav-toggle:hover{
      transform:translateY(-2px);
      border-color:rgba(59,130,246,0.35);
      box-shadow:0 12px 30px rgba(59,130,246,0.12);
    }

    /* ================= HERO ================= */
    .hero{
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      padding:140px 20px 60px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at top left,#0f172a,#020617 50%,#001233);
    }

    /* glow circles */
    .blur1,
    .blur2{
      position:absolute;
      border-radius:50%;
      filter:blur(120px);
      opacity:0.5;
      z-index:0;
    }

    .blur1{
      width:280px;
      height:280px;
      background:#2563eb;
      top:100px;
      left:10%;
    }

    .blur2{
      width:300px;
      height:300px;
      background:#1d4ed8;
      bottom:80px;
      right:10%;
    }

    /* flowing line */
    .line{
      position:absolute;
      width:900px;
      height:900px;
      border:2px solid rgba(59,130,246,0.18);
      border-radius:45% 55% 60% 40%;
      animation:rotateLine 18s linear infinite;
      z-index:0;
    }

    .line2{
      width:700px;
      height:700px;
      animation-direction:reverse;
      animation-duration:14s;
    }

    @keyframes rotateLine{
      from{
        transform:rotate(0deg);
      }
      to{
        transform:rotate(360deg);
      }
    }

    .hero-content{
      max-width:860px;
      position:relative;
      z-index:2;
    }

    .tag{
      display:inline-block;
      padding:8px 18px;
      background:rgba(59,130,246,0.12);
      border:1px solid rgba(59,130,246,0.25);
      color:#93c5fd;
      border-radius:30px;
      font-size:13px;
      font-weight:600;
      margin-bottom:25px;
    }

    .hero h1{
      font-size:clamp(42px, 5vw, 62px);
      line-height:1.1;
      font-weight:800;
      margin-bottom:20px;
      letter-spacing:-2px;
    }

    .hero h1 span{
      color:#3b82f6;
      text-shadow:0 0 20px rgba(59,130,246,0.5);
    }

    .hero p{
      max-width:720px;
      margin:auto;
      color:#cbd5e1;
      font-size:clamp(15px, 1.35vw, 18px);
      line-height:1.8;
      margin-bottom:35px;
    }

    .hero-buttons{
      display:flex;
      justify-content:center;
      gap:18px;
      flex-wrap:wrap;
    }

    .primary-btn{
      background:linear-gradient(135deg,#2563eb,#3b82f6);
      color:#fff;
      padding:14px 30px;
      border-radius:40px;
      text-decoration:none;
      font-weight:600;
      box-shadow:0 10px 25px rgba(37,99,235,0.4);
    }

    .secondary-btn{
      background:rgba(255,255,255,0.08);
      color:#fff;
      padding:14px 30px;
      border-radius:40px;
      text-decoration:none;
      font-weight:600;
      border:1px solid rgba(255,255,255,0.12);
      backdrop-filter:blur(8px);
    }

    /* ================= RESPONSIVE ================= */
    @media(max-width:992px){
      .hero{
        padding:130px 20px 60px;
      }

      header{
        padding:16px;
      }

      .navbar{
        width:100%;
      }

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

      .nav-toggle{
        width:44px;
        height:44px;
        border-radius:16px;
      }

      .nav-links{
        display:flex;
        position:fixed;
        top:-17px;
        right:-18px;
        left:auto;
        height:100vh;
        width: clamp(260px, 50vw, 360px);
        flex-direction:column;
        gap:14px;
        padding:92px 18px 18px;
        background:rgba(2,6,23,0.99);
        border:1px solid rgba(255,255,255,0.10);
        backdrop-filter:blur(18px);
        -webkit-backdrop-filter:blur(18px);
        transform:translateX(110%);
        opacity:1;
        pointer-events:none;
        transition:transform 0.28s ease;
        box-shadow:-20px 0 60px rgba(0,0,0,0.45);
        z-index: 1001;
      }

      .btn{
        display:inline-flex;
      }

      .nav-toggle{
        display:inline-flex;
        align-items:center;
        justify-content:center;
      }
    }

    @media(max-width:768px){
      .hero{
        padding:120px 20px 54px;
      }

      .line{
        width:500px;
        height:500px;
      }

      .navbar{
        padding:16px 20px;
      }

      .logo{
        font-size:20px;
      }
    }

    @media(max-width:992px){
      body.nav-locked{
        overflow:hidden;
      }

      .navbar.nav-open{
        border-color:rgba(59,130,246,0.25);
        box-shadow:0 12px 40px rgba(59,130,246,0.12), 0 8px 30px rgba(0,0,0,0.3);
      }

      .navbar.nav-open .nav-links{
        transform:translateX(0);
        pointer-events:auto;
      }

      .navbar.nav-open .nav-links a{
        font-size:14px;
        padding:14px 14px;
        border-radius:16px;
        background:rgba(255,255,255,0.03);
        border:1px solid rgba(255,255,255,0.06);
        width:100%;
      }

      .navbar.nav-open .nav-links a:hover{
        background:rgba(59,130,246,0.10);
        border-color:rgba(59,130,246,0.25);
      }
    }

    @media(max-width:992px){
      .nav-links{
        align-items:flex-start;
        justify-content:flex-start;
      }
    }

    @media(max-width:520px){
      .nav-links{
        width: 86vw;
        padding:92px 16px 16px;
      }
    }

    /* Overlay (mobile drawer) */
    .nav-overlay{
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.45);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.28s ease;
      z-index: 999;
    }

    @media(max-width:992px){
      .nav-links .nav-cta{
        margin-top: 6px;
        background: linear-gradient(135deg,#2563eb,#3b82f6);
        border: 1px solid rgba(59,130,246,0.35);
        color: #fff;
        box-shadow: 0 10px 25px rgba(37,99,235,0.25);
      }
    }

    .navbar{
      z-index: 1000;
    }

    @media(max-width:992px){
      body.nav-locked .nav-overlay{
        opacity: 1;
        pointer-events: auto;
      }
    }


    /* ================= OVERVIEW SECTION ================= */
.overview {
  padding: 110px var(--site-pad);
  background: linear-gradient(180deg, #020617, #071126);
  position: relative;
  overflow: hidden;
}

.overview-container {
  max-width: var(--site-max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.section-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #60a5fa;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  margin-bottom: 22px;
}

.overview-text h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  max-width: 700px;
}

.overview-text h2 span {
  color: #3b82f6;
  text-shadow: 0 0 18px rgba(59,130,246,0.45);
}

.overview-text h4 {
  font-size: 18px;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.6;
}

.overview-text p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 14px;
  max-width: 700px;
}

/* RIGHT CARD */
.glass-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.glass-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
}

.feature-box {
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.feature-box:last-child {
  border-bottom: none;
}

.feature-box span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.12);
  color: #3b82f6;
  font-weight: bold;
  font-size: 16px;
}

.feature-box p {
  color: #dbeafe;
  font-size: 16px;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .overview-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .overview-text h2 {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .overview {
    padding: 80px 6%;
  }

  .overview-text h2 {
    font-size: 32px;
  }

  .overview-text h4 {
    font-size: 18px;
  }

  .overview-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .glass-card {
    padding: 28px;
  }
}


/* ================= FEATURES SECTION ================= */
.features {
  padding: 110px var(--site-pad);
  background: linear-gradient(180deg, #071126, #020617);
  position: relative;
}

.features-container {
  max-width: var(--site-max);
  margin: auto;
}

.section-heading {
  text-align: center;
  margin-bottom: 70px;
}

.section-heading h2 {
  font-size: clamp(30px, 3.3vw, 44px);
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}

.section-heading h2 span {
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59,130,246,0.45);
}

.section-heading p {
  max-width: 720px;
  margin: auto;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.8;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  padding: 28px 22px;
  border-radius: 24px;
  transition: 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.feature-card{
  text-decoration: none;
  color: inherit;
  display: block;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.4);
  box-shadow: 0 16px 40px rgba(59,130,246,0.18);
}

/* ICON */
.feature-card i {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
  font-size: 22px;
  margin-bottom: 18px;
}

/* TEXT */
.feature-card h3 {
  color: white;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.4;
}

.feature-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.8;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 80px 6%;
  }

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

  .section-heading h2 {
    font-size: 32px;
  }

  .section-heading p {
    font-size: 15px;
  }

  .feature-card {
    padding: 28px 22px;
  }
}


/* ================= PROCESS SECTION ================= */
.process {
  padding: 110px var(--site-pad);
  background: linear-gradient(180deg, #020617, #071126);
  position: relative;
  overflow: hidden;
}

.process-container {
  max-width: var(--site-max);
  margin: auto;
}

/* TIMELINE */
.process-timeline{
  margin-top: 70px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 22px;
  flex-wrap: nowrap;
  position: relative;
}

/* STEP */
.process-step {
  width: 100%;
  max-width: 210px;
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: calc((var(--i, 1) - 1) * 90ms);
}

.process-step.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* NUMBER */
.step-number {
  width: 52px;
  height: 52px;
  margin: auto auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(59,130,246,0.35);
}

/* CARD */
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 26px 20px;
  transition: 0.35s ease;
  min-height: 250px;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 14px 35px rgba(59,130,246,0.16);
}

/* ICON */
.step-card i {
  width: 54px;
  height: 54px;
  margin: auto auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(59,130,246,0.1);
  color: #3b82f6;
  font-size: 22px;
}

/* TEXT */
.step-card h3 {
  color: white;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 15px;
}

.step-card p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.8;
}

/* CONNECTOR (DESKTOP) */
.process-step:not(:last-child)::after{
  content:"";
  position:absolute;
  top: 26px; /* middle of number */
  left: calc(50% + 26px);
  width: calc(100% + 22px);
  height: 2px;
  background:
    linear-gradient(90deg,
      rgba(59,130,246,0.15),
      rgba(59,130,246,0.95),
      rgba(59,130,246,0.15)
    );
  background-size: 220% 100%;
  opacity: 0.65;
  filter: drop-shadow(0 6px 18px rgba(59,130,246,0.18));
  animation: flowLineX 2.4s linear infinite;
}

@keyframes flowLineX{
  0%{ background-position: 0% 50%; }
  100%{ background-position: 220% 50%; }
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-timeline{
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-step{
    max-width: 260px;
  }

  .process-step:not(:last-child)::after{
    display:none;
  }
}

@media (max-width: 768px) {
  .process {
    padding: 80px 6%;
  }

  .process-timeline{
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    padding-left: 18px;
  }

  .process-timeline::before{
    content:"";
    position:absolute;
    left: 18px;
    top: 26px;
    bottom: 26px;
    width: 2px;
    border-radius: 2px;
    background:
      linear-gradient(180deg,
        rgba(59,130,246,0.15),
        rgba(59,130,246,0.95),
        rgba(59,130,246,0.15)
      );
    background-size: 100% 220%;
    opacity: 0.65;
    animation: flowLineY 2.6s linear infinite;
  }

  @keyframes flowLineY{
    0%{ background-position: 50% 0%; }
    100%{ background-position: 50% 220%; }
  }

  .process-step{
    max-width: none;
    text-align: left;
    padding-left: 22px;
  }

  .step-number{
    margin: 0 0 16px;
  }

  .step-card {
    min-height: auto;
    padding: 30px 22px;
  }
}



/* ================= FAQ SECTION ================= */
.faq {
  padding: 110px var(--site-pad);
  background: linear-gradient(180deg, #071126, #020617);
}

.faq-container {
  max-width: var(--site-max);
  margin: auto;
}

.faq-wrapper {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ CARD */
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(59,130,246,0.25);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question i {
  color: #3b82f6;
  transition: 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
  padding: 0 28px;
}

.faq-answer p {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 14px;
  padding-bottom: 24px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 768px) {
  .faq {
    padding: 80px 6%;
  }

  .faq-question {
    font-size: 15px;
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px;
  }
}


/* ================= FOOTER ================= */
.footer {
  background: linear-gradient(180deg, #020617, #000814);
  padding: 85px var(--site-pad) 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-container {
  max-width: var(--site-max);
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
}

/* BRAND */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 22px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo span {
  font-size: 26px;
  font-weight: 700;
  color: white;
  background: linear-gradient(90deg,#fff,#60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: #94a3b8;
  line-height: 1.9;
  font-size: 15px;
  max-width: 350px;
  margin-bottom: 28px;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
  color: #60a5fa;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.social-icons a:hover {
  transform: translateY(-4px);
  background: rgba(59,130,246,0.15);
  box-shadow: 0 8px 20px rgba(59,130,246,0.2);
}

/* LINKS */
.footer-links h3,
.footer-contact h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 22px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 14px;
  font-size: 15px;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #3b82f6;
  transform: translateX(4px);
}

/* CONTACT */
.contact-item {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.08);
  color: #3b82f6;
}

.contact-item span {
  color: #cbd5e1;
  font-size: 15px;
}

/* BOTTOM */
.footer-bottom {
  max-width: var(--site-max);
  margin: auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
}

.footer-policy {
  display: flex;
  gap: 22px;
}

.footer-policy a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-policy a:hover {
  color: #3b82f6;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-container {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 70px 6% 30px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-policy {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* ================= CTA + CONTACT ================= */
.cta-contact {
  padding: 110px var(--site-pad);
  background: linear-gradient(180deg, #071126, #020617);
  position: relative;
  overflow: hidden;
}

.cta-container {
  max-width: var(--site-max);
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

/* LEFT */
.cta-content h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  color: white;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.cta-content h2 span {
  color: #3b82f6;
  text-shadow: 0 0 20px rgba(59,130,246,0.4);
}

.cta-content p {
  color: #94a3b8;
  font-size: 16px;
  line-height: 1.9;
  max-width: 620px;
  margin-bottom: 35px;
}

/* POINTS */
.cta-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.point {
  display: flex;
  gap: 14px;
  align-items: center;
}

.point i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.08);
  color: #3b82f6;
  font-size: 18px;
}

.point span {
  color: #dbeafe;
  font-size: 15px;
  font-weight: 500;
}

/* FORM BOX */
.contact-form-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.35);
}

.contact-form-box h3 {
  color: white;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 28px;
}

/* INPUTS */
.input-group {
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  color: white;
  font-size: 15px;
  outline: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #94a3b8;
}

.contact-form select {
  color: #4682cc;
}

/* CAPTCHA + STATUS */
.captcha-box {
  margin-bottom: 18px;
}

.captcha-box .equation {
  margin: 0 0 10px;
  padding: 0 18px;
  color: #cbd5e1;
  font-size: 14px;
  font-weight: 600;
}

.form-status {
  margin-top: 12px;
  padding: 0 2px;
  font-size: 14px;
  line-height: 1.4;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* ================= SIMPLE PAGES ================= */
.page-hero{
  padding: 130px var(--site-pad) 40px;
  background: radial-gradient(circle at top left,#0f172a,#020617 55%,#001233);
  position: relative;
  overflow: hidden;
}

.page-body{
  padding: 30px var(--site-pad) 110px;
  background: linear-gradient(180deg, #020617, #071126);
}

.page-container{
  max-width: var(--site-max);
  margin: 0 auto;
}

.page-title{
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 14px 0 12px;
}

.page-title span{
  color:#3b82f6;
  text-shadow:0 0 20px rgba(59,130,246,0.45);
}

.page-lead{
  color:#cbd5e1;
  max-width: 780px;
  line-height: 1.9;
  font-size: 16px;
}

.page-card{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 28px 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.page-card h3{
  font-size: 18px;
  margin: 18px 0 10px;
}

.page-card p,
.page-card li{
  color:#94a3b8;
  line-height: 1.9;
  font-size: 15px;
}

.page-card ul{
  padding-left: 18px;
  margin: 10px 0 18px;
}

/* BUTTON */
.contact-btn {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(59,130,246,0.35);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .cta-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .cta-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .cta-contact {
    padding: 80px 6%;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .contact-form-box {
    padding: 28px;
  }
}




/* ================= LOADER ================= */
#preloader{
    position: fixed;
    width: 100%;
    height: 100vh;
    background: radial-gradient(circle at center, #071126, #020617, #000814);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* CENTER CONTENT */
.loader-content{
    text-align: center;
    position: relative;
}

/* LOGO */
.loader-logo{
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 20px;
    animation: pulseLogo 2s infinite ease-in-out;
    filter: drop-shadow(0 0 20px rgba(59,130,246,0.6));
}

/* BRAND NAME */
.loader-content h2{
    font-size: 34px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    color: white;
    background: linear-gradient(90deg,#fff,#60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LOADING BAR */
.loader-bar{
    width: 220px;
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    margin: auto;
    position: relative;
}

.loader-bar span{
    position: absolute;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg,#2563eb,#60a5fa);
    border-radius: 20px;
    animation: loadingMove 1.5s infinite ease-in-out;
    box-shadow: 0 0 15px rgba(59,130,246,0.5);
}

/* ANIMATIONS */
@keyframes pulseLogo{
    0%{
        transform: scale(1);
        opacity: 0.9;
    }
    50%{
        transform: scale(1.08);
        opacity: 1;
    }
    100%{
        transform: scale(1);
        opacity: 0.9;
    }
}

@keyframes loadingMove{
    0%{
        left: -40%;
    }
    100%{
        left: 100%;
    }
}

/* HIDE */
#preloader.hide{
    opacity: 0;
    visibility: hidden;
}

/* MOBILE */
@media (max-width:768px){
    .loader-logo{
        width: 70px;
        height: 70px;
    }

    .loader-content h2{
        font-size: 28px;
    }

    .loader-bar{
        width: 180px;
    }
}
