
*{margin:0;padding:0;box-sizing:border-box;font-family:Inter,system-ui,sans-serif}

body{
  background:radial-gradient(circle at top,#0b1220,#020617);
  color:#fff;
}
/* ================= 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;
  }
}
/* ================= 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;
  }
}

.section_all {
  width: 100%;
  margin: 0 auto;
  padding: 20px 15px;   /* mobile friendly */
  text-align: center;
}
@media (min-width: 768px) {
  .section_all {
    max-width: 1200px;   /* or whatever you want */
    padding: 50px 80px 10px;
  }
}
h1{font-size:42px;font-weight:700}
h1 span{color:#8b5cf6}

.subtitle{
  max-width:640px;
  margin:14px auto 50px;
  color:#cbd5e1;
}

/* SWITCH */
.switch{
  display:inline-flex;
  background:#0f172a;
  padding:6px;
  border-radius:30px;
  margin-bottom:40px;
}
.tab{
  padding:10px 28px;
  border:none;
  background:none;
  color:#94a3b8;
  border-radius:24px;
  cursor:pointer;
}
.tab.active{
  background:linear-gradient(90deg,#6366f1,#a855f7);
  color:#fff;
}

/* MAIN BORDER FRAME */
.main-frame{
  background:linear-gradient(180deg,#0b1220,#020617);
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  padding:40px;
}

/* SERVICE card_2 */
.card_2{
  display:none;
  grid-template-columns:1fr 1fr;
  gap:40px;
}
.card_2.show{display:grid}

.left{text-align:left}
.left p{color:#94a3b8}

.tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:18px 0;
}
.tags span{
  background:#111827;
  color:#60a5fa;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
}

.time_1{color:#22c55e;font-size:14px}

.right ul{list-style:none;text-align:left}
.right li{margin-bottom:12px}
.right li::before{content:"✓ ";color:#22c55e}

.actions{
  margin-top:22px;
  display:flex;
  gap:14px;
}
.btn{
  padding:14px 26px;
  border:none;
  border-radius:10px;
  cursor:pointer;
}
.primary{background:#2563eb;color:#fff}
.whatsapp{background:#22c55e;color:#022c22}

/* DIVIDER */
.divider{
  height:1px;
  background:rgba(255,255,255,.08);
  margin:60px 0;
}

/* APP SPECIALIZATIONS */
.spec-header{
  text-align:center;
  margin-bottom:40px;
}
.spec-header h2{
  font-size:28px;
}

.spec-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.spec-item{
  background:#020617;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  padding:26px;
  text-align:left;
  transition:.3s;
}
.spec-item:hover{
  transform:translateY(-6px);
  border-color:#6366f1;
}

.spec-item h3{font-size:17px;margin-bottom:6px}
.spec-item p{
  font-size:14px;
  color:#94a3b8;
  margin-bottom:16px;
}
.spec-item ul{list-style:none}
.spec-item li{
  font-size:14px;
  margin-bottom:10px;
}
.spec-item li::before{
  content:"✓ ";
  color:#22c55e;
  font-weight:600;
}

/* RESPONSIVE */
@media(max-width:1100px){
  .spec-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:900px){
  .card_2{grid-template-columns:1fr}
  h1{font-size:34px}
}
@media(max-width:600px){
  .spec-grid{grid-template-columns:1fr}
}
/* IOS FEATURES SECTION */
.ios-features-section{
 text-align:center;
  padding:50px;
}

.ios-features-title{
  font-size:34px;
  font-weight:700;
}
.ios-features-title span{
  color:#38bdf8;
}

.ios-features-subtitle{
  max-width:620px;
  margin:12px auto 50px;
  color:#94a3b8;
  font-size:15px;
}

.ios-features-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

/* card_2 */
.ios-feature-card_2{
  background:#334155;
  border-radius:14px;
  padding:26px;
  display:flex;
  gap:18px;
  align-items:flex-start;
  text-align:left;
  position:relative;
  overflow:hidden;

  /* animation base */
  transform:translateY(0);
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease,
    border-color .35s ease;
}

/* TOP GRADIENT LINE */
.ios-feature-card_2::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  height:3px;
  width:100%;
  background:linear-gradient(90deg,#6366f1,#a855f7);
}

/* HOVER – MOVE UP */
.ios-feature-card_2:hover{
  transform:translateY(-10px);
  box-shadow:
    0 18px 40px rgba(0,0,0,.45),
    0 0 0 1px rgba(99,102,241,.35);
}

/* ICON */
.ios-icon{
  width:42px;
  height:42px;
  min-width:42px;
  background:#2563eb;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.ios-feature-card_2 h3{
  font-size:16px;
  margin-bottom:6px;
}

.ios-feature-card_2 p{
  font-size:14px;
  color:#cbd5e1;
  margin-bottom:12px;
}

.ios-feature-card_2 a{
  font-size:14px;
  color:#38bdf8;
  text-decoration:none;
}

/* Responsive */
@media(max-width:1100px){
  .ios-features-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:600px){
  .ios-features-grid{grid-template-columns:1fr}
}

.tech-title{
  font-size:36px;
  font-weight:700;
}
.tech-title span{
  color:#22d3ee;
}

.tech-subtitle{
  margin:12px auto 50px;
  color:#94a3b8;
  max-width:640px;
  font-size:15px;
}

/* GRID */
.tech-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:22px;
}

/* card_2 */
.tech-card_2{
  background:#2d394ae0;
  border-radius:10px;
  padding:10px 12px;
  text-align:left;
  transition:transform .2s ease;
}

.tech-card_2:hover{
  transform:translateY(-4px);
}

.tech-icon{
  width:50px;
  height:50px;
  border-radius:10px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  margin-bottom:14px;
}

.tech-icon::after{
  content:"";
  position:absolute;
  inset:-6px;
  background:#f5f6f7;
  border-radius:inherit;
  filter:blur(14px);
  opacity:.7;
  z-index:-1;
}
.tech-card_2 h4{
  font-size:15px;
  margin-bottom:4px;
}

.tech-card_2 p{
  font-size:11px;
  color:#cbd5e1;
}

/* RESPONSIVE */
@media(max-width:1200px){
  .tech-grid{grid-template-columns:repeat(4,1fr)}
}
@media(max-width:800px){
  .tech-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:480px){
  .tech-grid{grid-template-columns:1fr}
}

.dev-process-frame{
  max-width:1300px;
  margin:auto;
  padding:80px 40px 100px;
  background:linear-gradient(180deg,#0b1220,#020617);
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  text-align:center;
}

/* TITLE */
.dev-title{
  font-size:36px;
  font-weight:700;
}
.dev-title span{
  color:#38bdf8;
}

.dev-subtitle{
  margin:14px auto 80px;
  color:#94a3b8;
  max-width:640px;
  font-size:15px;
}

/* PROCESS WRAPPER */
.process-wrapper{
  position:relative;
}

/* CONNECTOR LINE */
.process-line{
  position:absolute;
  top:78px;
  left:5%;
  width:90%;
  height:3px;
  background:linear-gradient(90deg,#2563eb,#a855f7);
  z-index:1;
}

/* GRID */
.process-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:24px;
  position:relative;
  z-index:2;
}

/* card_2 */
.process-card_2{
  background:#374151;
  border-radius:18px;
  padding:28px 18px 30px;
  text-align:center;
  opacity:0;
  transform:translateY(40px);
}

/* ICON */
.process-icon{
  width:56px;
  height:56px;
  margin:-54px auto 18px;
  background:#2563eb;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 0 0 6px #0b1220;
}

/* TEXT */
.process-card_2 h4{
  font-size:15px;
  margin-bottom:6px;
}
.process-card_2 p{
  font-size:13px;
  color:#cbd5e1;
}

/* TOP-UP ANIMATION */
.animate-up{
  animation:fadeUp .8s ease forwards;
}
.delay-1{animation-delay:.1s}
.delay-2{animation-delay:.2s}
.delay-3{animation-delay:.3s}
.delay-4{animation-delay:.4s}
.delay-5{animation-delay:.5s}

@keyframes fadeUp{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:1200px){
  .process-grid{grid-template-columns:repeat(3,1fr)}
  .process-line{display:none}
}
@media(max-width:700px){
  .process-grid{grid-template-columns:1fr}
}

.success-title{
  font-size:36px;
  font-weight:700;
  color:#38bdf8;
}

.success-subtitle{
  margin:12px auto 60px;
  color:#94a3b8;
  font-size:15px;
  max-width:620px;
}

/* GRID */
.success-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* card_2 */
.success-card_2{
  background:#374151;
  border-radius:16px;
  padding:28px;
  text-align:left;
}

.success-card_2 h3{
  font-size:17px;
  margin-bottom:10px;
}

.success-card_2 p{
  font-size:14px;
  color:#cbd5e1;
  margin-bottom:20px;
  line-height:1.6;
}

/* BADGE */
.badge_1{
  display:inline-block;
  padding:8px 14px;
  background:#1e40af;
  color:#fff;
  font-size:13px;
  border-radius:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .success-grid{
    grid-template-columns:1fr;
  }
}
.faq-title{
  font-size:36px;
  font-weight:700;
}
.faq-title span{
  color:#38bdf8;
}

.faq-subtitle{
  margin:12px auto 60px;
  color:#94a3b8;
  max-width:640px;
  font-size:15px;
}

/* WRAPPER */
.faq-wrapper{
  max-width:900px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* ITEM */
.faq-item{
  background:#1f2937;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  overflow:hidden;
}

/* QUESTION */
.faq-question{
  width:100%;
  padding:20px 24px;
  background:none;
  border:none;
  color:#fff;
  font-size:16px;
  font-weight:500;
  text-align:left;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
}

.faq-question .arrow{
  font-size:18px;
  color:#38bdf8;
  transition:transform .3s ease;
}

/* ANSWER */
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  padding:0 24px 20px;
  font-size:14px;
  color:#cbd5e1;
  line-height:1.6;
}

/* ACTIVE */
.faq-item.active .faq-answer{
  max-height:200px;
}
.faq-item.active .arrow{
  transform:rotate(180deg);
}
/* IOS CTA SECTION */
.ios-cta-section{
  margin-top:40px;
  padding:30px 20px;
  text-align:center;
  background:linear-gradient(90deg,#2563eb 0%, #7c3aed 100%);
}

.ios-cta-section h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:14px;
  color:#fff;
}

.ios-cta-section p{
  font-size:16px;
  color:#e5e7eb;
  max-width:640px;
  margin:0 auto 36px;
}

/* BUTTONS */
.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.btn-quote{
  padding:14px 32px;
  background:#1d4ed8;
  color:#fff;
  border-radius:10px;
  font-size:15px;
  text-decoration:none;
}

.btn-whatsapp{
  padding:14px 32px;
  background:#22c55e;
  color:#022c22;
  border-radius:10px;
  font-size:15px;
  text-decoration:none;
}

/* Responsive */
@media(max-width:600px){
  .ios-cta-section h2{
    font-size:28px;
  }
}
/* OVERLAY */
.quote-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.7);
  backdrop-filter:blur(8px);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

/* MODAL */
.quote-modal{
  width:520px;
  max-height:85vh;
  background:#0f172a;
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

/* HEADER */
.quote-header{
  background:linear-gradient(90deg,#6366f1,#a855f7);
  padding:18px 22px;
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  color:#fff;
}
.close-btn{
  background:none;
  border:none;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

/* STEP SLIDER */
.step-indicators{
  display:flex;
  gap:8px;
  margin-top:10px;
}
.step-dot{
  width:22px;
  height:4px;
  border-radius:4px;
  background:rgba(255,255,255,.35);
}
.step-dot.active{
  background:#fff;
}

/* BODY */
.quote-body{
  padding:22px;
  overflow-y:auto;
}

/* STEPS */
.quote-step{display:none}
.quote-step.active{display:block}

/* FORM */
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
input:not([type="checkbox"]):not([type="radio"]),
select,
textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.1);
  background:#020617;
  color:#fff;
}
textarea{margin-top:14px;min-height:90px}

/* LABEL */
label{
  font-size:13px;
  color:#cbd5e1;
}
.req{color:#ef4444}

/* CHIPS */
.chip-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.chip-grid label{
  background:#020617;
  border:1px solid rgba(255,255,255,.08);
  padding:10px;
  border-radius:10px;
  cursor:pointer;
}

/* FOOTER */
.quote-footer{
  padding:16px;
  display:flex;
  justify-content:space-between;
}
.back-btn,.next-btn{
  padding:10px 22px;
  border-radius:10px;
  border:none;
  cursor:pointer;
}
.next-btn{background:#6366f1;color:#fff}
.back-btn{background:#1e293b;color:#fff}
/* OPTION BUTTONS (PAGES) */
.option-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:10px;
}

.option-box{
  position:relative;
  background:#020617;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  padding:12px;
  cursor:pointer;
  text-align:center;
  font-size:14px;
  color:#e5e7eb;
}

.option-box input{
  position:absolute;
  inset:0;
  opacity:0;
}

.option-box input:checked + span{
  color:#fff;
}

.option-box:has(input:checked){
  border-color:#6366f1;
  background:#0f172a;
}

/* CHECKBOX GRID */
.check-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:10px;
}

.check-grid label{
  background:#020617;
  border:1px solid rgba(255,255,255,.08);
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  color:#cbd5e1;
  display:flex;
  gap:10px;
  align-items:center;
}

.check-grid input{
  accent-color:#6366f1;
}

/* REQUIRED STAR */
.req{
  color:#ef4444;
}
.hero-web{
  position:relative;
  min-height:100vh;
  background:radial-gradient(circle at top,#0b1220,#020617);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:120px 20px 80px;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(99,102,241,.08),transparent);
  pointer-events:none;
}

.hero-content{
  position:relative;
  max-width:980px;
  text-align:center;
  z-index:2;
}

.badge_1{
  display:inline-block;
  padding:6px 14px;
  border-radius:20px;
  background:#020617;
  border:1px solid rgba(255,255,255,.1);
  color:#60a5fa;
  font-size:12px;
  margin-bottom:20px;
}

.hero-web h1{
  font-size:52px;
  line-height:1.15;
  font-weight:800;
}

.hero-web h1 span{
  color:#38bdf8;
}

.hero-web p{
  margin:20px auto 32px;
  max-width:720px;
  color:#cbd5e1;
  font-size:16px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:16px;
}

.btn{
  padding:14px 26px;
  border-radius:12px;
  font-weight:600;
  text-decoration:none;
  display:inline-block;
}

.btn.primary{
  background:linear-gradient(90deg,#6366f1,#8b5cf6);
  color:#fff;
}

.btn.whatsapp{
  background:#22c55e;
  color:#022c22;
}

.hero-stats{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:60px;
}

.stat{
  background:#020617;
  border:1px solid rgba(255,255,255,.08);
  padding:18px;
  border-radius:14px;
}

.stat strong{
  display:block;
  font-size:22px;
  color:#a5b4fc;
}

.stat span{
  font-size:13px;
  color:#94a3b8;
}

/* FLOATING TAGS */
.floating-tags{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.floating-tags .tag{
  position:absolute;
  padding:8px 14px;
  background:#020617;
  border:1px solid rgba(255,255,255,.1);
  border-radius:12px;
  color:#e5e7eb;
  font-size:12px;
  animation:float 8s infinite ease-in-out;
}

.floating-tags .tag:nth-child(1){top:15%;left:10%}
.floating-tags .tag:nth-child(2){top:25%;right:12%}
.floating-tags .tag:nth-child(3){top:55%;left:6%}
.floating-tags .tag:nth-child(4){bottom:20%;right:8%}
.floating-tags .tag:nth-child(5){top:60%;right:20%}
.floating-tags .tag:nth-child(6){bottom:30%;left:20%}

@keyframes float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-12px)}
}

/* RESPONSIVE */
@media(max-width:900px){
  .hero-web h1{font-size:38px}
  .hero-stats{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:500px){
  .hero-buttons{flex-direction:column}
}


/* ================= SIDE LABEL ================= */
.side-label{
    position:fixed;
    left:0;
    top:40%;
    background:linear-gradient(#4a6cff,#9b4dff);
    padding:15px 10px;
    writing-mode:vertical-rl;
    text-align:center;
    font-size:12px;
    letter-spacing:1px;
    border-radius:0 8px 8px 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{display:none}
.section.active{display:block}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;
    padding:60px;
}
.card_2{
    background:#060f22;
    border-radius:16px;
    padding:30px;
    position:relative;
    border:1px solid rgba(255,255,255,.05);
}
.card_2.popular{
    border:2px solid #7b5cff;
    box-shadow:0 0 40px rgba(123,92,255,.25);
}
.badge_1{
    top:-14px;
    
    background:#7a5cff33;
    padding:6px 14px;
    border-radius:20px;
    font-size:11px;
}
.choose{font-size:11px;color:#7cc7ff}
.card_2 h3{margin-top:10px}
.card_2 small{color:#aaa}
.price{font-size:32px;margin:15px 0}
.price 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;
    font-size:12px;
    padding:6px 12px;
    border-radius:12px;
    display:inline-block;
    margin-bottom:12px;
}
.card_2-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
}
.card_2-top h2{
    font-size:28px;
}
.card_2-top small{
    color:#9aa7c7;
}
.price{
    font-size:36px;
    font-weight:700;
}
.price span{
    font-size:14px;
    color:#9aa7c7;
}
.time{
    color:#7cc7ff;
    font-size:14px;
}

/* ROWS */
.row{
    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-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_2-top{flex-direction:column}
    .price{text-align:left}
}
/* GRID LAYOUT FIX */
#wp-section .grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 card_2s per row */
    gap: 30px;
    align-items: stretch;
}

/* Make card_2s equal height */
#wp-section .card_2{
    height: 100%;
}

/* Tablet */
@media (max-width: 1024px){
    #wp-section .grid{
        grid-template-columns: 1fr; /* stack card_2s */
    }
}
.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 card_2s in one row */
  gap:30px;
  padding: 15px;
  align-items:flex-start;
}

/* OPTIONAL: make popular card_2 stand out */
.card_2.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_2 */
.tech-card_2{
  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_2: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_2 h4{
  font-size:16px;
  margin-bottom:6px;
  color:#ffffff;
}

.tech-card_2 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{
  margin-left:auto;
  transition:.3s;
}

.faq-item.active .arrow{
  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;
}
.cta-section{
  padding:100px 20px;
  background: linear-gradient(90deg, #2f5bff 0%, #7b3cff 100%);
  color:#fff;
  text-align:center;
}

.cta-inner{
  max-width:900px;
  margin:auto;
}

.cta-section h2{
  font-size:38px;
  font-weight:700;
  margin-bottom:15px;
}

.cta-section p{
  font-size:16px;
  color:rgba(255,255,255,.9);
  max-width:700px;
  margin:0 auto 35px;
  line-height:1.6;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

/* BUTTONS */
.btn{
  padding:14px 30px;
  border-radius:10px;
  font-size:14px;
  text-decoration:none;
  font-weight:600;
  transition:.25s ease;
}

.btn.primary{
  background:#0b5cff;
  color:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
}

.btn.primary:hover{
  background:#084ad4;
}

.btn.outline{
  border:2px solid rgba(255,255,255,.6);
  color:#fff;
}

.btn.outline:hover{
  background:rgba(255,255,255,.15);
}

/* RESPONSIVE */
@media(max-width:768px){
  .cta-section h2{
    font-size:28px;
  }
}
