*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:        #0d1117;
  --surface:   #161b22;
  --surface2:  #1c2128;
  --border:    #30363d;
  --border-s:  #21262d;
  --text:      #e6edf3;
  --muted:     #8b949e;
  --accent:    #1d4ed8;
  --accent-h:  #1e3a8a;
  --accent-s:  #60a5fa;
  --green:     #238636;
  --green-h:   #2ea043;
}

body {
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* ---- Nav ---- */
.nav-link {
  color: var(--muted);
  font-size: 14px;
  transition: color .15s;
}

.nav-link:hover {
  color: var(--text);
}

/* ---- Buttons ---- */
.btn-primary {
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .15s, background .15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-outline:hover {
  border-color: var(--accent-s);
  background: rgba(29, 78, 216, .08);
}

/* ---- Hero glow ---- */
.hero-glow {
  background: radial-gradient(ellipse 70% 55% at 50% -5%,
      rgba(29, 78, 216, 0.45) 0%,
      rgba(30, 58, 138, 0.25) 35%,
      transparent 65%);
  pointer-events: none;
}

/* ---- Section borders ---- */
.sect {
  border-top: 1px solid var(--border-s);
}

/* ---- Cards ---- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: border-color .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, rgba(29, 78, 216, .12) 0%, var(--surface) 60%);
}

/* ---- Icon circle ---- */
.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.badge-accent {
  background: rgba(29, 78, 216, .2);
  color: var(--accent-s);
  border: 1px solid rgba(29, 78, 216, .3);
}

.badge-green {
  background: rgba(35, 134, 54, .2);
  color: #56d364;
  border: 1px solid rgba(35, 134, 54, .3);
}

.badge-orange {
  background: rgba(210, 153, 34, .2);
  color: #e3b341;
  border: 1px solid rgba(210, 153, 34, .3);
}

/* ---- Step numbers ---- */
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(29, 78, 216, .15);
  border: 1px solid rgba(29, 78, 216, .4);
  color: var(--accent-s);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- Pricing card ---- */
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(160deg, rgba(29, 78, 216, .15) 0%, var(--surface) 50%);
  position: relative;
}

/* ---- FAQ ---- */
.faq-item {
  border-bottom: 1px solid var(--border-s);
  padding: 18px 0;
  cursor: pointer;
}

.faq-item:last-child {
  border-bottom: none;
}

/* ---- Footer link ---- */
.fl {
  color: var(--muted);
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
  transition: color .15s;
}

.fl:hover {
  color: var(--text);
}

/* ---- Testimonial ---- */
.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}

/* ---- Stat ---- */
.stat-item {
  text-align: center;
  padding: 24px;
  border-right: 1px solid var(--border-s);
}

.stat-item:last-child {
  border-right: none;
}

/* ---- Gradient text ---- */
.grad-text {
  background: linear-gradient(135deg, #60a5fa 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- CTA section ---- */
.cta-glow {
  background: radial-gradient(ellipse 60% 70% at 50% 50%,
      rgba(29, 78, 216, 0.2) 0%, transparent 70%);
}

/* ---- Animated dot ---- */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56d364;
  animation: pulse-dot 2s ease-in-out infinite;
}

/* ======================================================
   MOBILE RESPONSIVE
   ====================================================== */
@media (max-width: 767px) {

  /* Nav — hide links and "Taking clients" badge */
  .nav-links  { display: none !important; }
  .nav-taking { display: none !important; }

  /* Hero — reduce top/bottom padding */
  section[style*="padding:100px 24px 80px"] {
    padding: 60px 20px 52px !important;
  }

  /* Stats — remove right border on 2nd item in each row */
  .stat-item:nth-child(2) { border-right: none; }

  /* Service 7 inner grid — stack vertically on mobile */
  .service7-inner {
    grid-template-columns: 1fr !important;
  }
  .service7-inner > div:last-child {
    text-align: left !important;
  }

  /* How-it-works connector line — hide on mobile */
  .how-connector { display: none !important; }

  /* Sections — reduce padding on mobile */
  .sect { padding-top: 52px !important; padding-bottom: 52px !important; }
}
