:root {
  --brand-dark: #0f172a;
  --brand-primary: #2563eb;
  --brand-primary-hover: #1d4ed8;
  --brand-secondary: #64748b;
  --brand-accent: #3b82f6;
  --text-main: #334155;
  --bg-light: #f8fafc;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  line-height: 1.6;
  background-color: #ffffff;
}

h1, h2, h3, .nav-link {
  font-family: 'Outfit', sans-serif;
}

.text-primary {
  color: var(--brand-primary) !important;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--brand-primary);
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  background: radial-gradient(circle at top right, #eff6ff 0%, #ffffff 50%);
  overflow: hidden;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: #dbeafe;
  color: var(--brand-primary);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--brand-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Service Cards */
.service-card {
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  background: #fff;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: var(--brand-primary);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #eff6ff;
  color: var(--brand-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.accordion-item {
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button:not(.collapsed) {
  background-color: #eff6ff;
  color: var(--brand-primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,0.05);
}

/* Compliance Bar */
.compliance-bar {
  background: var(--brand-dark);
  padding: 40px 0;
  color: white;
}

/* CTA Section */
.cta-section {
  background: var(--brand-primary);
  border-radius: 30px;
  padding: 60px;
  color: white;
}

.btn-primary {
  background: var(--brand-primary);
  border: none;
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 12px;
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

.btn-outline-dark {
  padding: 0.8rem 2rem;
  font-weight: 600;
  border-radius: 12px;
}

.floating-contact {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  padding: 2.5rem;
}

footer {
  background: #0a0f1c;
  color: #94a3b8;
  padding: 80px 0 40px;
}

footer h5 {
  color: #fff;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero { padding: 120px 0 60px; text-align: center; }
  .hero h1 { font-size: 2.5rem; }
  .cta-section { padding: 40px 20px; }
}