
.db-home-landing {
  margin-bottom: 2.5rem;
  /* Brand palette per DB brand guide */
  --navy:       #0F172A;
  --navy-soft:  #1E293B;
  --teal:       #0D9488;
  --teal-dark:  #0B7A70;
  --teal-darker:#0A6B61;
  --teal-light: #CCFBF1;
  --teal-50:    #F0FDFA;
  --amber:      #D97706;
  --amber-dark: #B45309;
  --amber-soft: #FDBA74;
  --slate:      #475569;
  --slate-light:#64748B;
  --silver:     #F1F5F9;
  --silver-2:   #E2E8F0;
  --white:      #FFFFFF;
  --success:    #047857;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.db-home-landing,
.db-home-landing *,
.db-home-landing *::before,
.db-home-landing *::after {
  box-sizing: border-box;
}


.db-home-landing .db-l-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ============ Logo ============ */
.db-home-landing .logo-svg {
  display: inline-block;
  height: 28px;
  width: auto;
  vertical-align: middle;
}
.db-home-landing .logo-svg svg {
  display: block;
  height: 100%;
  width: auto;
}
/* Logo uses currentColor - set via parent .logo color */
.db-home-landing .logo { color: var(--navy); text-decoration: none; display: inline-block; line-height: 1; }
.db-home-landing .logo.logo-teal { color: var(--teal); }
.db-home-landing .logo.logo-white { color: var(--white); }
/* ============ Nav ============ */
.db-home-landing nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--silver-2);
}
.db-home-landing .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}
.db-home-landing .nav-links { display: none; gap: 28px; }
.db-home-landing .nav-links a {
  color: var(--slate);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .15s;
}
.db-home-landing .nav-links a:hover { color: var(--teal); }
.db-home-landing .nav-cta {
  font-size: 14px;
  font-weight: 600;
  background: var(--teal);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .18s ease;
  white-space: nowrap;
  border: none;
}
.db-home-landing .nav-cta:hover { background: var(--teal-dark); }
@media (min-width: 900px) {
  .db-home-landing .nav-links { display: flex; }
}

