/* DistancePractice Homepage v2.0 - Professional Redesign */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Lexend:wght@400;500;600;700;800&display=swap');

:root {
  --dp-navy: #0B1829;
  --dp-navy-80: rgba(11,24,41,.80);
  --dp-slate: #334155;
  --dp-muted: #64748B;
  --dp-line: #E2E8F0;
  --dp-soft: #F7F8FC;
  --dp-white: #ffffff;

  /* Learner palette */
  --dp-green: #00B87C;
  --dp-green-dark: #008F5E;
  --dp-green-light: #ECFDF5;
  --dp-green-mid: #D1FAE5;

  /* Teacher palette */
  --dp-blue: #3B5BDB;
  --dp-blue-dark: #2C45B0;
  --dp-blue-light: #EEF2FF;
  --dp-blue-mid: #C7D2FE;

  /* Accent */
  --dp-amber: #F59E0B;
  --dp-amber-light: #FFFBEB;

  --dp-shadow-sm: 0 2px 8px rgba(11,24,41,.07);
  --dp-shadow-md: 0 8px 28px rgba(11,24,41,.10);
  --dp-shadow-lg: 0 20px 56px rgba(11,24,41,.13);
  --dp-radius-sm: 10px;
  --dp-radius-md: 16px;
  --dp-radius-lg: 24px;
  --dp-radius-xl: 32px;
}

/* ─── Reset & Base ────────────────────────────────────── */
html body.dp-homepage-render { background: var(--dp-soft) !important; overflow: auto !important; }
.dp-home, .dp-home * { box-sizing: border-box; }
.dp-home { position: relative; width: 100%; background: var(--dp-soft); color: var(--dp-navy); font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif; overflow: hidden; }
.dp-home svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ─── Topbar ──────────────────────────────────────────── */
.dp-home__topbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 0 clamp(20px,5vw,72px);
  height: 70px;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid var(--dp-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.dp-home__brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--dp-navy);
  font-family: 'Lexend', sans-serif;
  font-weight: 700; font-size: 1.3rem; letter-spacing: -0.03em;
  flex-shrink: 0;
}
.dp-home__brand img { width: 38px; height: 38px; object-fit: contain; }
.dp-home__nav {
  display: flex; align-items: center; gap: clamp(20px,3vw,40px);
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
}
.dp-home__nav a { color: var(--dp-slate); text-decoration: none; transition: color .15s; }
.dp-home__nav a:hover { color: var(--dp-blue); }
.dp-home__top-actions { display: flex; gap: 10px; flex-shrink: 0; }
.dp-home__mini {
  display: inline-flex; align-items: center; height: 38px; padding: 0 18px;
  border-radius: var(--dp-radius-sm); text-decoration: none; font-size: 0.875rem;
  font-weight: 700; transition: all .18s ease; white-space: nowrap;
}
.dp-home__mini--learner { background: var(--dp-green-light); color: var(--dp-green-dark); border: 1.5px solid var(--dp-green-mid); }
.dp-home__mini--learner:hover { background: var(--dp-green); color: #fff; border-color: var(--dp-green); }
.dp-home__mini--teacher { background: var(--dp-blue); color: #fff; border: 1.5px solid var(--dp-blue); }
.dp-home__mini--teacher:hover { background: var(--dp-blue-dark); border-color: var(--dp-blue-dark); }

/* ─── Hero ────────────────────────────────────────────── */
.dp-home__hero {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, #0B1829 0%, #132240 55%, #1B3468 100%);
  padding: clamp(64px,9vw,100px) clamp(20px,6vw,72px) clamp(56px,8vw,88px);
  text-align: center;
}
/* Decorative background orbs */
.dp-home__hero::before {
  content: ''; position: absolute; width: 560px; height: 560px;
  left: -180px; top: -180px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,124,.18) 0%, transparent 70%);
  pointer-events: none;
}
.dp-home__hero::after {
  content: ''; position: absolute; width: 480px; height: 480px;
  right: -120px; bottom: -120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(59,91,219,.22) 0%, transparent 70%);
  pointer-events: none;
}
.dp-home__hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: 100px; padding: 6px 16px;
  color: rgba(255,255,255,.85); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 28px;
}
.dp-home__hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--dp-green); flex-shrink: 0;
  box-shadow: 0 0 8px var(--dp-green);
}
.dp-home__hero h1 {
  margin: 0 0 20px;
  font-family: 'Lexend', sans-serif;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -0.03em;
  color: #fff;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.dp-home__hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--dp-green), #4ADE80);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.dp-home__hero-sub {
  margin: 0 auto 48px;
  color: rgba(255,255,255,.68); font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400; line-height: 1.65; max-width: 580px;
}

