/* ===== Desktop layout — loaded together with styles.css ===== */
body { padding: 0 !important; background: var(--bg); }

.dt { color: var(--ink); font-family: var(--body); }
.dt-wrap { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.dt .btn-primary { width: auto; }

/* ---- Nav ---- */
.dt-nav {
  position: sticky; top: 0; z-index: 30;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.dt-nav-in { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.dt-nav-cta {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-size: 14.5px;
  color: #fff; background: var(--accent); text-decoration: none;
  padding: 12px 20px; border-radius: 10px;
  box-shadow: var(--shadow-cta);
  transition: background 0.2s ease, transform 0.15s ease;
}
.dt-nav-cta:hover { background: var(--accent-press); transform: translateY(-1px); }

/* ---- Hero ---- */
.dt-hero {
  padding: 78px 0 86px;
  background:
    radial-gradient(80% 90% at 92% 0%, var(--accent-soft) 0%, rgba(238,243,255,0) 60%),
    var(--card);
}
.dt-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.dt-h1 { font-size: 60px; line-height: 1.04; letter-spacing: -0.03em; margin-top: 20px; }
.dt-h1 .accent { color: var(--accent); }
.dt-lead { font-size: 19px; color: var(--ink-2); line-height: 1.55; margin-top: 22px; max-width: 30em; }
.dt-hero-cta { margin-top: 34px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.dt-hero-cta .cta-wrap { flex: none; }
.dt .btn-primary { padding: 15px 26px; font-size: 16px; }
.dt-hero-hint { font-size: 13.5px; color: var(--ink-3); max-width: 17em; line-height: 1.4; }
.dt-hero-hint b { color: var(--ink-2); font-weight: 600; }
.dt-stats { margin-top: 42px; display: flex; gap: 14px; }
.dt-stats > div { flex: 1; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 18px 18px 16px; box-shadow: var(--shadow-sm); }
.dt-stats .n { font-family: var(--display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; }
.dt-stats .l { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; line-height: 1.3; }

.dt-hero-r { display: flex; justify-content: center; }
.dt-compare-card {
  width: 100%; max-width: 460px;
  background: linear-gradient(180deg, #ffffff, var(--accent-soft));
  border: 1px solid #dbe5fb;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.dt .compare { padding: 18px; }
.dt .cmp-row { padding: 14px 16px; font-size: 14.5px; }
.dt .cmp-cap { font-size: 12px; margin-bottom: 14px; }

/* ---- Section shells ---- */
.dt-band { background: var(--bg); padding: 84px 0; }
.dt-cov-sec { background: var(--card); padding: 84px 0; }
.dt-head { text-align: center; max-width: 740px; margin: 0 auto 50px; }
.dt-head-left { text-align: left; margin-left: 0; margin-bottom: 40px; }
.dt-h2 { font-size: 38px; line-height: 1.12; letter-spacing: -0.02em; margin-top: 14px; }
.dt-sub { font-size: 17px; color: var(--ink-2); line-height: 1.55; margin-top: 14px; }
.dt-head .eyebrow { justify-content: center; }
.dt-head-left .eyebrow { justify-content: flex-start; }

/* ---- Problems grid ---- */
.dt-prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dt-prob {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.dt-prob:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.dt-prob.key { background: linear-gradient(180deg, #ffffff, var(--accent-soft)); border-color: #dbe5fb; box-shadow: var(--shadow-md); }
.dt-prob-top { display: flex; align-items: center; justify-content: space-between; }
.dt-prob-num { font-family: var(--display); font-weight: 800; font-size: 30px; color: var(--accent); opacity: 0.32; letter-spacing: -0.03em; }
.dt-prob.key .dt-prob-num { opacity: 0.5; }
.dt-prob-badge {
  display: inline-flex; align-items: center; gap: 7px; white-space: nowrap;
  font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: 0.03em;
  color: #fff; background: var(--accent); padding: 6px 12px 6px 10px; border-radius: var(--r-pill);
}
.dt-prob-h { font-size: 20px; line-height: 1.2; letter-spacing: -0.01em; margin: 18px 0 10px; font-family: var(--display); font-weight: 700; }
.dt-prob-p { font-size: 15px; color: var(--ink-2); line-height: 1.55; }

/* ---- Coverage ---- */
.dt-cov-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.dt-cov-box { background: linear-gradient(180deg, #fbfcff, #f4f7fc); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; display: flex; justify-content: center; }
.dt-cov-box .cov-stage { max-width: 420px; }
.dt-cov-mini { margin-top: 26px; display: flex; flex-direction: column; gap: 13px; }
.dt-cov-mini > div { display: flex; align-items: center; gap: 13px; font-size: 15.5px; color: var(--ink); font-family: var(--display); font-weight: 600; }
.dt-mini-ic { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; flex: none; }
.dt-mini-ic svg { width: 15px; height: 15px; }

/* ---- Benefits ---- */
.dt-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dt-benefit { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.dt-benefit .benefit-check { width: 40px; height: 40px; margin-bottom: 18px; }
.dt-benefit .benefit-check svg { width: 19px; height: 19px; }
.dt-benefit b { display: block; font-family: var(--display); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.dt-benefit span { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

.dt-callout { margin-top: 22px; background: var(--accent); color: #fff; border-radius: var(--r-lg); padding: 26px 32px; display: flex; align-items: center; gap: 18px; }
.dt-callout .callout-ic { width: 46px; height: 46px; border-radius: 13px; }
.dt-callout .callout-ic svg { width: 24px; height: 24px; }
.dt-callout b { display: block; font-family: var(--display); font-weight: 700; font-size: 18px; }
.dt-callout span { color: rgba(255,255,255,0.82); font-size: 15px; }

/* ---- Steps ---- */
.dt-steps-head { font-family: var(--display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; text-align: center; margin: 60px 0 28px; }
.dt-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.dt-step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; }
.dt-step-num { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--accent); color: var(--accent); font-family: var(--display); font-weight: 800; font-size: 16px; display: grid; place-items: center; margin-bottom: 18px; }
.dt-step b { display: block; font-family: var(--display); font-weight: 700; font-size: 17px; margin-bottom: 7px; }
.dt-step p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* ---- Price + FAQ ---- */
.dt-price-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 44px; align-items: start; }
.dt-price-card { box-shadow: var(--shadow-md); }
.dt-faq-h { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 6px; }
.dt-faq-col .faq-item:first-child { border-top: none; }
.dt-faq-col .faq-q { font-size: 16px; padding: 20px 0; }

/* ---- Final ---- */
.dt-final { background: var(--card); padding: 84px 0 60px; }
.dt-final-card { background: var(--ink); color: #fff; border-radius: 28px; padding: 66px 56px; text-align: center; position: relative; overflow: hidden; }
.dt-final-card::after { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; background: radial-gradient(circle, var(--accent-ring), transparent 70%); }
.dt-final-card h2 { color: #fff; font-size: 34px; letter-spacing: -0.02em; position: relative; }
.dt-final-card p { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.55; margin: 16px auto 0; max-width: 42em; position: relative; }
.dt-final-btn { margin: 30px auto 0; position: relative; }
.dt-footer { text-align: center; padding: 34px 0 0; font-size: 13px; color: var(--ink-3); }
.dt-footer a { color: var(--ink-2); font-weight: 600; text-decoration: none; }

/* ---- Responsive fallback for narrower desktop ---- */
@media (max-width: 980px) {
  .dt-hero-grid, .dt-cov-grid, .dt-price-grid { grid-template-columns: 1fr; gap: 36px; }
  .dt-prob-grid, .dt-benefits, .dt-steps { grid-template-columns: 1fr 1fr; }
}
