@charset "UTF-8";
    .dl-hero {
      background: linear-gradient(135deg, #1a0a0a 0%, #3a0808 50%, #620505 100%);
      padding: 80px 0 60px; color: #fff;
    }
    .dl-hero-inner {
      display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center;
    }
    .dl-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
    .dl-hero h1 em { color: #ff9db0; font-style: normal; }
    .dl-hero p { font-size: 1.05rem; line-height: 1.7; color: rgba(255,255,255,.8); margin-bottom: 32px; }
    .dl-badge-row { display: flex; gap: 16px; flex-wrap: wrap; }
    .dl-badge {
      display: flex; align-items: center; gap: 12px;
      background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
      border-radius: 12px; padding: 12px 20px;
      text-decoration: none; color: #fff;
      transition: background .15s, border-color .15s;
    }
    .dl-badge:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.4); color: #fff; }
    .dl-badge svg { flex-shrink: 0; }
    .dl-badge-text { display: flex; flex-direction: column; }
    .dl-badge-text small { font-size: .68rem; opacity: .7; line-height: 1; }
    .dl-badge-text strong { font-size: 1rem; font-weight: 700; line-height: 1.3; }
    .dl-app-img { display: flex; justify-content: center; align-items: flex-end; gap: 20px; }
    .dl-phone {
      border-radius: 28px; overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.1);
      flex-shrink: 0;
    }
    .dl-phone:nth-child(1) { width: 170px; margin-bottom: 40px; }
    .dl-phone:nth-child(2) { width: 185px; }
    .dl-phone img { width: 100%; display: block; }
    .feat-strip {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
      background: var(--border); border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow);
    }
    .feat-strip-item {
      background: #fff; padding: 28px 24px; text-align: center;
    }
    .feat-strip-item .feat-icon { font-size: 1.8rem; margin-bottom: 10px; }
    .feat-strip-item h3 { font-size: .92rem; font-weight: 800; margin-bottom: 6px; }
    .feat-strip-item p { font-size: .8rem; color: var(--text-muted); line-height: 1.55; }
    .screens-row {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: end;
    }
    .screen-card { text-align: center; }
    .screen-phone {
      border-radius: 24px; overflow: hidden;
      box-shadow: var(--shadow-xl); border: 1px solid var(--border);
      display: inline-block; width: 180px;
    }
    .screen-phone img { width: 100%; display: block; }
    .screen-card p { margin-top: 16px; font-size: .85rem; color: var(--text-muted); line-height: 1.55; }
    .screen-card strong { display: block; font-size: .95rem; font-weight: 800; margin-bottom: 4px; }
    .dl-bottom {
      background: linear-gradient(135deg, #fdfcfc, #f5eeee);
      border-top: 1px solid var(--border); padding: 64px 0; text-align: center;
    }
    .dl-bottom h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 12px; }
    .dl-bottom h2 em { color: var(--primary); font-style: normal; }
    .dl-bottom p { color: var(--text-muted); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }
    .dl-bottom .dl-badge { background: var(--primary); border-color: var(--primary); justify-content: center; }
    .dl-bottom .dl-badge:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
    .dl-bottom-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    @media (max-width: 900px) {
      .dl-hero-inner { grid-template-columns: 1fr; gap: 40px; }
      .dl-app-img { order: -1; }
      .feat-strip { grid-template-columns: 1fr 1fr; }
      .screens-row { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
    }
    @media (max-width: 560px) { .feat-strip { grid-template-columns: 1fr; } }
  