/* CTA Pair */
.dp-home__cta-row {
  display: flex; justify-content: center; gap: 20px;
  flex-wrap: wrap; max-width: 760px; margin: 0 auto 56px; position: relative; z-index: 1;
}
.dp-home__cta {
  display: flex; align-items: center; gap: 16px;
  flex: 1; min-width: 290px; max-width: 355px;
  padding: 20px 24px;
  border-radius: var(--dp-radius-md);
  text-decoration: none; color: #fff;
  transition: transform .20s ease, box-shadow .20s ease;
  position: relative; overflow: hidden;
}
.dp-home__cta::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .2s;
}
.dp-home__cta:hover::after { background: rgba(255,255,255,.06); }
.dp-home__cta:hover { transform: translateY(-3px); }
.dp-home__cta--learner {
  background: linear-gradient(135deg, #00B87C 0%, #008F5E 100%);
  box-shadow: 0 12px 36px rgba(0,184,124,.35), 0 2px 8px rgba(0,0,0,.15);
}
.dp-home__cta--learner:hover { box-shadow: 0 18px 44px rgba(0,184,124,.42), 0 2px 10px rgba(0,0,0,.18); }
.dp-home__cta--teacher {
  background: linear-gradient(135deg, #3B5BDB 0%, #2C45B0 100%);
  box-shadow: 0 12px 36px rgba(59,91,219,.35), 0 2px 8px rgba(0,0,0,.15);
}
.dp-home__cta--teacher:hover { box-shadow: 0 18px 44px rgba(59,91,219,.42), 0 2px 10px rgba(0,0,0,.18); }
.dp-home__cta-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dp-home__cta-icon svg { width: 28px; height: 28px; stroke: #fff; }
.dp-home__cta-text { text-align: left; }
.dp-home__cta-text strong { display: block; font-size: 1.2rem; font-weight: 800; font-family: 'Lexend', sans-serif; line-height: 1.2; }
.dp-home__cta-text em { display: block; font-style: normal; font-size: 0.875rem; opacity: .85; margin-top: 3px; font-weight: 500; }
.dp-home__cta-arrow { margin-left: auto; font-size: 1.4rem; opacity: .8; }

/* Trust bar */
.dp-home__trust-bar {
  display: flex; justify-content: center; align-items: center; gap: 0;
  flex-wrap: wrap; position: relative; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 40px;
}
.dp-home__trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 32px; color: rgba(255,255,255,.75);
  font-size: 0.9rem; font-weight: 500;
}
.dp-home__trust-item + .dp-home__trust-item {
  border-left: 1px solid rgba(255,255,255,.12);
}
.dp-home__trust-val {
  font-family: 'Lexend', sans-serif;
  font-size: 1.5rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.dp-home__trust-label { font-size: 0.8rem; line-height: 1.3; }

/* ─── Scroll indicator ────────────────────────────────── */
.dp-home__scroll {
  display: inline-flex; flex-direction: column; align-items: center; gap: 5px;
  text-decoration: none; color: rgba(255,255,255,.45);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em;
  position: relative; z-index: 1; margin-top: 24px;
  animation: dp-bounce 2s ease-in-out infinite;
}
.dp-home__scroll-arrow { font-size: 1.4rem; }
@keyframes dp-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(5px)} }

/* ─── Skills Strip ────────────────────────────────────── */
.dp-home__skills-strip {
  background: #fff;
  border-bottom: 1px solid var(--dp-line);
  padding: 40px clamp(20px,5vw,72px);
}
.dp-home__skills-strip-inner {
  max-width: 1280px; margin: 0 auto;
}
.dp-home__skills-strip h3 {
  text-align: center; font-family: 'Lexend', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--dp-muted);
  margin: 0 0 28px;
}
.dp-home__skill-pills {
  display: flex; justify-content: center; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.dp-home__skill-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--dp-soft); border: 1.5px solid var(--dp-line);
  border-radius: 100px; font-size: 0.88rem; font-weight: 600;
  color: var(--dp-slate); transition: all .18s ease; cursor: default;
}
.dp-home__skill-pill:hover { border-color: var(--dp-green); color: var(--dp-green-dark); background: var(--dp-green-light); }
.dp-home__skill-pill svg { width: 16px; height: 16px; }