/* ============ Hero ============ */
.db-home-landing .hero {
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.db-home-landing .hero::before {
  content: "";
  position: absolute;
  top: -140px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(13,148,136,0.14), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.db-home-landing .hero::after {
  content: "";
  position: absolute;
  top: 50%; left: -220px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(15,23,42,0.06), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.db-home-landing .hero-inner { position: relative; z-index: 1; }
.db-home-landing .eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.db-home-landing .eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--teal);
}
.db-home-landing .hero h1 {
  font-size: clamp(40px, 9.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--navy);
  font-weight: 800;
  margin-bottom: 24px;
}
.db-home-landing .hero h1 .accent { color: var(--teal); }
.db-home-landing .hero-sub {
  font-size: clamp(17px, 2.2vw, 20px);
  color: var(--slate);
  max-width: 560px;
  margin-bottom: 32px;
  line-height: 1.5;
}

/* Hero headline + subcopy rotator (stacked grid = height of tallest slide) */
.db-home-landing .hero-rotator {
  max-width: 640px;
}
.db-home-landing .hero-rotator-viewport {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.db-home-landing .hero-rotator-slide {
  grid-area: 1 / 1;
  align-self: start;
  justify-self: stretch;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}
.db-home-landing .hero-rotator-slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  z-index: 1;
}
.db-home-landing .hero-rotator-slide h1 {
  margin-bottom: 24px;
}

.db-home-landing .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.db-home-landing .btn-primary {
  font-size: 16px;
  font-weight: 600;
  background: var(--teal);
  color: var(--white);
  padding: 15px 26px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  letter-spacing: -0.005em;
  box-shadow: 0 1px 2px rgba(13,148,136,0.15), 0 4px 14px -4px rgba(13,148,136,0.4);
}
.db-home-landing .btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(13,148,136,0.22), 0 8px 20px -4px rgba(13,148,136,0.5);
}
.db-home-landing .btn-secondary {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  padding: 15px 22px;
  text-decoration: none;
  border: 1px solid var(--silver-2);
  border-radius: 8px;
  background: var(--white);
  transition: all .15s;
}
.db-home-landing .btn-secondary:hover { border-color: var(--teal); color: var(--teal); }
.db-home-landing button.btn-secondary {
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.db-home-landing .btn-secondary--demo-play {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.db-home-landing .btn-secondary--schedule-demo,
.db-home-landing .btn-secondary--pricing-schedule,
.db-home-landing .btn-secondary--final-schedule {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.db-home-landing .btn-demo-play-icon {
  display: inline-flex;
  color: var(--teal);
  flex-shrink: 0;
}
.db-home-landing .btn-secondary--demo-play:hover .btn-demo-play-icon {
  color: var(--teal-dark);
}
.db-home-landing .trust-line {
  font-size: 13px;
  color: var(--slate-light);
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.db-home-landing .trust-line .dot { color: var(--success); font-size: 8px; }
/* Hero demo card */
.db-home-landing .hero-demo { margin-top: 56px; max-width: 620px; }
.db-home-landing .view-toggle {
  display: inline-flex;
  position: relative;
  background: var(--silver);
  border: 1px solid var(--silver-2);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 16px;
}
.db-home-landing .view-toggle::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--navy);
  border-radius: 100px;
  box-shadow: 0 1px 2px rgba(15,23,42,0.12);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
}
.db-home-landing .view-toggle.is-attorney::before {
  transform: translateX(100%);
}
.db-home-landing .view-toggle button {
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border: none;
  background: transparent;
  border-radius: 100px;
  cursor: pointer;
  color: var(--slate);
  flex: 1;
  position: relative;
  transition: color .25s;
  white-space:nowrap;
}
.db-home-landing .view-toggle button.active {
  color: var(--white);
}
.db-home-landing .doc-card {
  background: var(--white);
  border: 1px solid var(--silver-2);
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.06), 0 24px 60px -30px rgba(15,23,42,0.22);
  position: relative;
}
.db-home-landing .doc-card-meta {
  font-size: 11px;
  color: var(--slate-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 600;
}
.db-home-landing .doc-card h3 {
  font-size: clamp(20px, 3.6vw, 24px);
  line-height: 1.3;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.db-home-landing .doc-card-body {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.62;
}
/* Hero doc card: client / attorney 3D flip (fixed height — no layout jump) */
.db-home-landing .hero-doc-flip-scene {
  --hero-doc-flip-min-height: 228px;
  perspective: 1400px;
  position: relative;
}
.db-home-landing .hero-doc-flip-inner {
  position: relative;
  width: 100%;
  min-height: var(--hero-doc-flip-min-height);
  transition: transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}
.db-home-landing .hero-demo.hero-doc-attorney .hero-doc-flip-inner {
  transform: rotateY(180deg);
}
.db-home-landing .hero-doc-flip-face {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: var(--hero-doc-flip-min-height);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
}
.db-home-landing .hero-doc-flip-face--back {
  transform: rotateY(180deg);
}
.db-home-landing .hero-doc-flip-face .doc-card-body {
  flex: 1 1 auto;
}
.db-home-landing .doc-badge--amber {
  background: #fef3c7;
  color: #92400e;
}
.db-home-landing .doc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-light);
  color: var(--teal-darker);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  margin-top: 14px;
}
/* ============ Sections ============ */
.db-home-landing section { padding: 72px 0; position: relative; }

.db-home-landing .section-eyebrow {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.db-home-landing .section-eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--teal);
}
.db-home-landing h2 {
  font-size: clamp(30px, 5.8vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.028em;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--navy);
}
.db-home-landing h2 .accent { color: var(--teal); }
.db-home-landing .section-sub {
  font-size: 17px;
  color: var(--slate);
  max-width: 640px;
  margin-bottom: 40px;
  line-height: 1.62;
}
/* ============ Hook / stats ============ */
.db-home-landing .hook {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.db-home-landing .hook::before {
  content: "";
  position: absolute;
  bottom: -120px; left: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(13,148,136,0.3), transparent 65%);
  pointer-events: none;
}
.db-home-landing .hook::after {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(13,148,136,0.18), transparent 70%);
  pointer-events: none;
}
.db-home-landing .hook > * { position: relative; }
.db-home-landing .hook h2 { color: var(--white); }
.db-home-landing .hook h2 .accent { color: var(--teal-light); }
.db-home-landing .hook .section-eyebrow { color: var(--teal-light); }
.db-home-landing .hook .section-eyebrow::before { background: var(--teal-light); }
.db-home-landing .hook .section-sub { color: rgba(255,255,255,0.78); }
.db-home-landing .stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 44px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 40px;
}
.db-home-landing .stat { border-left: 2px solid var(--teal); padding-left: 20px; }
.db-home-landing .stat-num {
  font-size: 52px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.03em;
  color: var(--white);
}
.db-home-landing .stat-num .unit {
  font-size: 22px;
  font-weight: 600;
  color: var(--teal-light);
  margin-left: 4px;
}
.db-home-landing .stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 280px;
}
/* ============ How it works ============ */
.db-home-landing .steps { display: grid; gap: 0; counter-reset: step; }
.db-home-landing .step {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--silver-2);
  counter-increment: step;
  align-items: start;
}
.db-home-landing .step:last-child { border-bottom: 1px solid var(--silver-2); }
.db-home-landing .step-num {
  font-size: 34px;
  color: var(--teal);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.db-home-landing .step-num::before { content: counter(step, decimal-leading-zero); }
.db-home-landing .step h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.db-home-landing .step p { color: var(--slate); font-size: 15px; line-height: 1.6; }
/* ============ Features ============ */
.db-home-landing .features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--silver-2);
}
.db-home-landing .feature {
  padding: 24px 0;
  border-bottom: 1px solid var(--silver-2);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.db-home-landing .feature-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-darker);
}
.db-home-landing .feature-icon svg { width: 20px; height: 20px; }
.db-home-landing .feature h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.db-home-landing .feature p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
}
.db-home-landing a.feature--explore-all {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  padding: 22px 14px;
  margin: 2px 0 0;
  border-radius: 14px;
  border-bottom: 1px solid var(--silver-2);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.12) 0%, rgba(15, 23, 42, 0.06) 100%);
  box-shadow: inset 0 0 0 2px var(--teal);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease;
}
.db-home-landing a.feature--explore-all:hover {
  transform: translateY(-3px);
  box-shadow: inset 0 0 0 2px var(--teal-dark);
}
.db-home-landing a.feature--explore-all:focus-visible {
  outline: 3px solid rgba(13, 148, 136, 0.45);
  outline-offset: 3px;
}
.db-home-landing .feature-icon--explore {
  background: linear-gradient(145deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
}
.db-home-landing .feature-explore-arrow {
  display: inline-block;
  margin-left: 6px;
  font-weight: 800;
  color: var(--teal);
  animation: homeExploreArrowNudge 1.35s ease-in-out infinite;
}
@keyframes homeExploreArrowNudge {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(7px); opacity: 0.85; }
}
@media (prefers-reduced-motion: reduce) {
  .db-home-landing .feature-explore-arrow { animation: none; }
}
/* ============ iPhone app showcase ============ */
.db-home-landing .home-app-showcase {
  padding: 96px 0;
  border-top: 1px solid var(--silver-2);
  background: linear-gradient(180deg, var(--white) 0%, var(--teal-50) 55%, var(--white) 100%);
}
.db-home-landing .home-app-client-note {
  margin-top: -24px;
}
.db-home-landing .home-app-showcase-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 36px;
}
.db-home-landing .home-app-bullets {
  margin: 0 0 28px;
  padding-left: 1.15rem;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}
