/* BulkySoftware - Premium Agency Theme (Mobile-first, fast, no heavy libs) */

:root{
  --bg: #0b1020;
  --bg2:#0e1630;
  --card: rgba(255,255,255,0.06);
  --card2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.12);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.58);
  --accent1: #6d5efc;
  --accent2: #22c7ff;
  --accent3: #38f9d7;
  --shadow: 0 18px 60px rgba(0,0,0,0.35);
  --radius: 18px;
  --radius2: 26px;
  --container: 1180px;
  --ring: 0 0 0 3px rgba(34,199,255,0.25);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 20% 10%, rgba(109,94,252,0.25), transparent 60%),
    radial-gradient(900px 500px at 85% 20%, rgba(34,199,255,0.18), transparent 55%),
    radial-gradient(900px 600px at 70% 90%, rgba(56,249,215,0.10), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  min-height:100vh;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}
button, input, select, textarea{font:inherit}

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

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(10,14,30,0.72), rgba(10,14,30,0.35));
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:0.2px;
}

.logoMark{
  width:34px;
  height:34px;
  border-radius: 12px;
  background:
    radial-gradient(18px 18px at 30% 30%, rgba(255,255,255,0.9), transparent 55%),
    linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 12px 28px rgba(109,94,252,0.25);
}

.brand small{
  display:block;
  font-weight:600;
  color:var(--muted2);
  margin-top:2px;
  letter-spacing:0.1px;
}

.navlinks{
  display:none;
  align-items:center;
  gap:18px;
  color:var(--muted);
  font-weight:600;
}

.navlinks a{
  padding:10px 10px;
  border-radius:12px;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

.navlinks a:hover{
  background: rgba(255,255,255,0.06);
  color:var(--text);
}

.navcta{
  display:flex;
  gap:10px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color:var(--text);
  font-weight:700;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.085); }
.btn:active{ transform: translateY(0px); }

.btnPrimary{
  border-color: rgba(34,199,255,0.35);
  background: linear-gradient(135deg, rgba(109,94,252,0.95), rgba(34,199,255,0.92));
  box-shadow: 0 18px 42px rgba(34,199,255,0.18);
}
.btnPrimary:hover{ box-shadow: 0 22px 55px rgba(34,199,255,0.22); }

.btnGhost{
  background: rgba(255,255,255,0.04);
}

.btnIcon{
  width:44px;
  height:44px;
  padding:0;
}

.hamburger{
  display:inline-flex;
}

.mobileMenu{
  display:none;
  border-top:1px solid var(--border);
  padding:10px 0 16px;
}
.mobileMenu a{
  display:block;
  padding:12px 12px;
  border-radius:14px;
  color:var(--muted);
  font-weight:700;
}
.mobileMenu a:hover{
  background: rgba(255,255,255,0.06);
  color:var(--text);
}

.hero{
  padding:34px 0 22px;
}

.heroGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
}

.heroCard{
  padding:22px;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}

.heroCard:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 260px at 20% 0%, rgba(109,94,252,0.25), transparent 60%),
              radial-gradient(420px 240px at 80% 0%, rgba(34,199,255,0.20), transparent 60%);
  pointer-events:none;
}

.heroInner{ position:relative; z-index:1; }

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: var(--muted);
  font-weight:700;
  font-size:13px;
}

.h1{
  margin:12px 0 10px;
  font-size: 30px;
  line-height: 1.14;
  letter-spacing: -0.3px;
}

.lead{
  margin:0 0 16px;
  color:var(--muted);
  line-height:1.6;
  font-size:15px;
}

.heroActions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.trustRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  margin-top:16px;
}

.badge{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  padding:12px 12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.badge b{display:block; font-size:14px}
.badge span{display:block; margin-top:4px; color:var(--muted2); font-size:13px; line-height:1.35}

.iconDot{
  width:12px;
  height:12px;
  border-radius:999px;
  margin-top:4px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow: 0 0 0 3px rgba(34,199,255,0.12);
}

.heroMedia{
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  overflow:hidden;
  position:relative;
  min-height: 220px;
}

.heroMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0.92;
}