/* ─── Role Feature Section ────────────────────────────── */
.dp-home__features-section {
  max-width: 1340px; margin: 0 auto;
  padding: 64px clamp(18px,4vw,56px) 72px;
}
.dp-home__section-header {
  text-align: center; margin-bottom: 52px;
}
.dp-home__section-header h2 {
  font-family: 'Lexend', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--dp-navy); margin: 0 0 12px;
}
.dp-home__section-header p {
  color: var(--dp-muted); font-size: 1.05rem; margin: 0; max-width: 540px; margin: 0 auto;
}

/* Tab Switcher */
.dp-home__role-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px;
}
.dp-home__role-tab {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 100px;
  border: 1.5px solid var(--dp-line); background: #fff;
  color: var(--dp-muted); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: all .2s ease; font-family: inherit;
}
.dp-home__role-tab svg { width: 18px; height: 18px; }
.dp-home__role-tab--learner.dp-home__role-tab--active {
  background: var(--dp-green-light); border-color: var(--dp-green);
  color: var(--dp-green-dark);
}
.dp-home__role-tab--teacher.dp-home__role-tab--active {
  background: var(--dp-blue-light); border-color: var(--dp-blue);
  color: var(--dp-blue-dark);
}

/* Role Panels */
.dp-home__role-panels { }
.dp-home__role-panel-content { display: none; }
.dp-home__role-panel-content.dp-active { display: block; }

.dp-home__role-grid-2col {
  display: grid; grid-template-columns: 320px 1fr;
  gap: 28px; align-items: start;
}
.dp-home__role-sidebar {
  background: #fff; border-radius: var(--dp-radius-lg);
  border: 1.5px solid var(--dp-line);
  box-shadow: var(--dp-shadow-sm);
  overflow: hidden; position: sticky; top: 88px;
}
.dp-home__role-sidebar-header {
  padding: 24px;
  border-bottom: 1px solid var(--dp-line);
}
.dp-home__role-sidebar-header h3 {
  margin: 0 0 4px; font-family: 'Lexend', sans-serif;
  font-size: 1.1rem; font-weight: 700;
}
.dp-home__role-sidebar-header p { margin: 0; font-size: 0.85rem; color: var(--dp-muted); }
.dp-home__sidebar-nav { padding: 12px; }
.dp-home__sidebar-nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--dp-radius-sm);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  color: var(--dp-slate); transition: all .15s ease;
  border: none; background: transparent; width: 100%; text-align: left; font-family: inherit;
}
.dp-home__sidebar-nav-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.dp-home__sidebar-nav-item:hover { background: var(--dp-soft); }
.dp-home__sidebar-nav-item.dp-nav-active { font-weight: 700; }

