
  .bwm-hero {
    min-height: 50vh; display: flex; flex-direction: column; justify-content: center;
    align-items: center; text-align: center; padding: 100px 24px 48px;
    position: relative; overflow: hidden;
  }
  #particlesBg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; }
  .bwm-hero > * { position: relative; z-index: 1; }
  .bwm-hero h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; margin-bottom: 16px; letter-spacing: -0.03em; }
  .bwm-hero p { color: var(--text-secondary, #a1a1aa); font-size: 1.15rem; max-width: 640px; line-height: 1.6; margin-bottom: 32px; }
  .bwm-section { padding: 56px 24px; max-width: 1100px; margin: 0 auto; }
  .bwm-section h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
  .bwm-section .section-sub { color: var(--text-secondary, #a1a1aa); font-size: 1.05rem; max-width: 600px; margin-bottom: 32px; line-height: 1.6; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
  .service-card {
    background: var(--card-bg, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.06));
    border-radius: 20px; padding: 28px 24px; transition: border-color 0.3s, transform 0.3s;
    position: relative; overflow: hidden;
  }
  .service-card:hover { border-color: var(--accent, #6366f1); transform: translateY(-6px); }
  .service-card::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--accent, #6366f1), #a855f7); opacity: 0; transition: opacity 0.3s;
  }
  .service-card:hover::after { opacity: 1; }
  .svc-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
  .service-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
  .service-card p { color: var(--text-secondary, #a1a1aa); line-height: 1.7; font-size: 0.95rem; }
  .process-flow { display: flex; gap: 0; counter-reset: step; }
  @media (max-width: 768px) { .process-flow { flex-direction: column; } }
  .process-step {
    flex: 1; background: var(--card-bg, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.06));
    padding: 24px 16px; text-align: center; position: relative; transition: border-color 0.3s;
  }
  .process-step:first-child { border-radius: 16px 0 0 16px; }
  .process-step:last-child { border-radius: 0 16px 16px 0; }
  @media (max-width: 768px) {
    .process-step:first-child { border-radius: 16px 16px 0 0; }
    .process-step:last-child { border-radius: 0 0 16px 16px; }
  }
  .process-step:hover { border-color: var(--accent, #6366f1); }
  .process-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent, #6366f1), #a855f7);
    color: white; font-weight: 700; font-size: 1rem; margin-bottom: 16px;
  }
  .process-step h4 { font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
  .process-step p { color: var(--text-secondary, #a1a1aa); font-size: 0.85rem; line-height: 1.6; }
  .process-step::after {
    content: '\2192'; position: absolute; right: -12px; top: 50%; transform: translateY(-50%);
    color: var(--accent, #6366f1); font-size: 1.1rem; font-weight: 700; z-index: 2;
  }
  .process-step:last-child::after { content: none; }
  @media (max-width: 768px) {
    .process-step::after { content: '\2193'; right: auto; bottom: -14px; top: auto; left: 50%; transform: translateX(-50%); }
  }
  .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
  @media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card {
    background: var(--card-bg, rgba(255,255,255,0.03)); border: 1px solid var(--border, rgba(255,255,255,0.06));
    border-radius: 16px; padding: 24px; border-left: 3px solid var(--accent, #6366f1); transition: border-color 0.3s;
  }
  .why-card:hover { border-color: var(--accent, #6366f1); }
  .why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
  .why-card p { color: var(--text-secondary, #a1a1aa); line-height: 1.7; font-size: 0.95rem; }
  .bwm-cta { text-align: center; padding: 60px 24px; position: relative; }
  .bwm-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; margin-bottom: 16px; }
  .bwm-cta p { color: var(--text-secondary, #a1a1aa); margin-bottom: 32px; font-size: 1.1rem; max-width: 500px; margin-left: auto; margin-right: auto; }
  .section-illust { display: flex; justify-content: center; margin-bottom: 12px; opacity: 0.45; }