.section{
  padding: 22px 0;
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.h2{
  margin:0;
  font-size: 22px;
  letter-spacing: -0.2px;
}
.sub{
  margin:6px 0 0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
  max-width: 60ch;
}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}

.card{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding:16px;
  position:relative;
  overflow:hidden;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.card:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}

.cardTitle{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.cardTitle h3{
  margin:0;
  font-size:16px;
  letter-spacing:-0.1px;
}
.p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color:var(--muted);
  font-weight:700;
  font-size:12px;
}

.cardIcon{
  width:44px;
  height:44px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,0.12);
  background: linear-gradient(135deg, rgba(109,94,252,0.20), rgba(34,199,255,0.18));
  display:grid;
  place-items:center;
}

.cardIcon svg{opacity:0.95}

.metrics{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:14px;
}

.metric{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: 16px;
  padding:12px;
}
.metric b{font-size:16px}
.metric span{display:block; margin-top:6px; color:var(--muted2); font-size:12px; line-height:1.4}

.timeline{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding:14px;
}

.stepNum{
  width:38px; height:38px;
  border-radius: 14px;
  display:grid; place-items:center;
  font-weight:900;
  background: linear-gradient(135deg, rgba(109,94,252,0.85), rgba(34,199,255,0.70));
  border:1px solid rgba(255,255,255,0.14);
}

.step p{margin:6px 0 0; color:var(--muted); line-height:1.6; font-size:14px;}

.split{
  display:grid;
  grid-template-columns: 1fr;
  gap:12px;
}

.form{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius2);
  padding:16px;
}

.field{
  display:grid;
  gap:8px;
  margin-bottom:12px;
}

label{
  font-weight:800;
  font-size:13px;
  color:var(--muted);
}

input, select, textarea{
  border-radius: 14px;
  border:1px solid rgba(255,255,255,0.14);
  background: rgba(10,14,30,0.55);
  padding:12px 12px;
  color:var(--text);
  outline:none;
  transition: box-shadow .18s ease, border-color .18s ease;
}

textarea{min-height:110px; resize:vertical}

input:focus, select:focus, textarea:focus{
  border-color: rgba(34,199,255,0.45);
  box-shadow: var(--ring);
}

.helper{
  color:var(--muted2);
  font-size:12px;
  line-height:1.5;
}

.notice{
  display:none;
  margin-top:10px;
  padding:12px;
  border-radius: 16px;
  border: 1px solid rgba(56,249,215,0.25);
  background: rgba(56,249,215,0.08);
  color: rgba(255,255,255,0.9);
  font-weight:700;
}

.notice.error{
  border-color: rgba(255,77,109,0.30);
  background: rgba(255,77,109,0.10);
}

.faq{
  display:grid;
  gap:10px;
}

.faqItem{
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  overflow:hidden;
}

.faqQ{
  width:100%;
  text-align:left;
  padding:14px 14px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  background: transparent;
  border:0;
  color:var(--text);
  cursor:pointer;
  font-weight:900;
}

.faqA{
  max-height:0;
  overflow:hidden;
  transition: max-height .22s ease;
  padding:0 14px;
}
.faqA p{
  margin: 0 0 14px;
  color:var(--muted);
  line-height:1.65;
  font-size:14px;
}

.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0 30px;
  color: var(--muted);
}

.footerGrid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}

.miniLinks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.miniLinks a{
  padding:10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  font-weight:700;
}

.small{font-size:12px; color:var(--muted2); line-height:1.6}

.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.isVisible{
  opacity:1;
  transform: translateY(0px);
}

/* Testimonials */
.slider{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius2);
  border:1px solid var(--border);
  background: rgba(255,255,255,0.04);
}
.slides{
  display:flex;
  transition: transform .38s ease;
  will-change: transform;
}
.slide{
  min-width:100%;
  padding:16px;
}
.quote{
  font-size:14px;
  line-height:1.75;
  color:var(--text);
}
.quote small{
  display:block;
  margin-top:12px;
  color: var(--muted);
  font-weight:800;
}

.sliderControls{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding: 10px;
  border-top:1px solid var(--border);
}
.dots{
  display:flex;
  gap:6px;
  align-items:center;
}
.dot{
  width:8px; height:8px;
  border-radius: 999px;
  background: rgba(