/* learner active nav */
.dp-home__role-panel-content.dp-panel-learner .dp-home__sidebar-nav-item.dp-nav-active {
  background: var(--dp-green-light); color: var(--dp-green-dark);
}
/* teacher active nav */
.dp-home__role-panel-content.dp-panel-teacher .dp-home__sidebar-nav-item.dp-nav-active {
  background: var(--dp-blue-light); color: var(--dp-blue-dark);
}

.dp-home__sidebar-cta {
  margin: 4px 12px 12px;
  display: block; text-align: center; text-decoration: none;
  padding: 13px; border-radius: var(--dp-radius-sm);
  font-size: 0.9rem; font-weight: 700; transition: all .18s;
}
.dp-home__sidebar-cta--learner {
  background: var(--dp-green); color: #fff;
}
.dp-home__sidebar-cta--learner:hover { background: var(--dp-green-dark); }
.dp-home__sidebar-cta--teacher {
  background: var(--dp-blue); color: #fff;
}
.dp-home__sidebar-cta--teacher:hover { background: var(--dp-blue-dark); }

/* Feature Content Panes */
.dp-home__feature-pane { display: none; }
.dp-home__feature-pane.dp-pane-active { display: block; }

/* Accordion - refined */
.dp-home__accordion {
  background: #fff; border: 1.5px solid var(--dp-line);
  border-radius: var(--dp-radius-md); margin-bottom: 12px;
  overflow: hidden; transition: box-shadow .2s;
}
.dp-home__accordion:hover { box-shadow: var(--dp-shadow-sm); }
.dp-home__accordion summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px; font-weight: 700; font-size: 0.95rem;
  user-select: none;
}
.dp-home__accordion summary::-webkit-details-marker { display: none; }
.dp-home__accordion summary:focus-visible { outline: 2px solid var(--dp-blue); outline-offset: -2px; }
.dp-home__summary-left { display: flex; align-items: center; gap: 12px; }
.dp-home__summary-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.dp-home__summary-plus {
  font-size: 1.1rem; font-weight: 400; color: var(--dp-muted);
  transition: transform .2s ease; flex-shrink: 0;
}
.dp-home__accordion[open] .dp-home__summary-plus { transform: rotate(45deg); }
.dp-home__accordion-body {
  border-top: 1px solid var(--dp-line); padding: 20px;
}

/* Color theming by role */
.dp-panel-learner .dp-home__summary-icon { color: var(--dp-green-dark); background: var(--dp-green-light); }
.dp-panel-teacher .dp-home__summary-icon { color: var(--dp-blue-dark); background: var(--dp-blue-light); }

/* ─── Tile Grid ───────────────────────────────────────── */
.dp-home__tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.dp-home__tile-grid--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.dp-home__tile-grid--steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.dp-home__tile {
  padding: 18px 14px 16px;
  border-radius: var(--dp-radius-sm);
  background: var(--dp-soft);
  border: 1px solid var(--dp-line);
  text-align: center; transition: all .18s ease;
}
.dp-home__tile:hover { background: #fff; box-shadow: var(--dp-shadow-sm); border-color: transparent; transform: translateY(-2px); }
.dp-home__tile-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
}
.dp-panel-learner .dp-home__tile-icon { color: var(--dp-green-dark); background: var(--dp-green-light); }
.dp-panel-teacher .dp-home__tile-icon { color: var(--dp-blue-dark); background: var(--dp-blue-light); }
.dp-home__tile h4 {
  margin: 0 0 5px; font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--dp-navy);
}
.dp-home__tile p {
  margin: 0; color: var(--dp-muted); font-size: 0.82rem; line-height: 1.5;
}

