
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body{
    background:#020b1c;
    color:#fff;
    overflow-x:hidden;
}
/* ================= FLOATING CODE BACKGROUND ================= */

.code-bg{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:0;              /* <-- NOT -1 */
  pointer-events:none;
  overflow:hidden;
}


.code-bg span{
  position:absolute;
  bottom:-60px;
  font-size:22px;
  color:rgb(255, 255, 255);
  animation:codeFloat linear infinite;
  text-shadow:0 0 12px rgba(1, 15, 93, 0.822);
}

/* Individual movement */
.code-bg span:nth-child(1){left:5%; animation-duration:18s;}
.code-bg span:nth-child(2){left:15%; animation-duration:22s;}
.code-bg span:nth-child(3){left:30%; animation-duration:26s;}
.code-bg span:nth-child(4){left:45%; animation-duration:20s;}
.code-bg span:nth-child(5){left:60%; animation-duration:24s;}
.code-bg span:nth-child(6){left:70%; animation-duration:28s;}
.code-bg span:nth-child(7){left:80%; animation-duration:30s;}
.code-bg span:nth-child(8){left:90%; animation-duration:34s;}
.code-bg span:nth-child(9){left:50%; animation-duration:36s;}

@keyframes codeFloat{
  0%{
    transform:translateY(0) rotate(0deg);
    opacity:0;
  }
  10%{opacity:0.5;}
  50%{opacity:0.3;}
  100%{
    transform:translateY(-120vh) rotate(360deg);
    opacity:0;
  }
}
/* ================= page_head ================= */
.page_head{
    min-height:100vh;
    padding-top:140px;
    background:
        radial-gradient(circle at top,#0b1f3f,#020b1c);
    position:relative;
}

.page_head-content{
    max-width:900px;
    margin:auto;
    text-align:center;
    padding:0 20px;
}

.tag{
    display:inline-block;
    padding:8px 18px;
    border-radius:20px;
    background:rgba(255,255,255,0.1);
    color:#7cc7ff;
    font-size:13px;
    margin-bottom:20px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

.page_head h1{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
}

.page_head h1 span{
    color:#4aa3ff;
}

.page_head p{
    color:#b9c3d1;
    max-width:700px;
    margin:auto;
    line-height:1.6;
}

.page_head-buttons{
    margin-top:35px;
    
}

.pill{
    padding:12px 22px;
    border-radius:30px;
    margin:8px;
    border:none;
    font-size:14px;
    cursor:pointer;
}

.blue{background:rgba(74,163,255,0.15);color:#4aa3ff;box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;}
.green{background:rgba(0,255,170,0.15);color:#00ffaa;box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;}
.pink{background:rgba(255,0,150,0.15);color:#ff4da6;box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;}
.yellow{background:rgba(255,200,0,0.15);color:#ffcc00;box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;}

/* ================= FLOATING BOXES ================= */
.floating{
    position:absolute;
    padding:14px 18px;
    background:rgba(255,255,255,0.06);
    border-radius:12px;
    font-size:13px;
    color:#cfe7ff;
    animation:float 6s ease-in-out infinite;
}

.html{top:22%;left:10%;}
.js{top:30%;right:12%;}
.shopify{top:18%;right:20%;}
.react{bottom:20%;left:15%;}
.graph{bottom:25%;right:15%;}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-15px);}
    100%{transform:translateY(0);}
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .navbar nav{display:none;}
    .page_head h1{font-size:36px;}
}

/* ================= price_head ================= */
.price_head{
    padding:140px 20px 80px;
    text-align:center;
    background:radial-gradient(circle at top,#0b1f3f,#020b1c);
}
.price_head span{font-size:12px;color:#7cc7ff;letter-spacing:1px}
.price_head h1{font-size:48px;font-weight:800;margin:20px 0}
.price_head h1 b{
    background:linear-gradient(90deg,#4aa3ff,#b46cff);
    -webkit-background-clip:text;
    color:transparent;
}
.price_head p{max-width:760px;margin:auto;color:#b9c3d1;line-height:1.6}

/* ================= TOGGLE ================= */
.toggle{
    margin-top:35px;
    display:inline-flex;
    background:#0b1528;
    padding:6px;
    border-radius:30px;
}
.toggle button{
    padding:12px 26px;
    border:none;
    background:transparent;
    color:#aaa;
    border-radius:30px;
    cursor:pointer;
}
.toggle button.active{
    background:linear-gradient(90deg,#4aa3ff,#b46cff);
    color:#fff;
}

/* ================= PRICING GRID ================= */
.section_1{display:none}
.section_1.active{display:block}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    padding:60px;
}
.card{
    background:#060f22;
    border-radius:16px;
    padding:30px;
    position:relative;
    border:1px solid rgba(255,255,255,.05);
}
.card.popular{
    border:2px solid #7b5cff;
    box-shadow:0 0 40px rgba(123,92,255,.25);
}
.badge{
    position:absolute;
    right:20px;
    background:#7b5cff;
    padding:6px 14px;
    border-radius:20px;
    font-size:11px;
}
.choose_1{font-size:11px;color:#7cc7ff}
.card h3{margin-top:10px}
.card small{color:#aaa}
.price_1{font-size:32px;margin:15px 0}
.price_1 span{font-size:14px;color:#aaa}
.time{font-size:13px;color:#7cc7ff}
hr{margin:20px 0;border:0;height:1px;background:rgba(255,255,255,.1)}
.cta{
    width:100%;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#1fd56b;
    font-weight:700;
    cursor:pointer;
}
h4{margin-top:25px;font-size:13px;color:#7cc7ff}
ul{list-style:none;margin-top:10px}
ul li{margin:8px 0;font-size:14px;color:#d6e2ff}
.red li{color:#ff6b6b}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .price_head h1{font-size:34px}
    .grid{padding:30px}
}

/* TOP */
.choose{
    background:rgba(74,163,255,.15);
    color:#7cc7ff;
    width:150px;
    font-size:12px;
    padding:6px 12px;
    border-radius:12px;
    display:inline-block;
    margin-bottom:12px;
}
.card-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
}
.card-top .h {
    font-size:28px;
    font-weight:700;
}
.card-top small{
    color:#9aa7c7;
}
.price_1{
    font-size:36px;
    font-weight:700;
}
.price_1 span{
    font-size:14px;
    color:#9aa7c7;
}
.time{
    color:#7cc7ff;
    font-size:14px;
}

/* row_1S */
.row_1{
    display:flex;
    justify-content:space-between;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,.05);
}
.cost-box{
    background:#081126;
    border-radius:12px;
    padding:18px;
    margin:20px 0;
}

/* CTA */
.cta{
    width:100%;
    padding:16px;
    background:#1fd56b;
    color:#000;
    border:none;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
}

/* SECTIONS */
.section-title{
    margin-top:30px;
    font-size:13px;
    letter-spacing:1px;
    color:#7cc7ff;
}
.section-title.red{color:#ff6b6b}
.section-title.purple{color:#b46cff}

.list_1{
    list-style:none;
    margin-top:14px;
}
.list_1 li{
    margin:10px 0;
    color:#d6e2ff;
    font-size:15px;
}
.list_1 li::before{
    content:"✔";
    color:#1fd56b;
    margin-right:10px;
}
.list_1.red li::before{
    content:"✖";
    color:#ff6b6b;
}

/* ADDONS */
.addon{
    background:#081126;
    border-radius:10px;
    padding:15px;
    margin-top:12px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.addon small{
    color:#9aa7c7;
}
.price_1-tag{
    color:#7cc7ff;
}

/* SUPPORT */
.support{
    background:#081126;
    border-radius:12px;
    padding:18px;
    margin-top:15px;
}
.support.green h4{color:#1fd56b}
.support.purple h4{color:#b46cff}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .hero h1{font-size:32px}
    .card-top{flex-direction:column}
    .price_1{text-align:left}
}
/* GRID LAYOUT FIX */
#wp-section .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 cards per row_1 */
    gap: 30px;
    align-items: stretch;
}

/* Make cards equal height */
#wp-section .card{
    height: 100%;
}

/* Tablet */
@media (max-width: 1024px){
    #wp-section .grid{
        grid-template-columns: 1fr; /* stack cards */
    }
}
.pricing-help{
  text-align:center;
  position:relative;
}

.pricing-help-inner{
  max-width:900px;
  margin:auto;
}

.pricing-help h2{
  font-size:36px;
  font-weight:700;
  color:#ffffff;
  margin-bottom:15px;
}

.pricing-help p{
  font-size:16px;
  line-height:1.6;
  color:#b7c0d8;
  max-width:720px;
  margin:0 auto 35px;
}

/* CTA BUTTON */
.consult-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:16px 30px;
  background:#1fd56b;
  color:#000;
  font-size:16px;
  font-weight:600;
  border-radius:10px;
  text-decoration:none;
  box-shadow:0 15px 40px rgba(31,213,107,.35);
  transition:.25s ease;
}

.consult-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 55px rgba(31,213,107,.5);
}

.wa-icon{
  font-size:18px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .pricing-help{
    padding:70px 15px;
  }

  .pricing-help h2{
    font-size:28px;
  }

  .pricing-help p{
    font-size:15px;
  }
}
/* grid_2 FIX */
.grid_2{
  display:grid;
  grid-template-columns:repeat(3, 1fr); /* 3 cards in one row_1 */
  gap:30px;
  padding: 15px;
  align-items:flex-start;
}

/* OPTIONAL: make popular card stand out */
.card.popular{
  transform:translateY(-10px);
  border:1px solid rgba(31,213,107,.4);
}

/* RESPONSIVE BREAKPOINTS */
@media(max-width:1100px){
  .grid_2{
    grid-template-columns:repeat(2, 1fr); /* tablet */
  }
}

@media(max-width:768px){
  .grid_2{
    grid-template-columns:1fr; /* mobile */
  }
}
.tech-stack{
  padding:100px 20px;
  background:radial-gradient(circle at top,#0c1a2e,#050812);
  color:#fff;
}

.tech-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.tech-header h2{
  font-size:40px;
  font-weight:700;
  margin-bottom:15px;
}

.tech-header h2 span{
  color:#3bc9ff;
}

.tech-header p{
  color:#a9b4c9;
  font-size:16px;
  line-height:1.6;
}

/* GRID */
.tech-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
}

/* CARD */
.tech-card{
  background:#1b2638;
  border-radius:14px;
  padding:30px 20px;
  text-align:center;
  transition:.25s ease;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

.tech-card:hover{
  transform:translateY(-6px);
  background:#22324a;
}

/* ICON */
.tech-icon{
  display:flex;
  align-items:center;
  justify-content:center;
  width:56px;
  height:56px;
  margin:0 auto 15px;
  border-radius:14px;
  font-size:30px;
  background:rgba(255,255,255,.08);
}

/* TEXT */
.tech-card h4{
  font-size:16px;
  margin-bottom:6px;
  color:#ffffff;
}

.tech-card small{
  color:#8fa1c7;
  font-size:13px;
}

/* RESPONSIVE */
@media(max-width:768px){
  .tech-header h2{
    font-size:28px;
  }
}
.faq-section{
  padding:100px 20px;
  background:radial-gradient(circle at top,#2a2a6a,#0b1024);
  color:#fff;
}

.faq-header{
  text-align:center;
  max-width:700px;
  margin:0 auto 50px;
}

.faq-header h2{
  font-size:38px;
  margin-bottom:10px;
}

.faq-header h2 span{
  color:#4da3ff;
}

.faq-header p{
  color:#b7c2e0;
}

.faq-list{
  max-width:800px;
  margin:auto;
}

.faq-item{
  margin-bottom:15px;
  background:#1b2244;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.4);
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  color:#fff;
  padding:18px 20px;
  font-size:15px;
  display:flex;
  align-items:center;
  gap:14px;
  cursor:pointer;
}

.faq-question .arrow_1{
  margin-left:auto;
  transition:.3s;
}

.faq-item.active .arrow_1{
  transform:rotate(180deg);
}

.faq-icon{
  width:32px;
  height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:16px;
}

/* ICON COLORS */
.blue_1{background:#1e90ff;}
.purple_1{background:#8a5cff;}
.green_1{background:#1fd56b;}
.pink_1{background:#ff4da6;}
.yellow_1{background:#f5b700;}
.red_1{background:#ff4d4d;}

.faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 20px;
  color:#cbd4ff;
  font-size:14px;
  line-height:1.6;
  transition:max-height .4s ease, padding .3s ease;
}

.faq-item.active .faq-answer{
  max-height:200px;
  padding:0 20px 18px;
}

.faq-footer{
  text-align:center;
  margin-top:40px;
}

.faq-footer p{
  margin-bottom:10px;
  color:#b7c2e0;
}

.faq-cta{
  display:inline-block;
  padding:12px 26px;
  background:linear-gradient(90deg,#4da3ff,#9b6cff);
  border-radius:30px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
}
