.theme-advisory {
  --brand-primary: #1F2937;
  --brand-primary-hover: #111827;
  --brand-accent: #4F46E5;
  --brand-dark: #0F172A;
  --brand-light: #F8FAFC;
  --brand-text: #111827;
  --brand-muted: #64748B;
  --brand-border: #E2E8F0;
  --brand-table-header: #F1F5F9;
  --brand-danger: #991B1B;
}

.bodystyle {
  background-color: var(--brand-light);
  color: var(--brand-text);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Typography */

h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--brand-dark);
}

.text-muted {
  color: var(--brand-muted) !important;
}

.gateway-card {
  border-top: 5px solid var(--brand-accent) !important;
}

.pillar-badge {
  background-color: #EEF2FF;
  color: var(--brand-accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 1rem;
}

/* Buttons */

.btn-indigo {
  background-color: var(--brand-accent);
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  border: none;
  transition: all 0.2s ease;
}

.btn-indigo:hover {
  background-color: var(--brand-dark);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 4px;
  border: 1px solid var(--brand-border);
  color: var(--brand-text);
  background-color: #fff;
  transition: all 0.2s ease;
}

.btn-outline-dark:hover {
  background-color: var(--brand-table-header);
  border-color: var(--brand-muted);
  color: var(--brand-dark);
}

/* Nav */

.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid var(--brand-border);
}

.navbar-brand {
  font-weight: 800;
  color: var(--brand-dark) !important;
}

.nav-link {
  color: var(--brand-muted) !important;
  font-weight: 600;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--brand-accent) !important;
}

/* Sections & Cards */

.hero-section {
  padding: 120px 0 100px;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--brand-muted);
}

.service-card {
  background-color: #ffffff;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  padding: 40px 30px;
  height: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  border-color: var(--brand-accent);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--brand-dark);
}

.service-card .problem-statement {
  font-weight: 400;
  color: var(--brand-text);
  margin-bottom: 20px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.service-card ul {
  padding-left: 20px;
  margin-bottom: 0;
  color: var(--brand-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.service-card ul li {
  margin-bottom: 8px;
}

/* Pricing Cards Specifics */

.pricing-card {
  text-align: center;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 20px 0 10px;
}

.pricing-period {
  font-size: 0.9rem;
  color: var(--brand-muted);
  font-weight: 400;
}

.pricing-card.featured {
  border: 2px solid var(--brand-accent);
  position: relative;
}

.featured-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--brand-accent);
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card ul {
  text-align: left;
  margin-top: 24px;
  margin-bottom: 32px;
  list-style-type: none;
  padding-left: 0;
}

.pricing-card ul li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  color: var(--brand-accent);
  position: absolute;
  left: 0;
  font-weight: 800;
}

.badge-custom {
  background-color: var(--brand-table-header);
  color: var(--brand-primary);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Process Section */

.process-step {
  border-left: 2px solid var(--brand-accent);
  padding-left: 24px;
  margin-bottom: 30px;
}

.process-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

/* Testimonial */

.testimonial-section {
  background-color: #ffffff;
  padding: 80px 0;
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
}

.quote-text {
  font-size: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 24px;
  color: var(--brand-text);
}

/* Gateway CTA */

.cta-section {
  padding: 100px 0;
  text-align: center;
}

/* Mission & Pedigree Section */

.mission-section {
  background-color: var(--brand-dark);
  color: var(--brand-light);
  padding: 80px 0;
  border-top: 4px solid var(--brand-accent);
}

.mission-section h2, .mission-section h3 {
  color: var(--brand-light);
}

.mission-text {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.2;
  color: var(--brand-light);
  opacity: 0.95;
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .navbar-brand img {
    width: 180px;
    height: auto;
  }
}

