
  @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=DM+Serif+Display&display=swap');

  .facade-root {
    font-family: 'Outfit', sans-serif;
    color: var(--color-text-primary);
    padding: 0;
  }

  .top-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    margin-bottom: 2rem;
    border: 0.5px solid var(--color-border-tertiary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
  }

  .services-panel {
    padding: 2rem;
    background: var(--color-background-primary);
  }

  .services-panel h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-secondary);
    margin: 0 0 1.25rem;
  }

  .services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 1.5rem;
  }

  .service-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: var(--color-text-primary);
    line-height: 1.4;
    padding: 6px 0;
  }

  .service-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1a5fc8;
    margin-top: 5px;
    flex-shrink: 0;
  }

  .workflow-panel {
    background: #f0f4fb;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .workflow-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a5fc8;
    margin-bottom: 1.25rem;
  }

  .workflow-steps {
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
  }

  .wf-step {
    flex: 1;
    padding: 10px 8px;
    text-align: center;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%, 10px 50%);
    position: relative;
  }

  .wf-step:first-child {
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
  }

  .wf-step.active {
    background: #1a5fc8;
    color: #fff;
  }

  .wf-step.done {
    background: #3a7bd5;
    color: rgba(255,255,255,0.85);
  }

  .wf-step.highlight {
    background: #0d3d8e;
    color: #fff;
  }

  .modelling-section {
    border: 1.5px dashed #1a5fc8;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--color-background-primary);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
  }

  .modelling-section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #1a5fc8;
    margin: 0 0 0.75rem;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #1a5fc8;
  }

  .modelling-section p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin: 0 0 1rem;
    line-height: 1.6;
  }

  .modelling-items {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .modelling-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: var(--color-text-primary);
    line-height: 1.5;
  }

  .m-dot {
    width: 18px;
    height: 18px;
    background: #1a5fc8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .m-dot svg {
    width: 10px;
    height: 10px;
    fill: none;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
  }

  .tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 1rem;
  }

  .tech-tag {
    padding: 4px 10px;
    background: #e8f0fc;
    color: #1a5fc8;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 0.5px solid #b5cfee;
  }

  .model-visual {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
  }

  .model-block-main {
    width: 160px;
    height: 90px;
    background: linear-gradient(135deg, #e8f0fc 60%, #d0e1f7 100%);
    border: 0.5px solid #b5cfee;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }

  .model-block-main svg {
    width: 100%;
    height: 100%;
  }

  .model-parts {
    display: flex;
    gap: 6px;
  }

  .model-part {
    height: 28px;
    border-radius: 4px;
    border: 0.5px solid #b5cfee;
    background: #e8f0fc;
  }

  .photos-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
  }

  .photo-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 200px;
    background: #1a5fc8;
    display: flex;
    align-items: flex-end;
  }

  .photo-sketch {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
  }

  .photo-overlay {
    position: relative;
    z-index: 2;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
    width: 100%;
  }

  .photo-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