/* Step tiles */
.dp-home__tile--step {
  position: relative; text-align: left; padding: 20px;
}
.dp-home__step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  font-size: 0.75rem; font-weight: 800; margin-bottom: 12px;
}
.dp-panel-learner .dp-home__step-number { background: var(--dp-green); color: #fff; }
.dp-panel-teacher .dp-home__step-number { background: var(--dp-blue); color: #fff; }
.dp-home__tile--step h4 { text-align: left; font-size: 0.88rem; }
.dp-home__tile--step p { text-align: left; font-size: 0.82rem; }

/* ─── Benefit Strip ───────────────────────────────────── */
.dp-home__benefit-strip {
  background: linear-gradient(135deg, #0B1829 0%, #1B2E5A 100%);
  padding: 64px clamp(20px,5vw,72px);
}
.dp-home__benefit-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.dp-home__benefit-item { text-align: center; }
.dp-home__benefit-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--dp-green);
}
.dp-home__benefit-icon svg { width: 28px; height: 28px; }
.dp-home__benefit-item h3 {
  font-family: 'Lexend', sans-serif; color: #fff;
  font-size: 1.05rem; font-weight: 700; margin: 0 0 8px;
}
.dp-home__benefit-item p {
  color: rgba(255,255,255,.6); font-size: 0.9rem; line-height: 1.6; margin: 0;
}

/* ─── Footer ──────────────────────────────────────────── */
.dp-home__footer {
  background: #fff; border-top: 1px solid var(--dp-line);
  padding: 40px clamp(20px,5vw,72px);
}
.dp-home__footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.dp-home__footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Lexend', sans-serif; font-weight: 700; font-size: 1.1rem;
  color: var(--dp-navy);
}
.dp-home__footer-brand img { width: 32px; height: 32px; object-fit: contain; }
.dp-home__footer p { margin: 4px 0 0; font-size: 0.85rem; color: var(--dp-muted); }
.dp-home__footer nav {
  display: flex; flex-wrap: wrap; gap: 6px 24px;
  font-size: 0.875rem; font-weight: 600;
}
.dp-home__footer nav a { color: var(--dp-slate); text-decoration: none; transition: color .15s; }
.dp-home__footer nav a:hover { color: var(--dp-blue); }
.dp-home__footer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 100px;
  background: var(--dp-green-light); border: 1.5px solid var(--dp-green-mid);
  font-size: 0.8rem; font-weight: 700; color: var(--dp-green-dark);
}

