<style>
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'DM Sans', sans-serif; background: #0a0a0f; color: #f0ede8; min-height: 100vh; }
  
  .brochure { width: 100%; max-width: 900px; margin: 0 auto; }

  /* COVER */
  .cover {
    background: linear-gradient(135deg, #0a0a0f 0%, #12101a 50%, #0d0d18 100%);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #2a2040;
  }
  .cover::before {
    content: '';
    position: absolute;
    top: -120px; left: 50%;
    transform: translateX(-50%);
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(130,80,255,0.18) 0%, transparent 70%);
    pointer-events: none;
  }
  .cover::after {
    content: '';
    position: absolute;
    bottom: -80px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(255,100,160,0.12) 0%, transparent 70%);
    pointer-events: none;
  }
  .logo-mark {
    width: 200px; height: 200px; 
    background: linear-gradient(135deg, #8250ff, #d060b0);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 900;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -1px;
    box-shadow: 0 0 40px rgba(130,80,255,0.4);
  }

  .logo-mark img {
    width: 100%; height: 100%;
    object-fit: contain;
  }
  .agency-name {
    font-family: 'Playfair Display', serif;
    font-size: 52px; font-weight: 900;
    color: #f0ede8;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 8px;
  }
  .agency-name span { color: #b070e0; }
  .tagline {
    font-size: 14px; font-weight: 300;
    color: #a09ab0;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 28px;
  }
  .divider { width: 60px; height: 2px; background: linear-gradient(90deg, #8250ff, #d060b0); margin: 0 auto 28px; }
  .cover-desc {
    font-size: 16px; font-weight: 300;
    color: #c0b8d8;
    line-height: 1.7;
    max-width: 460px;
  }
  .since-badge {
    display: inline-block;
    margin-top: 28px;
    padding: 8px 20px;
    border: 1px solid #3a2860;
    border-radius: 40px;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9080c0;
  }

  /* SECTIONS */
  .section { padding: 56px 48px; border-bottom: 1px solid #1a1828; }
  .section-label {
    font-size: 11px; letter-spacing: 4px; text-transform: uppercase;
    color: #8250ff; margin-bottom: 12px; font-weight: 500;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px; font-weight: 700;
    color: #f0ede8;
    line-height: 1.2; margin-bottom: 24px;
  }
  .section-text {
    font-size: 15px; font-weight: 300;
    color: #b0a8c8; line-height: 1.8;
    max-width: 600px;
  }

  /* MISSION / VISION */
  .mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
  .mv-card {
    padding: 28px;
    border: 1px solid #2a2040;
    border-radius: 16px;
    background: #110f1e;
    position: relative; overflow: hidden;
  }
  .mv-card::before {
    content: '';
    position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
  }
  .mv-card.mission::before { background: linear-gradient(90deg, #8250ff, #5030c0); }
  .mv-card.vision::before { background: linear-gradient(90deg, #d060b0, #ff6090); }
  .mv-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 16px;
  }
  .mv-card.mission .mv-icon { background: rgba(130,80,255,0.15); }
  .mv-card.vision .mv-icon { background: rgba(208,96,176,0.15); }
  .mv-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px; font-weight: 700; color: #f0ede8;
    margin-bottom: 12px;
  }
  .mv-text {
    font-size: 14px; font-weight: 300; color: #b0a8c8; line-height: 1.75;
  }

  /* SERVICES */
  .services-section { padding: 56px 48px; border-bottom: 1px solid #1a1828; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
  }
  .service-card {
    background: #110f1e;
    border: 1px solid #22203a;
    border-radius: 14px;
    padding: 22px 20px;
    transition: border-color 0.2s;
    cursor: default;
  }
  .service-card:hover { border-color: #5030a0; }
  .service-icon {
    width: 42px; height: 42px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; margin-bottom: 14px;
  }
  .s-purple .service-icon { background: rgba(130,80,255,0.18); }
  .s-pink .service-icon { background: rgba(208,96,176,0.18); }
  .s-teal .service-icon { background: rgba(80,200,180,0.15); }
  .s-amber .service-icon { background: rgba(230,160,50,0.15); }
  .s-coral .service-icon { background: rgba(240,100,80,0.15); }
  .service-name {
    font-size: 14px; font-weight: 500;
    color: #e0d8f0; margin-bottom: 8px; line-height: 1.3;
  }
  .service-desc {
    font-size: 12px; font-weight: 300;
    color: #8880a8; line-height: 1.6;
  }

  /* PILLARS */
  .pillars { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
  .pillar {
    flex: 1 1 140px;
    text-align: center;
    padding: 20px 16px;
    background: #110f1e;
    border: 1px solid #22203a;
    border-radius: 14px;
  }
  .pillar-icon { font-size: 22px; margin-bottom: 10px; }
  .pillar-name { font-size: 13px; font-weight: 500; color: #d0c8e8; }

  /* STATS */
  .stats-row { display: flex; gap: 0; margin-top: 36px; border: 1px solid #22203a; border-radius: 16px; overflow: hidden; }
  .stat-item { flex: 1; padding: 28px 20px; text-align: center; border-right: 1px solid #22203a; background: #110f1e; }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: #b070e0; }
  .stat-label { font-size: 12px; font-weight: 300; color: #9088a8; margin-top: 4px; letter-spacing: 1px; }

  /* FOOTER */
  .footer {
    background: #080810;
    padding: 48px;
    text-align: center;
  }
  .footer-logo { font-family: 'adineue', serif; font-size: 28px; font-weight: 900; color: #f0ede8; margin-bottom: 8px; }
  .footer-logo span { color: #b070e0; }
  .footer-tagline { font-size: 13px; color: #6860a0; margin-bottom: 28px; letter-spacing: 2px; text-transform: uppercase; }
  .footer-contact { font-size: 14px; color: #9088b8; font-weight: 300; line-height: 2; }
  .footer-contact a { color: #b070e0; text-decoration: none; }
  .footer-bottom {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid #1a1828;
    font-size: 12px; color: #504870;
  }
  
  @media (max-width: 620px) {
    .agency-name { font-size: 36px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .mv-grid { grid-template-columns: 1fr; }
    .stats-row { flex-direction: column; }
    .stat-item { border-right: none; border-bottom: 1px solid #22203a; }
    .stat-item:last-child { border-bottom: none; }
    .section, .services-section { padding: 40px 24px; }
    .footer { padding: 40px 24px; }
  }
</style>