.db-home-landing .home-app-bullets li { margin-bottom: 10px; }
.db-home-landing .home-app-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.25);
}
.db-home-landing .home-app-store-btn:hover {
  background: var(--navy-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.28);
}
.db-home-landing .home-app-store-btn i { font-size: 22px; }
.db-home-landing .home-app-phone-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.db-home-landing .home-app-phone-3d {
  transform-style: preserve-3d;
}
.db-home-landing .home-app-phone-chassis {
  position: relative;
  transform: rotateY(-14deg) rotateX(5deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.db-home-landing .home-app-phone-stage:hover .home-app-phone-chassis {
  transform: rotateY(-10deg) rotateX(3deg) translateY(-4px);
}
@media (prefers-reduced-motion: reduce) {
  .db-home-landing .home-app-phone-chassis,
  .db-home-landing .home-app-phone-stage:hover .home-app-phone-chassis {
    transform: rotateY(-12deg) rotateX(4deg);
  }
}
.db-home-landing .home-app-phone-bezel {
  position: relative;
  width: min(260px, 72vw);
  aspect-ratio: 390 / 844;
  border-radius: 36px;
  padding: 10px;
  background: linear-gradient(145deg, #1e293b 0%, #0f172a 40%, #334155 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 60px rgba(15, 23, 42, 0.45);
}
.db-home-landing .home-app-phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 22px;
  background: #0f172a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.db-home-landing .home-app-phone-screen {
  position: absolute;
  inset: 10px;
  border-radius: 28px;
  overflow: hidden;
  background: #0f172a;
}
.db-home-landing .home-app-shot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.db-home-landing .home-app-shot.is-active {
  opacity: 1;
  z-index: 1;
}
.db-home-landing .home-app-phone-shadow {
  position: absolute;
  bottom: -28px;
  left: 12%;
  right: 12%;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(15, 23, 42, 0.35), transparent 70%);
  filter: blur(8px);
  transform: translateZ(-10px);
  pointer-events: none;
}
@media (min-width: 900px) {
  .db-home-landing .home-app-showcase-layout {
    grid-template-columns: 1fr 1.05fr;
    gap: 60px;
  }
  .db-home-landing .home-app-phone-bezel {
    width: 280px;
  }
}
/* ============ Comparison ============ */
.db-home-landing .compare { background: var(--silver); }
.db-home-landing .compare-table {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--silver-2);
  margin-top: 36px;
  box-shadow: 0 1px 3px rgba(15,23,42,0.04);
}
.db-home-landing .compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  border-bottom: 1px solid var(--silver-2);
}
.db-home-landing .compare-row:last-child { border-bottom: none; }
.db-home-landing .compare-cell {
  padding: 16px 14px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: var(--navy);
}
.db-home-landing .compare-cell.label { color: var(--slate); font-weight: 500; }
.db-home-landing .compare-cell.ours {
  background: linear-gradient(180deg, rgba(204,251,241,0.55), rgba(204,251,241,0.25));
  font-weight: 600;
  color: var(--navy);
}
.db-home-landing .compare-head {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.db-home-landing .compare-head.ours { color: var(--teal); }
.db-home-landing .compare-row.head { background: var(--silver); }
.db-home-landing .compare-row.head .ours { background: linear-gradient(180deg, rgba(204,251,241,0.8), rgba(204,251,241,0.5)); }
.db-home-landing .check { color: var(--teal); font-weight: 800; font-size: 17px; }
.db-home-landing .x-mark { color: var(--silver-2); font-size: 17px; font-weight: 700; }
/* ============ Pricing ============ */
.db-home-landing .price-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 36px;
}
.db-home-landing .price-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 18px;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  max-width: 440px;
}
.db-home-landing .price-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(13,148,136,0.38), transparent 70%);
  pointer-events: none;
}
.db-home-landing .price-card::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(217,119,6,0.22), transparent 70%);
  pointer-events: none;
}
.db-home-landing .price-card > * { position: relative; }
.db-home-landing .price-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-light);
  margin-bottom: 14px;
  font-weight: 700;
}
.db-home-landing .price-amount {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--amber-soft);
}
.db-home-landing .price-amount .cents { font-size: 24px; color: rgba(255,255,255,0.55); margin-left: 6px; font-weight: 500; letter-spacing: 0; }
.db-home-landing .price-cycle-note {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-light);
  margin-bottom: 6px;
}
.db-home-landing .price-alt {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 10px;
}
.db-home-landing .price-per { color: rgba(255,255,255,0.7); font-size: 14.5px; margin-bottom: 8px; }
.db-home-landing .price-includes {
  list-style: none;
  margin: 24px 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.db-home-landing .price-includes li {
  padding: 7px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.db-home-landing .price-includes li::before {
  content: "✓";
  color: var(--teal-light);
  font-weight: 700;
  flex-shrink: 0;
}
.db-home-landing .price-card .btn-primary {
  background: var(--teal);
  color: var(--white);
  width: 100%;
  justify-content: center;
  margin-top: 12px;
  box-shadow: 0 4px 14px -4px rgba(13,148,136,0.6);
}
.db-home-landing .price-card .btn-primary:hover { background: var(--teal-dark); }
.db-home-landing .price-card .btn-secondary--pricing-schedule {
  justify-content: center;
  width: 100%;
  margin-top: 10px;
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--teal-light);
  background: rgba(255, 255, 255, 0.06);
}
.db-home-landing .price-card .btn-secondary--pricing-schedule:hover {
  border-color: var(--teal-light);
  color: var(--white);
  background: rgba(13, 148, 136, 0.22);
}
.db-home-landing .home-inline-link-btn {
  border: 0;
  background: transparent;
  color: var(--teal-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}
.db-home-landing .home-inline-link-btn:hover { color: var(--white); }
.db-home-landing .home-inline-link-btn--teal { color: var(--teal); }
.db-home-landing .home-inline-link-btn--teal:hover { color: var(--teal-dark); }
/* ============ FAQ ============ */
.db-home-landing .faq-item { border-bottom: 1px solid var(--silver-2); }
.db-home-landing .faq-q {
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  position: relative;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.db-home-landing .faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--teal);
  transition: transform .25s ease;
  font-weight: 400;
}
.db-home-landing .faq-item.open .faq-q::after { content: "−"; }
.db-home-landing .faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s ease;
  color: var(--slate);
  font-size: 15px;
  line-height: 1.65;
}
.db-home-landing .faq-item.open .faq-a {
  max-height: 400px;
  padding-bottom: 22px;
}
/* ============ Final CTA ============ */
.db-home-landing .final {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.db-home-landing .final::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 30%, rgba(13,148,136,0.34), transparent 42%),
    radial-gradient(circle at 78% 70%, rgba(13,148,136,0.2), transparent 50%);
  pointer-events: none;
}
.db-home-landing .final > * { position: relative; }
.db-home-landing .final .section-eyebrow { justify-content: center; color: var(--teal-light); }
.db-home-landing .final .section-eyebrow::before { background: var(--teal-light); }
.db-home-landing .final h2 { color: var(--white); max-width: 760px; margin: 0 auto 22px; }
.db-home-landing .final h2 .accent { color: var(--teal-light); }
.db-home-landing .final p { color: rgba(255,255,255,0.85); max-width: 500px; margin: 0 auto 32px; font-size: 17px; }
.db-home-landing .final .btn-primary { background: var(--teal); color: var(--white); }
.db-home-landing .final .btn-primary:hover { background: var(--teal-dark); }
.db-home-landing .final .final-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.db-home-landing .final .btn-secondary--final-schedule {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--teal-light);
  background: rgba(255, 255, 255, 0.06);
}
.db-home-landing .final .btn-secondary--final-schedule:hover {
  border-color: var(--teal-light);
  color: var(--white);
  background: rgba(13,148,136,0.24);
}
.db-home-landing .final .trust-line { color: rgba(255,255,255,0.65); margin-top: 22px; justify-content: center; }
.db-home-landing .final .trust-line .dot { color: var(--teal-light); }
/* ============ Footer ============ */
.db-home-landing footer {
  padding: 36px 0 100px;
  background: var(--white);
  font-size: 13px;
  color: var(--slate);
  border-top: 1px solid var(--silver-2);
}
.db-home-landing .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
.db-home-landing .footer-inner a { color: var(--slate); text-decoration: none; margin-right: 20px; transition: color .15s; }
.db-home-landing .footer-inner a:hover { color: var(--teal); }
.db-home-landing .footer-legal p { margin-top: 10px; max-width: 360px; line-height: 1.5; }
.db-home-landing .footer-logo { height: 22px; }
/* ============ Sticky mobile CTA ============ */
.db-home-landing .mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(15,23,42,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 11px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  transform: translateY(110%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.db-home-landing .mobile-cta.visible { transform: translateY(0); }
.db-home-landing .mobile-cta-text { color: var(--white); font-size: 13px; flex: 1; line-height: 1.25; }
.db-home-landing .mobile-cta-text strong { display: block; font-size: 14px; font-weight: 700; }
.db-home-landing .mobile-cta-text span { color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 500; }
.db-home-landing .mobile-cta a {
  background: var(--teal);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.db-home-landing .mobile-cta .mobile-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.db-home-landing .mobile-cta .mobile-cta-schedule {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 11px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
.db-home-landing .home-demo-modal-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.db-home-landing .btn-primary--schedule-from-modal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* ============ Reveal ============ */
.db-home-landing .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s cubic-bezier(.2,.8,.2,1), transform .7s cubic-bezier(.2,.8,.2,1);
}
.db-home-landing .reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .db-home-landing, .db-home-landing * {
    animation: none !important;
    transition: none !important;
  }
  .db-home-landing .reveal { opacity: 1; transform: none; }
}

/* ============ Tablet ============ */
@media (min-width: 720px) {
  .db-home-landing .hero { padding: 96px 0 120px; }
  .db-home-landing section { padding: 110px 0; }
  .db-home-landing .hook,
  .db-home-landing .final { padding: 110px 0; }
  .db-home-landing .stat-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .db-home-landing .mobile-cta { display: none; }
  .db-home-landing .features { grid-template-columns: 1fr 1fr; column-gap: 60px; }
  .db-home-landing .compare-cell { padding: 20px 22px; font-size: 14.5px; }
  .db-home-landing .compare-head { font-size: 20px; }
  .db-home-landing .faq-q { font-size: 20px; padding: 26px 46px 26px 0; }
  .db-home-landing .logo-svg { height: 30px; }
}

/* ============ Desktop layout ============ */
@media (min-width: 1024px) {
  .db-home-landing h2 { font-size: 54px; }
  .db-home-landing .hero h1 { font-size: 88px; }
  .db-home-landing .hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .db-home-landing .hero-sub { font-size: 20px; }
  .db-home-landing .hero-demo { margin-top: 0; max-width: none; }
  .db-home-landing .step { padding: 32px 0; grid-template-columns: 80px 1fr; }
  .db-home-landing .step-num { font-size: 44px; }
  .db-home-landing .step h3 { font-size: 26px; }
  .db-home-landing .step p { font-size: 16px; max-width: 640px; }
  .db-home-landing .features { grid-template-columns: 1fr 1fr 1fr; column-gap: 50px; }
  .db-home-landing .feature { padding: 28px 0; }
  .db-home-landing .price-wrap { grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
  .db-home-landing .price-aside h2 { margin-bottom: 18px; }
  .db-home-landing .price-card { margin-left: auto; }
}

@media (min-width: 1200px) {
  .db-home-landing .hero h1 { font-size: 75px; }
}
@media (max-height: 500px) and (orientation: landscape) {
  .db-home-landing .mobile-cta { display: none; }
}
  

/* —— Feature story cards (blog) injected before final CTA —— */
.db-home-landing .home-feature-stories {
  padding: 72px 0;
  border-top: 1px solid var(--silver-2);
  background: var(--white);
}
.db-home-landing .home-feature-stories-inner {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--silver-2);
}
.db-home-landing .home-feature-story {
  padding: 24px 0;
  border-bottom: 1px solid var(--silver-2);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
  text-decoration: none;
  color: inherit;
  transition: background .15s ease;
}
.db-home-landing a.home-feature-story:hover {
  background: rgba(13, 148, 136, 0.04);
}
.db-home-landing .home-feature-story-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-darker);
  font-size: 18px;
  font-weight: 700;
}
.db-home-landing .home-feature-story h3 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.db-home-landing .home-feature-story p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
  margin: 0;
}
.db-home-landing .home-feature-story-cta {
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--teal);
}
@media (min-width: 720px) {
  .db-home-landing .home-feature-stories-inner {
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
  }
}
@media (min-width: 1024px) {
  .db-home-landing .home-feature-stories-inner {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 50px;
  }
}