/* ─── Apple mascot ────────────────────────────────────── */
.dp-home__apple {
  position: fixed; right: 28px; bottom: 24px; z-index: 200;
  width: 88px; height: auto;
  filter: drop-shadow(0 8px 20px rgba(11,24,41,.22));
  transition: transform .2s ease;
}
.dp-home__apple:hover { transform: scale(1.08) rotate(-4deg); }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .dp-home__role-grid-2col { grid-template-columns: 1fr; }
  .dp-home__role-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .dp-home__sidebar-nav { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 6px; padding: 12px; }
  .dp-home__sidebar-nav-item { width: auto; }
  .dp-home__benefit-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .dp-home__nav { display: none; }
  .dp-home__trust-bar { gap: 0; }
  .dp-home__trust-item { padding: 10px 20px; }
  .dp-home__benefit-inner { grid-template-columns: 1fr; gap: 28px; max-width: 420px; }
  .dp-home__tile-grid { grid-template-columns: repeat(2, 1fr); }
  .dp-home__role-sidebar { grid-template-columns: 1fr; }
  .dp-home__footer-inner { flex-direction: column; gap: 20px; text-align: center; }
}
@media (max-width: 600px) {
  .dp-home__topbar { padding: 0 16px; }
  .dp-home__mini--learner { display: none; }
  .dp-home__hero { padding: 52px 20px 44px; }
  .dp-home__hero h1 { font-size: 1.85rem; }
  .dp-home__cta-row { flex-direction: column; align-items: center; }
  .dp-home__cta { max-width: 100%; min-width: 0; }
  .dp-home__trust-bar { flex-direction: column; }
  .dp-home__trust-item { border-left: none !important; border-top: 1px solid rgba(255,255,255,.1); width: 100%; justify-content: center; }
  .dp-home__trust-item:first-child { border-top: none; }
  .dp-home__skills-strip { padding: 28px 16px; }
  .dp-home__features-section { padding: 40px 16px 56px; }
  .dp-home__tile-grid, .dp-home__tile-grid--steps { grid-template-columns: 1fr; }
  .dp-home__role-tabs { flex-direction: column; align-items: center; }
  .dp-home__benefit-strip { padding: 44px 20px; }
  .dp-home__footer { padding: 28px 20px; }
  .dp-home__apple { width: 70px; right: 14px; bottom: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .dp-home__cta, .dp-home__summary-plus, .dp-home__tile,
  .dp-home__scroll, .dp-home__apple { transition: none; animation: none; }
}

/* ─── v2.0.1 requested hero correction ────────────────── */
.dp-home__hero {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%) !important;
  padding: clamp(64px, 8vw, 92px) clamp(20px, 6vw, 72px) clamp(46px, 6vw, 64px) !important;
  text-align: center;
}
.dp-home__hero::before,
.dp-home__hero::after { display: none !important; }
.dp-home__hero h1 {
  max-width: 1180px !important;
  margin: 0 auto 42px !important;
  color: var(--dp-navy) !important;
  font-family: 'Lexend', sans-serif !important;
  font-size: clamp(1.65rem, 3.2vw, 2.45rem) !important;
  line-height: 1.22 !important;
  font-weight: 700 !important;
  letter-spacing: -0.03em !important;
  white-space: nowrap;
}
.dp-home__cta-row {
  max-width: 760px !important;
  margin: 0 auto !important;
  gap: 20px !important;
}
.dp-home__cta {
  min-width: 250px !important;
  max-width: 340px !important;
  justify-content: center !important;
  padding: 20px 28px !important;
  gap: 14px !important;
}
.dp-home__cta-text { text-align: center !important; }
.dp-home__cta-text strong {
  font-size: 1.15rem !important;
  line-height: 1.2 !important;
}
.dp-home__cta-text em,
.dp-home__hero-eyebrow,
.dp-home__hero-sub,
.dp-home__trust-bar,
.dp-home__scroll { display: none !important; }
.dp-home__cta-arrow {
  position: static !important;
  margin-left: 8px !important;
  font-size: 1.35rem !important;
  opacity: .9 !important;
}
.dp-home__signature-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 26px;
}
.dp-home__signature {
  display: block;
  width: min(220px, 34vw);
  max-height: 62px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .dp-home__hero h1 { white-space: normal; }
}
@media (max-width: 600px) {
  .dp-home__hero { padding: 42px 16px 36px !important; }
  .dp-home__hero h1 { font-size: 1.38rem !important; margin-bottom: 28px !important; }
  .dp-home__cta { min-width: 0 !important; width: 100% !important; max-width: 360px !important; }
  .dp-home__signature { width: min(180px, 46vw); max-height: 52px; }
}

/* ─── Reserved / Future Pages ─────────────────────────── */
.dp-home__reserved-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(36px, 6vw, 80px);
  background: var(--dp-soft);
}
.dp-home__reserved-card {
  width: min(760px, 100%);
  background: var(--dp-white);
  border: 1px solid var(--dp-line);
  border-radius: var(--dp-radius-lg);
  box-shadow: var(--dp-shadow-md);
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
}
.dp-home__reserved-card--wide {
  width: min(1220px, 100%);
  text-align: left;
}
.dp-home__reserved-card h1 {
  margin: 0 0 12px;
  font-family: 'Lexend', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.035em;
  color: var(--dp-navy);
}
.dp-home__reserved-card p {
  margin: 0 auto 24px;
  max-width: 760px;
  color: var(--dp-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.dp-home__reserved-link,
.dp-home__reserved-brand {
  display: inline-flex;
  color: var(--dp-blue);
  font-weight: 800;
  text-decoration: none;
}
.dp-home__reserved-brand { margin-bottom: 18px; }
.dp-home__feature-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 32px;
}
