:root {
  --bd-accent: #4338CA;
  --bd-accent-hover: #3730A3;
  --bd-accent-light: #EDE9FE;
  --bd-accent-mid: #6D28D9;
  --bd-bg-dark: #0C0F1E;
  --bd-bg-dark-alt: #131929;
  --bd-bg-light: #FFFFFF;
  --bd-bg-alt: #F8F7FF;
  --bd-text-primary: #0F172A;
  --bd-text-secondary: #475569;
  --bd-text-muted: #94A3B8;
  --bd-text-light: #E2E8F0;
  --bd-text-light-muted: #94A3B8;
  --bd-border: #E2E8F0;
  --bd-border-dark: #1E293B;
  --bd-success: #059669;
  --bd-warning: #D97706;
  --bd-radius: 10px;
  --bd-radius-lg: 16px;
  --bd-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --bd-shadow-dark: 0 8px 40px rgba(0,0,0,0.3);
  --bd-transition: 0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #FFFFFF;
  color: #475569;
  margin: 0;
  padding: 0;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.has-fixed-nav { padding-top: 72px; }

a { color: #4338CA; text-decoration: none; }
a:hover { color: #3730A3; }

img { max-width: 100%; height: auto; display: block; }

h1 { font-size: 52px; font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: 38px; font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 26px; font-weight: 600; line-height: 1.3; letter-spacing: -0.01em; }
h4 { font-size: 20px; font-weight: 600; line-height: 1.35; }

@media (max-width: 767px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
}

.bd-mono {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.c-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.c-btn--primary {
  background: #4338CA;
  color: #FFFFFF;
  border-color: #4338CA;
}
.c-btn--primary:hover {
  background: #3730A3;
  border-color: #3730A3;
  color: #FFFFFF;
}

.c-btn--outline {
  background: transparent;
  color: #4338CA;
  border-color: #4338CA;
}
.c-btn--outline:hover {
  background: rgba(67,56,202,0.08);
  color: #4338CA;
}

.c-btn--dark-outline {
  background: transparent;
  color: #E2E8F0;
  border-color: rgba(226,232,240,0.4);
}
.c-btn--dark-outline:hover {
  background: rgba(255,255,255,0.08);
  color: #E2E8F0;
}

.c-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.c-section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4338CA;
  background: #EDE9FE;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.c-section-title {
  color: #0F172A;
  margin-bottom: 16px;
}
.c-section-desc {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  height: 72px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.c-nav__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.c-nav__logo {
  font-size: 20px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
  text-decoration: none;
  flex-shrink: 0;
}
.c-nav__logo span { color: #4338CA; }
.c-nav__logo img { height: 36px; width: auto; display: block; }

.c-nav__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.c-nav__links li a {
  font-size: 15px;
  font-weight: 500;
  color: #475569;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.c-nav__links li a:hover { color: #0F172A; background: #F8F7FF; }
.c-nav__links li a.active { color: #4338CA; }

.c-nav__cta {
  background: #4338CA !important;
  color: #FFFFFF !important;
  border-radius: 8px !important;
  padding: 10px 22px !important;
  font-weight: 600 !important;
  margin-left: 8px;
}
.c-nav__cta:hover { background: #3730A3 !important; }

.c-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.c-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #0F172A;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .c-nav__toggle { display: flex; }
  .c-nav__links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 8px;
    overflow-y: auto;
    border-top: 1px solid #E2E8F0;
  }
  .c-nav__links.is-open { display: flex; }
  .c-nav__links li { width: 100%; }
  .c-nav__links li a { display: block; font-size: 17px; padding: 12px 16px; border-radius: 8px; }
  .c-nav__cta { margin-left: 0 !important; margin-top: 8px; text-align: center; }
}

.c-hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
}
.c-hero--dark {
  background: #0C0F1E;
}
.c-hero--light {
  background: #F8F7FF;
}
.c-hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.c-hero > .container {
  position: relative;
  z-index: 2;
}
.c-hero--split {
  background: #0C0F1E;
}
.c-hero--split .c-hero__label {
  background: rgba(67,56,202,0.25);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
}
.c-hero--split .c-hero__title { color: #E2E8F0; }
.c-hero--split .c-hero__subtitle { color: #94A3B8; }

.c-hero--center {
  background: #0C0F1E;
  text-align: center;
}
.c-hero--center .c-hero__label {
  background: rgba(67,56,202,0.25);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
}
.c-hero--center .c-hero__title { color: #E2E8F0; }
.c-hero--center .c-hero__subtitle { color: #94A3B8; }
.c-hero--center .c-hero__cta { justify-content: center; }

.c-hero--left {
  background: #F8F7FF;
}
.c-hero--left .c-hero__title { color: #0F172A; }
.c-hero--left .c-hero__subtitle { color: #475569; }

.c-hero--left.bd-hero-dark {
  background: #0C0F1E;
}
.c-hero--left.bd-hero-dark .c-hero__title { color: #E2E8F0; }
.c-hero--left.bd-hero-dark .c-hero__subtitle { color: #94A3B8; }

.c-hero__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4338CA;
  background: #EDE9FE;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.c-hero__title {
  margin-bottom: 20px;
  margin-top: 0;
}
.c-hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.c-hero--center .c-hero__subtitle { margin-left: auto; margin-right: auto; }

.c-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.c-hero__image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.bd-hero-visual {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #131929;
  border: 1px solid #1E293B;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.bd-hero-visual__placeholder {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.bd-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.c-stats--bar {
  background: #F8F7FF;
  padding: 60px 0;
  border-bottom: 1px solid #E2E8F0;
  border-top: 1px solid #E2E8F0;
}
.c-stats__grid {
  display: flex;
  gap: 0;
}
.c-stats__item {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid #E2E8F0;
}
.c-stats__item:last-child { border-right: none; }
.c-stats__number {
  display: block;
  font-size: 42px;
  font-weight: 800;
  color: #4338CA;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.c-stats__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}
.c-stats__icon {
  font-size: 22px;
  color: #4338CA;
  margin-bottom: 10px;
}

.c-stats--cards {
  padding: 80px 0;
  background: #F8F7FF;
}
.c-stats__card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
  height: 100%;
}
.c-stats__card .c-stats__number {
  font-size: 38px;
}
.c-stats__card .c-stats__label {
  font-size: 15px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 8px;
}
.c-stats__desc {
  font-size: 14px;
  color: #94A3B8;
  margin: 0;
  line-height: 1.5;
}

.c-features {
  padding: 80px 0;
  background: #FFFFFF;
}
.c-features__grid {
  display: grid;
  gap: 28px;
}
.c-features__grid--6 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 991px) {
  .c-features__grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .c-features__grid--6 { grid-template-columns: 1fr; }
}
.c-features__card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex;
  flex-direction: column;
}
.c-features__card:hover {
  box-shadow: 0 8px 32px rgba(67,56,202,0.12);
  transform: translateY(-2px);
}
.c-features__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #EDE9FE;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #4338CA;
}
.c-features__name {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-bottom: 10px;
  margin-top: 0;
}
.c-features__text {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.c-features--alternating {
  padding: 80px 0;
  background: #FFFFFF;
}
.c-features__row {
  padding: 60px 0;
  border-bottom: 1px solid #E2E8F0;
}
.c-features__row:last-child { border-bottom: none; }
.c-features__row .c-features__name {
  font-size: 30px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 20px;
  margin-top: 0;
}
.c-features__row .c-features__text {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 14px;
}
.c-features__img {
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

@media (max-width: 767px) {
  .c-features__row { padding: 40px 0; }
  .c-features__img { height: 240px; margin-top: 24px; }
}

.c-features--3 {
  padding: 80px 0;
  background: #F8F7FF;
}
.c-features__grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 767px) {
  .c-features__grid--3 { grid-template-columns: 1fr; }
}

.c-process {
  padding: 80px 0;
  background: #0C0F1E;
}
.c-process .c-section-label {
  background: rgba(67,56,202,0.25);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
}
.c-process .c-section-title { color: #E2E8F0; }
.c-process .c-section-desc { color: #94A3B8; }

.c-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 991px) {
  .c-process__steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .c-process__steps { grid-template-columns: 1fr; }
}
.c-process__step {
  background: #131929;
  border: 1px solid #1E293B;
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
}
.c-process__num {
  display: block;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 42px;
  font-weight: 700;
  color: rgba(67,56,202,0.3);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.c-process__icon {
  font-size: 26px;
  color: #6D28D9;
  margin-bottom: 16px;
}
.c-process__name {
  font-size: 18px;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 10px;
  margin-top: 0;
}
.c-process__text {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
}

.c-process--timeline {
  padding: 80px 0;
  background: #0C0F1E;
}
.c-process--timeline .c-section-label {
  background: rgba(67,56,202,0.25);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
}
.c-process--timeline .c-section-title { color: #E2E8F0; }
.c-process--timeline .c-section-desc { color: #94A3B8; }
.c-process__timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.c-process__timeline-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding-bottom: 40px;
  position: relative;
}
.c-process__timeline-item::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: #1E293B;
}
.c-process__timeline-item:last-child::before { display: none; }
.c-process__timeline-marker {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #4338CA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: #FFFFFF;
  font-weight: 700;
  z-index: 1;
  position: relative;
}
.c-process__timeline-content { flex: 1; padding-top: 8px; }
.c-process__timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #E2E8F0;
  margin-bottom: 8px;
  margin-top: 0;
}
.c-process__timeline-content p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.65;
  margin: 0;
}

.c-testimonials {
  padding: 80px 0;
  background: #F8F7FF;
}
.c-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) {
  .c-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .c-testimonials__grid { grid-template-columns: 1fr; }
}
.c-testimonials__card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.c-testimonials__quote {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 24px;
  flex: 1;
  font-style: italic;
}
.c-testimonials__author {
  font-weight: 600;
  color: #0F172A;
  font-size: 14px;
}
.c-testimonials__role {
  font-size: 13px;
  color: #94A3B8;
}
.c-testimonials__stars {
  color: #F59E0B;
  margin-bottom: 16px;
  font-size: 14px;
}

.c-testimonials--stats {
  padding: 80px 0;
  background: #0C0F1E;
  text-align: center;
}
.c-testimonials--stats .c-section-title { color: #E2E8F0; }
.c-testimonials--stats .c-section-label {
  background: rgba(67,56,202,0.25);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.3);
}
.c-trust-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .c-trust-stats { grid-template-columns: 1fr; }
}
.c-trust-stat {
  padding: 40px 24px;
  background: #131929;
  border: 1px solid #1E293B;
  border-radius: 16px;
}
.c-trust-stat__num {
  display: block;
  font-size: 52px;
  font-weight: 800;
  color: #4338CA;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.c-trust-stat__label {
  display: block;
  font-size: 15px;
  color: #E2E8F0;
  font-weight: 600;
  margin-bottom: 8px;
}
.c-trust-stat__desc {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}

.c-cta {
  padding: 80px 0;
  background: #4338CA;
  text-align: center;
}
.c-cta__title {
  font-size: 38px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.c-cta__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.c-cta__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}
.c-cta .c-btn--primary {
  background: #FFFFFF;
  color: #4338CA;
  border-color: #FFFFFF;
}
.c-cta .c-btn--primary:hover {
  background: #EDE9FE;
  border-color: #EDE9FE;
  color: #4338CA;
}
.c-cta .c-btn--dark-outline {
  border-color: rgba(255,255,255,0.5);
  color: #FFFFFF;
}
.c-cta .c-btn--dark-outline:hover {
  background: rgba(255,255,255,0.1);
}

.c-cta--card {
  padding: 80px 0;
  background: #0C0F1E;
}
.c-cta__card-inner {
  background: #131929;
  border: 1px solid #1E293B;
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.c-cta--card .c-cta__title { font-size: 32px; }
.c-cta--card .c-cta__desc { font-size: 16px; }

.c-team {
  padding: 80px 0;
  background: #FFFFFF;
}
.c-team__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 991px) {
  .c-team__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .c-team__grid { grid-template-columns: 1fr; }
}
.c-team__card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  height: 100%;
}
.c-team__card:hover {
  box-shadow: 0 8px 32px rgba(67,56,202,0.10);
  transform: translateY(-2px);
}
.c-team__avatar {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  background: #F8F7FF;
}
.c-team__body {
  padding: 22px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.c-team__name {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  margin-top: 0;
}
.c-team__title {
  font-size: 13px;
  font-weight: 500;
  color: #4338CA;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.c-team__bio {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.c-contact {
  padding: 80px 0;
  background: #FFFFFF;
}
.c-contact__title {
  font-size: 30px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 32px;
}
.c-contact__form input,
.c-contact__form select,
.c-contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-size: 15px;
  color: #0F172A;
  background: #FFFFFF;
  margin-bottom: 16px;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.c-contact__form input:focus,
.c-contact__form select:focus,
.c-contact__form textarea:focus {
  outline: none;
  border-color: #4338CA;
  box-shadow: 0 0 0 3px rgba(67,56,202,0.1);
}
.c-contact__form .row { margin-bottom: 0; }
.c-contact__form textarea { resize: vertical; min-height: 140px; }
.c-contact__form button { width: 100%; }

.c-contact__info-title {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 28px;
  margin-top: 0;
}
.c-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}
.c-contact__info-item i {
  color: #4338CA;
  font-size: 16px;
  margin-top: 3px;
  width: 18px;
  flex-shrink: 0;
}
.c-contact__info-item a,
.c-contact__info-item span {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}
.c-contact__info-item a:hover { color: #4338CA; }

.c-blog-grid {
  padding: 80px 0;
  background: #FFFFFF;
}
.c-blog-grid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) {
  .c-blog-grid__list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
  .c-blog-grid__list { grid-template-columns: 1fr; }
}
.c-blog-grid__card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.c-blog-grid__card:hover {
  box-shadow: 0 8px 32px rgba(67,56,202,0.10);
  transform: translateY(-2px);
  color: inherit;
}
.c-blog-grid__thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: #F8F7FF;
}
.c-blog-grid__body {
  padding: 22px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.c-blog-grid__date {
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
  margin-bottom: 10px;
  display: block;
}
.c-blog-grid__title {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 10px;
  margin-top: 0;
  line-height: 1.35;
}
.c-blog-grid__excerpt {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
}
.c-blog-grid__read-more {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #4338CA;
}
.c-blog-grid__card:hover .c-blog-grid__read-more { color: #3730A3; }

.c-footer {
  background: #0C0F1E;
  padding: 72px 0 0;
  border-top: 1px solid #1E293B;
}
.c-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid #1E293B;
}
@media (max-width: 991px) {
  .c-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 575px) {
  .c-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}
.c-footer__logo {
  display: inline-block;
  font-size: 20px;
  font-weight: 800;
  color: #E2E8F0;
  letter-spacing: -0.02em;
  text-decoration: none;
  margin-bottom: 14px;
}
.c-footer__logo span { color: #6D28D9; }
.c-footer__logo img { height: 32px; width: auto; }
.c-footer__tagline {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 20px;
}
.c-footer__social { display: flex; gap: 12px; }
.c-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #131929;
  border: 1px solid #1E293B;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94A3B8;
  font-size: 14px;
  transition: background 0.2s ease, color 0.2s ease;
  text-decoration: none;
}
.c-footer__social a:hover { background: #4338CA; color: #FFFFFF; }

.c-footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
  margin-top: 0;
}
.c-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-footer__col ul li { margin-bottom: 10px; }
.c-footer__col ul li a {
  font-size: 14px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-footer__col ul li a:hover { color: #E2E8F0; }

.c-footer__contact { }
.c-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}
.c-footer__contact-item i {
  color: #6D28D9;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.c-footer__contact-item a,
.c-footer__contact-item span {
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.5;
  text-decoration: none;
}
.c-footer__contact-item a:hover { color: #E2E8F0; }

.c-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.c-footer__bottom p {
  font-size: 13px;
  color: #94A3B8;
  margin: 0;
}
.c-footer__legal {
  display: flex;
  gap: 20px;
}
.c-footer__legal a {
  font-size: 13px;
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}
.c-footer__legal a:hover { color: #E2E8F0; }

#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #131929;
  padding: 20px 28px;
  z-index: 9999;
  border-top: 1px solid #1E293B;
}
.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  font-size: 14px;
  color: #94A3B8;
  line-height: 1.6;
}
.cookie-banner__text a { color: #A5B4FC; text-decoration: underline; }
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
#cookie-accept {
  background: #4338CA;
  color: #FFFFFF;
  border: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
#cookie-accept:hover { background: #3730A3; }
#cookie-decline {
  background: #1E293B;
  color: #94A3B8;
  border: 1px solid #334155;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
#cookie-decline:hover { background: #0F172A; }

.bd-story-section {
  padding: 80px 0;
  background: #FFFFFF;
}
.bd-story__heading {
  font-size: 30px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
  margin-top: 0;
}
.bd-story__body {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}
.bd-story__quote {
  border-left: 4px solid #4338CA;
  padding: 20px 24px;
  background: #F8F7FF;
  border-radius: 0 10px 10px 0;
  margin: 32px 0;
}
.bd-story__quote p {
  font-size: 17px;
  font-style: italic;
  color: #0F172A;
  line-height: 1.7;
  margin-bottom: 10px;
}
.bd-story__quote cite {
  font-size: 14px;
  color: #94A3B8;
  font-style: normal;
  font-weight: 600;
}
.bd-story__img {
  width: 100%;
  border-radius: 16px;
  height: 420px;
  object-fit: cover;
  box-shadow: 0 8px 40px rgba(0,0,0,0.10);
  display: block;
  background: #F8F7FF;
}

.bd-principles {
  padding: 80px 0;
  background: #F8F7FF;
}
.bd-principles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 767px) {
  .bd-principles__grid { grid-template-columns: 1fr; }
}
.bd-principle-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}
.bd-principle-card__icon {
  font-size: 32px;
  color: #4338CA;
  margin-bottom: 16px;
}
.bd-principle-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 12px;
  margin-top: 0;
}
.bd-principle-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.bd-legal {
  padding: 80px 0;
  background: #FFFFFF;
}
.bd-legal__content {
  max-width: 780px;
  margin: 0 auto;
}
.bd-legal__content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 48px;
  margin-bottom: 16px;
}
.bd-legal__content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
  margin-top: 32px;
  margin-bottom: 12px;
}
.bd-legal__content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 18px;
}
.bd-legal__content ul {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  padding-left: 24px;
  margin-bottom: 18px;
}
.bd-legal__content ul li { margin-bottom: 6px; }
.bd-legal__meta {
  font-size: 14px;
  color: #94A3B8;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #E2E8F0;
}

.bd-404 {
  background: #0C0F1E;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bd-404__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.bd-404__content { position: relative; z-index: 1; }
.bd-404__code {
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  font-size: 120px;
  font-weight: 700;
  color: #4338CA;
  line-height: 1;
  margin-bottom: 16px;
}
.bd-404__heading {
  font-size: 38px;
  font-weight: 700;
  color: #E2E8F0;
  margin-bottom: 16px;
  margin-top: 0;
}
.bd-404__body {
  font-size: 18px;
  color: #94A3B8;
  margin-bottom: 36px;
  line-height: 1.7;
}

@media (max-width: 575px) {
  .bd-404__code { font-size: 80px; }
  .bd-404__heading { font-size: 26px; }
}

.hero-sub {
  padding: 80px 0 60px;
}
.hero-sub .c-hero__title { font-size: 38px; }
.hero-sub .c-hero__subtitle { font-size: 17px; }

.bd-contact-map-placeholder {
  background: #F8F7FF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  color: #94A3B8;
  font-size: 14px;
}

/* ==========================================
   BLOG ARTICLE STYLES
   ========================================== */

.bd-blog-article {
  background: #FFFFFF;
}

.bd-blog-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 0;
}

.bd-blog-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(12,15,30,0.4) 0%, rgba(12,15,30,0.85) 100%);
}

.bd-blog-hero__content {
  position: relative;
  z-index: 1;
  padding: 60px 0 48px;
}

.bd-blog-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.bd-blog-meta__date,
.bd-blog-meta__author,
.bd-blog-meta__read {
  font-size: 14px;
  color: #94A3B8;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.bd-blog-meta__author {
  color: #E2E8F0;
  font-weight: 600;
}

.bd-blog-title {
  font-size: 42px;
  font-weight: 800;
  color: #E2E8F0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 800px;
}

.bd-blog-body {
  padding: 64px 0 80px;
}

.bd-blog-intro {
  font-size: 20px;
  color: #0F172A;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 36px;
  border-left: 4px solid #4338CA;
  padding-left: 24px;
}

.bd-blog-body h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0F172A;
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.bd-blog-body p {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
}

.bd-blog-body ul,
.bd-blog-body ol {
  font-size: 17px;
  color: #475569;
  line-height: 1.8;
  padding-left: 28px;
  margin-bottom: 24px;
}

.bd-blog-body ul li,
.bd-blog-body ol li {
  margin-bottom: 8px;
}

.bd-blog-body strong {
  color: #0F172A;
  font-weight: 600;
}

.bd-blog-cta {
  background: #F8F7FF;
  border: 1px solid #EDE9FE;
  border-left: 4px solid #4338CA;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 48px 0;
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
}

.bd-blog-cta a {
  color: #4338CA;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bd-blog-related {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid #E2E8F0;
}

.bd-blog-related h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 24px;
}

.bd-blog-related__card {
  display: block;
  text-decoration: none;
  color: #0F172A;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bd-blog-related__card:hover {
  box-shadow: 0 8px 24px rgba(67,56,202,0.12);
  transform: translateY(-2px);
  color: #0F172A;
}

.bd-blog-related__card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bd-blog-related__card span {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #0F172A;
}

@media (max-width: 767px) {
  .bd-blog-title { font-size: 28px; }
  .bd-blog-hero { min-height: 320px; }
  .bd-blog-intro { font-size: 17px; padding-left: 16px; }
  .bd-blog-body { padding: 40px 0 56px; }
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Light hero default: show dark logo */
.c-nav .logo-img--dark { display: inline-block; }
.c-nav .logo-img--light { display: none; }
/* When nav on dark bg (scrolled dark, hero-dark, navbar-dark), swap */
.c-nav.on-dark .logo-img--dark,
.navbar-dark .logo-img--dark,
body.hero-dark .c-nav .logo-img--dark { display: none; }
.c-nav.on-dark .logo-img--light,
.navbar-dark .logo-img--light,
body.hero-dark .c-nav .logo-img--light { display: inline-block; }
