:root {
  --primary: #0B5ED7;
  --secondary: #0D6EFD;
  --dark: #212529;
  --bg: #FFFFFF;
  --light: #F8F9FA;
  --text: #555555;
  --border: #e9ecef;
  --radius: 0.5rem;
  --grad-primary: linear-gradient(135deg, #0B5ED7 0%, #0D6EFD 100%);
  --grad-soft: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
  --grad-hero: linear-gradient(135deg, #e4eeff 0%, #f5f9ff 55%, #ffffff 100%);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 14px;
  color: var(--text);
  background: radial-gradient(1200px 420px at 50% -120px, #eaf2ff 0%, rgba(255, 255, 255, 0) 60%), var(--bg);
  background-attachment: fixed;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { color: var(--dark); font-weight: 600; }
h1 { font-size: 30px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
h4 { font-size: 18px; }

a { text-decoration: none; color: var(--primary); }
a:hover { color: var(--secondary); }

img { max-width: 100%; height: auto; }

.section { padding: 28px 0; }
.section-sm { padding: 20px 0; }
.bg-light { background: var(--grad-soft) !important; }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 4px;
}

.section-title { margin-bottom: 4px; }
.section-subtitle { max-width: 620px; margin: 0 auto 16px; font-size: 14px; }

/* Navbar */
.navbar {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(11, 94, 215, 0.06);
  padding: 6px 0;
}
.navbar-brand { display: inline-flex; align-items: center; font-weight: 700; }
.navbar-brand img { height: 28px; width: auto; margin-right: 5px; }
.brand-text { display: inline-flex; flex-direction: column; align-items: center; line-height: 1.2; }
.brand-name { font-size: 19px; font-weight: 700; }
.brand-name .c-waz, .brand-name .c-bd { color: #0D59B1; }
.brand-name .c-tech { color: #E82124; }
.brand-tagline { font-size: 8px; font-weight: 500; color: #8a94a6; letter-spacing: 0.4px; text-transform: uppercase; white-space: nowrap; }
.navbar-brand .dot { color: var(--primary); }
.navbar .nav-link {
  font-size: 14px;
  color: var(--dark);
  font-weight: 500;
  padding: 6px 12px !important;
  border-radius: var(--radius);
}
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--primary); }
.navbar .btn { font-size: 13px; }

/* Buttons */
.btn { border-radius: 6px; font-size: 13px; font-weight: 500; padding: 5px 14px; }
.btn-primary { background: var(--grad-primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--secondary); border-color: var(--secondary); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); }
.btn-outline-primary:hover { background: var(--grad-primary); border-color: var(--primary); }

/* Hero */
.hero {
  padding: 44px 0;
  background: var(--grad-hero);
}
.hero h1 { font-size: 30px; font-weight: 700; }
.hero p { font-size: 14px; max-width: 520px; }
.hero .btn { margin-right: 8px; }
.hero-img { max-width: 420px; }

/* Cards */
.card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  height: 100%;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover {
  box-shadow: 0 8px 22px rgba(11, 94, 215, 0.14);
  transform: translateY(-3px);
}
.card h4 { font-size: 15px; margin-bottom: 4px; }
.card p { font-size: 13px; margin-bottom: 0; }

.icon-box {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-soft);
  color: var(--primary);
  border-radius: 9px;
  font-size: 16px;
  margin-bottom: 8px;
}

/* Project cards */
.project-img {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--grad-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
}
.project-img img { width: 100%; height: 120px; object-fit: cover; }
.project-tags .badge { font-weight: 400; font-size: 11px; }

/* Feature list */
.feature-list { list-style: none; padding: 0; margin: 0; }
.feature-list li {
  padding: 2px 0;
  font-size: 13px;
}
.feature-list li i { color: var(--primary); margin-right: 6px; font-size: 12px; }

/* Tech grid */
.tech-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px 8px;
}
.tech-icon img, .tech-icon i { font-size: 26px; color: var(--primary); margin-bottom: 6px; }
.tech-icon span { font-size: 13px; font-weight: 500; color: var(--dark); }

/* Stats */
.stat-box { text-align: center; }
.stat-box .num { font-size: 28px; font-weight: 700; color: var(--primary); }
.stat-box .label { font-size: 12px; }

/* Testimonials */
.testimonial-card blockquote { font-size: 13px; margin-bottom: 8px; }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 10px;
}

/* Process */
.step { text-align: center; }
.step .step-num {
  width: 40px; height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CTA */
.cta {
  background: var(--grad-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(11, 94, 215, 0.25);
}
.cta h2 { color: #fff; font-size: 22px; }
.cta p { color: rgba(255, 255, 255, 0.9); font-size: 13px; }
.cta .btn-light { background: #fff; border-color: #fff; color: var(--primary); }

/* Contact form */
.form-control {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 6px;
}
.form-label { font-size: 13px; font-weight: 500; color: var(--dark); }
.contact-item { display: flex; align-items: flex-start; margin-bottom: 18px; }
.contact-item .icon-box { margin: 0 12px 0 0; flex-shrink: 0; }
.contact-item p { margin: 0; font-size: 13px; }

.map-placeholder {
  background: var(--grad-soft);
  border: 1px dashed var(--primary);
  border-radius: var(--radius);
  min-height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 14px;
}

/* Footer */
.footer { background: linear-gradient(180deg, #23272b 0%, var(--dark) 100%); color: #adb5bd; font-size: 13px; padding: 24px 0 0; }
.footer .row { --bs-gutter-x: 1rem; --bs-gutter-y: 0.75rem; }
.footer h5 { color: #fff; font-size: 15px; margin-bottom: 8px; }
.footer a { color: #adb5bd; }
.footer a:hover { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 2px 0; }
.footer-bottom {
  border-top: 1px solid #343a40;
  margin-top: 12px;
  padding: 8px 0;
  font-size: 12px;
}

/* FAQ */
.accordion-button { font-size: 14px; color: var(--dark); }
.accordion-body { font-size: 13px; }

/* Privacy */
.privacy h3 { font-size: 18px; margin-top: 22px; }
.privacy p, .privacy li { font-size: 13px; }

/* Utilities */
.text-primary { color: var(--primary) !important; }
.small { font-size: 12px; }

@media (max-width: 991.98px) {
  .hero { padding: 48px 0; text-align: center; }
  .hero p { margin: 0 auto 16px; }
  .hero-img { margin-top: 24px; }
}
