/* ==========================================================================
   Design Drive Media — main.css
   Tokens → Reset → Base → Keyframes → Nav → Hero → Definition → Steps →
   Help accordion → Feature (team) → Trust cards → Coverage/chart →
   Editorial → FAQ → Newsletter CTA → Landscape/footer → Foliage/birds →
   Legal page → 404 → Responsive
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* sky / periwinkle */
  --dd-sky-1: #c4cbef;
  --dd-sky-2: #b3bbe9;
  --dd-sky-3: #aeb6e6;
  --dd-body-bg: #a9b2e4;

  /* navy */
  --dd-navy: #1b2668;
  --dd-navy-deep: #141d54;
  --dd-navy-panel-1: #232e73;
  --dd-heading: #1c2554;
  --dd-body-text: #3a4272;
  --dd-muted: #6c73a0;
  --dd-muted-2: #8a90b5;

  /* cream / panels */
  --dd-cream: #fbfaf6;
  --dd-panel-light: #eef0fb;

  /* clouds */
  --dd-cloud-pink: #f4b7c8;
  --dd-cloud-pink-2: #f2aec1;
  --dd-cloud-gold: #f6d98a;

  /* foliage */
  --dd-leaf-1: #4f7a45;
  --dd-leaf-2: #6ba354;
  --dd-leaf-3: #8ec96f;
  --dd-leaf-4: #b9dd93;
  --dd-blossom-1: #c77fa0;
  --dd-blossom-2: #e29bbb;
  --dd-blossom-3: #f2b8cf;
  --dd-olive-1: #8a9a45;
  --dd-olive-2: #adba5f;
  --dd-olive-3: #cdd67e;

  /* footer landscape */
  --dd-grass-1: #6f9457;
  --dd-grass-2: #8fae6e;

  --dd-font-heading: 'Newsreader', serif;
  --dd-font-body: 'Instrument Sans', system-ui, sans-serif;
  --dd-font-word: 'Baloo 2', sans-serif;
}

/* --------------------------------------------------------------------------
   1. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--dd-body-bg);
  overflow-x: hidden;
  font-family: var(--dd-font-body);
  color: #242c58;
}
a { color: #2a337a; text-decoration: none; }
a:hover { color: #1a2160; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

.dd-page { position: relative; }
.dd-main { position: relative; overflow: hidden; }

/* --------------------------------------------------------------------------
   2. KEYFRAMES
   -------------------------------------------------------------------------- */
@keyframes dd-drift      { from { transform: translateX(-8vw); }  to { transform: translateX(112vw); } }
@keyframes dd-drift-slow { from { transform: translateX(-30vw); } to { transform: translateX(120vw); } }
@keyframes dd-fly {
  0%   { transform: translate(-12vw, 0) scale(var(--dd-bs, 1)); }
  50%  { transform: translate(50vw, -30px) scale(var(--dd-bs, 1)); }
  100% { transform: translate(115vw, 10px) scale(var(--dd-bs, 1)); }
}
@keyframes dd-flap  { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.55); } }
@keyframes dd-bob   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes dd-sway  { 0%, 100% { transform: rotate(-1.5deg); } 50% { transform: rotate(1.5deg); } }
@keyframes dd-blink { 0%, 90%, 100% { transform: scaleY(1); } 94% { transform: scaleY(.12); } }
@keyframes dd-wave {
  0%, 55%, 100% { transform: rotate(6deg); }
  68%, 88%      { transform: rotate(-26deg); }
  78%           { transform: rotate(4deg); }
}
@keyframes dd-hop   { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -4px); } }
@keyframes dd-grow  { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes dd-bird-hop {
  0%   { left: 8%;  bottom: 40px; }
  9%   { left: 8%;  bottom: 40px; }
  14%  { left: 16%; bottom: 96px; }
  18%  { left: 25%; bottom: 68px; }
  27%  { left: 25%; bottom: 68px; }
  32%  { left: 33%; bottom: 122px; }
  36%  { left: 42%; bottom: 92px; }
  45%  { left: 42%; bottom: 92px; }
  50%  { left: 50%; bottom: 150px; }
  54%  { left: 58%; bottom: 124px; }
  63%  { left: 58%; bottom: 124px; }
  68%  { left: 66%; bottom: 188px; }
  72%  { left: 75%; bottom: 160px; }
  81%  { left: 75%; bottom: 160px; }
  86%  { left: 83%; bottom: 232px; }
  90%  { left: 92%; bottom: 200px; }
  96%  { left: 92%; bottom: 200px; }
  100% { left: 8%;  bottom: 40px; }
}

[data-reveal] {
  position: relative;
  z-index: 4;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s ease, transform .9s ease;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --------------------------------------------------------------------------
   3. NAV
   -------------------------------------------------------------------------- */
.dd-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px 40px;
  padding: 26px 40px;
  flex-wrap: wrap;
}
.dd-nav__group { display: flex; align-items: center; gap: 36px; flex: 1; }
.dd-nav__group--left { justify-content: flex-end; }
.dd-nav__link { font-size: 14px; font-weight: 500; }
.dd-nav__subscribe {
  background: var(--dd-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 100px;
  white-space: nowrap;
}
.dd-nav__subscribe:hover { color: #fff; }

.dd-logo { display: flex; align-items: center; gap: 9px; padding: 0 8px; }
.dd-logo__badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dd-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.dd-logo__word {
  font-family: var(--dd-font-word);
  font-weight: 800;
  font-size: 19px;
  color: var(--dd-navy);
  letter-spacing: -.5px;
}
.dd-logo--footer { padding: 0; }
.dd-logo__badge--footer { width: 30px; height: 30px; background: var(--dd-cream); }
.dd-logo__word--footer { font-size: 18px; color: var(--dd-cream); }

/* --------------------------------------------------------------------------
   3b. MOBILE NAV — hamburger toggle + slide-in drawer
   -------------------------------------------------------------------------- */
.dd-nav__toggle {
  display: none;
  flex: none;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: var(--dd-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.dd-nav__toggle-bar { display: block; width: 18px; height: 2px; border-radius: 1px; background: #fff; }

.dd-mobile-drawer-bg {
  position: fixed;
  inset: 0;
  background: rgba(27, 38, 104, .35);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.dd-mobile-drawer-bg.is-open { opacity: 1; pointer-events: auto; }

.dd-mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 84vw);
  background: var(--dd-cream);
  z-index: 91;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -12px 0 40px rgba(27, 38, 104, .18);
}
.dd-mobile-drawer.is-open { transform: translateX(0); }

.dd-mobile-drawer__close {
  align-self: flex-end;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--dd-panel-light);
  color: var(--dd-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-bottom: 24px;
}

.dd-mobile-drawer__list { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.dd-mobile-drawer__list a {
  display: block;
  padding: 14px 4px;
  font-size: 17px;
  font-weight: 500;
  color: var(--dd-heading);
  border-bottom: 1px solid rgba(28, 37, 84, .1);
}

.dd-mobile-drawer__subscribe { text-align: center; margin-top: auto; padding: 14px 20px; font-size: 15px; }

body.dd-menu-open { overflow: hidden; }

@media (max-width: 860px) {
  .dd-nav__group { display: none; }
  .dd-nav { justify-content: space-between; padding: 20px 20px; }
  .dd-nav__toggle { display: flex; }
}

/* Non-front-page top nav bar (page.php / 404.php) */
.dd-site-header {
  position: relative;
  z-index: 20;
  background: linear-gradient(180deg, var(--dd-sky-1) 0%, var(--dd-sky-2) 100%);
}

/* --------------------------------------------------------------------------
   4. HERO
   -------------------------------------------------------------------------- */
.dd-hero {
  position: relative;
  background: linear-gradient(180deg, var(--dd-sky-1) 0%, var(--dd-sky-2) 42%, var(--dd-sky-3) 100%);
  padding-bottom: 120px;
  overflow: hidden;
}

.dd-clouds { position: absolute; inset: 0; z-index: 5; pointer-events: none; }
.dd-cloud {
  position: absolute;
  border-radius: 100px;
  filter: blur(1px);
}
.dd-cloud--1 {
  top: 120px; left: 0; width: 260px; height: 80px; background: var(--dd-cloud-pink);
  box-shadow: 70px -26px 0 -8px #f6c6d3, 150px 6px 0 -12px var(--dd-cloud-pink), -60px 8px 0 -14px #f7ccd6, 40px 20px 0 -6px #f19fb4;
  animation: dd-drift-slow 90s linear infinite;
}
.dd-cloud--2 {
  top: 200px; left: 0; width: 200px; height: 64px; background: var(--dd-cloud-gold); opacity: .85;
  box-shadow: 60px -18px 0 -8px #f7e29c, -44px 6px 0 -12px var(--dd-cloud-gold);
  animation: dd-drift 70s linear infinite; animation-delay: -20s;
}
.dd-cloud--3 {
  top: 300px; left: 0; width: 300px; height: 90px; background: var(--dd-cloud-pink-2); border-radius: 120px;
  box-shadow: 90px -30px 0 -10px #f4bccb, 180px 10px 0 -16px var(--dd-cloud-pink-2), -70px 10px 0 -18px #f6c9d4;
  animation: dd-drift-slow 110s linear infinite; animation-delay: -40s;
}
.dd-cloud--4 {
  top: 410px; left: 0; width: 240px; height: 72px; background: #f5b4c6;
  box-shadow: 66px -22px 0 -8px #f7c4d1, -52px 8px 0 -12px #f19eb3;
  animation: dd-drift 100s linear infinite; animation-delay: -60s;
}

.dd-birdlayer { position: absolute; inset: 0; z-index: 12; pointer-events: none; }
.dd-bird {
  position: absolute;
  top: 0;
  left: 0;
  animation: dd-fly var(--dd-fly-dur, 40s) linear infinite;
  animation-delay: var(--dd-fly-delay, 0s);
}
.dd-bird svg { animation: dd-flap .9s ease-in-out infinite; transform-origin: center; }

.dd-hero__content {
  position: relative;
  z-index: 15;
  text-align: center;
  padding: 70px 24px 40px;
  max-width: 760px;
  margin: 0 auto;
}
.dd-hero__eyebrow {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4a5183;
  margin-bottom: 18px;
}
.dd-hero__title {
  font-family: var(--dd-font-heading);
  font-weight: 400;
  font-size: clamp(38px, 8vw, 60px);
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 0 0 22px;
  color: var(--dd-heading);
}
.dd-hero__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: #38406e;
  max-width: 460px;
  margin: 0 auto 30px;
  text-wrap: pretty;
}
.dd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border-radius: 100px;
}
.dd-btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: none;
}
.dd-btn--hero {
  background: #fff;
  color: var(--dd-navy);
  font-size: 15px;
  padding: 15px 26px;
  box-shadow: 0 10px 30px rgba(27, 38, 104, .18);
}
.dd-btn--hero:hover { color: var(--dd-navy); }
.dd-btn--hero .dd-btn__arrow { width: 22px; height: 22px; background: var(--dd-navy); color: #fff; font-size: 12px; }
.dd-btn--navy {
  background: var(--dd-navy);
  color: #fff;
  font-size: 14px;
  padding: 14px 24px;
}
.dd-btn--navy:hover { color: #fff; }
.dd-btn--navy .dd-btn__arrow { width: 20px; height: 20px; background: #fff; color: var(--dd-navy); font-size: 11px; }
.dd-btn--pill {
  display: inline-block;
  background: var(--dd-navy);
  color: #fff;
  font-size: 13px;
  padding: 12px 22px;
}
.dd-btn--pill:hover { color: #fff; }

/* --------------------------------------------------------------------------
   5. DEFINITION
   -------------------------------------------------------------------------- */
.dd-definition {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px 24px 30px;
  text-align: center;
}
.dd-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 26px;
  max-width: 220px;
}
.dd-divider__rule { flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(28, 37, 84, .28)); }
.dd-divider__rule--rev { background: linear-gradient(90deg, rgba(28, 37, 84, .28), transparent); }
.dd-divider--bottom { margin: 26px auto 0; }
.dd-divider__dot { flex: none; width: 7px; height: 7px; border-radius: 50%; background: #8fbf72; }

.dd-definition__text {
  font-family: var(--dd-font-heading);
  font-weight: 400;
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.35;
  color: var(--dd-heading);
  margin: 0;
  text-wrap: pretty;
}

/* --------------------------------------------------------------------------
   6. STEPS ("Here's how we grow you")
   -------------------------------------------------------------------------- */
.dd-steps {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  text-align: center;
}
.dd-steps__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: 32px; color: var(--dd-heading); margin: 0 0 8px; }
.dd-steps__subtitle { font-size: 15px; color: #4a5183; margin: 0 0 34px; }
.dd-steps__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
}
.dd-step-card {
  border-radius: 22px;
  padding: 26px;
  text-align: left;
  overflow: hidden;
  position: relative;
}
.dd-step-card--navy { background: var(--dd-navy); color: #fff; }
.dd-step-card--cream { background: var(--dd-cream); }
.dd-step-card__label { font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.dd-step-card--navy .dd-step-card__label { opacity: .7; }
.dd-step-card--cream .dd-step-card__label { color: var(--dd-muted-2); }
.dd-step-card__heading { font-family: var(--dd-font-heading); font-size: 22px; margin-bottom: 14px; }
.dd-step-card--cream .dd-step-card__heading { color: var(--dd-heading); }
.dd-step-card__text { font-size: 13px; line-height: 1.6; margin: 0; }
.dd-step-card--navy .dd-step-card__text { opacity: .85; }
.dd-step-card--cream .dd-step-card__text { color: #4a5183; }
.dd-step-card__stats { display: flex; gap: 20px; align-items: flex-end; margin-top: 18px; }
.dd-step-card__stat-num { font-family: var(--dd-font-heading); font-size: 30px; color: var(--dd-heading); }
.dd-step-card__stat-label { font-size: 11px; color: var(--dd-muted-2); }
.dd-step-card__big-num { font-family: var(--dd-font-heading); font-size: 44px; color: var(--dd-cloud-gold); margin-top: 18px; }
.dd-step-card__big-label { font-size: 11px; opacity: .7; }

/* --------------------------------------------------------------------------
   7. HELP ACCORDION ("What we do")
   -------------------------------------------------------------------------- */
.dd-help {
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px 24px;
}
.dd-help__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: 34px; color: var(--dd-heading); margin: 0 0 8px; }
.dd-help__subtitle { font-size: 15px; color: #4a5183; margin: 0 0 30px; max-width: 520px; }
.dd-help__list { display: flex; flex-direction: column; gap: 12px; }

.dd-accordion-item { background: var(--dd-cream); border-radius: 18px; padding: 22px 26px; cursor: pointer; }
.dd-accordion-item__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.dd-accordion-item__title { font-family: var(--dd-font-heading); font-size: 21px; color: var(--dd-heading); }
.dd-accordion-item__chevron {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dd-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform .3s ease;
}
.dd-accordion-item.is-open .dd-accordion-item__chevron { transform: rotate(45deg); }
.dd-accordion-item__panel {
  overflow: hidden;
  transition: max-height .4s ease, opacity .35s ease;
  max-height: 0;
  opacity: 0;
}
.dd-accordion-item.is-open .dd-accordion-item__panel { max-height: 260px; opacity: 1; }
.dd-accordion-item__panel p { font-size: 14px; line-height: 1.65; color: #4a5183; margin: 14px 0 0; max-width: 640px; }

/* --------------------------------------------------------------------------
   8. FEATURE — "No fluff. Just results." + team scene
   -------------------------------------------------------------------------- */
.dd-feature {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 24px 70px;
}
.dd-feature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 44px;
  align-items: center;
}

.dd-team-scene {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  height: 400px;
  background: linear-gradient(180deg, var(--dd-sky-1) 0%, var(--dd-sky-2) 55%, var(--dd-sky-3) 100%);
}
.dd-team-scene__cloud-1 {
  position: absolute; top: 44px; left: -24px; width: 150px; height: 48px; background: var(--dd-cloud-pink); border-radius: 60px;
  box-shadow: 52px -16px 0 -6px #f6c6d3, -30px 6px 0 -10px #f7ccd6;
  animation: dd-drift 80s linear infinite;
}
.dd-team-scene__cloud-2 {
  position: absolute; top: 96px; right: 18px; width: 118px; height: 40px; background: var(--dd-cloud-gold); opacity: .85; border-radius: 60px;
  box-shadow: -42px 8px 0 -8px #f7e29c;
  animation: dd-drift-slow 100s linear infinite; animation-delay: -30s;
}
.dd-team-scene__bird-1 { position: absolute; top: 58px; right: 78px; animation: dd-bob 4s ease-in-out infinite; }
.dd-team-scene__bird-2 { position: absolute; top: 150px; left: 52px; animation: dd-bob 5s ease-in-out infinite; animation-delay: -1s; }
.dd-team-scene__bird-1 svg, .dd-team-scene__bird-2 svg { display: block; }

.dd-team-scene__avatars {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 66px;
  display: flex;
  justify-content: center;
}
.dd-team-scene__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 28px;
  text-align: center;
  font-family: var(--dd-font-heading);
  font-size: 16px;
  color: var(--dd-heading);
}

.dd-avatar {
  border-radius: 50%;
  border: 3px solid var(--dd-cream);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(27, 38, 104, .14);
  position: relative;
}
.dd-avatar--sm { width: 88px; height: 88px; }
.dd-avatar--lg { width: 96px; height: 96px; }
.dd-avatar--overlap-l { margin-left: -14px; }
.dd-avatar--overlap-r { margin: 0 -14px; }

/* team-bird character recipe */
.dd-tbird__body {
  position: absolute;
  bottom: -14px;
  left: 50%;
  border-radius: 50% 50% 46% 46%;
  transform: translate(-50%, 0);
  animation: dd-hop 3.4s ease-in-out infinite;
}
.dd-tbird__tuft {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 15px;
  border-radius: 4px;
  z-index: 1;
}
.dd-tbird__wing {
  position: absolute;
  bottom: 10px;
  border-radius: 60% 60% 55% 55%;
  transform-origin: top center;
  animation: dd-wave 3.6s ease-in-out infinite;
  z-index: 3;
}
.dd-tbird__eyes { position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 7px; z-index: 4; }
.dd-tbird__eye {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center;
  animation: dd-blink 4.5s ease-in-out infinite;
}
.dd-tbird__pupil { width: 4.5px; height: 4.5px; border-radius: 50%; background: var(--dd-heading); }
.dd-tbird__beak {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #f0a24e;
  z-index: 4;
}

.dd-tbird--1 .dd-tbird__body { background: #e79bb4; width: 63.36px; height: 63.36px; }
.dd-tbird--1 .dd-tbird__tuft { background: #e79bb4; }
.dd-tbird--1 .dd-tbird__wing { background: #d67fa4; right: 12.32px; width: 15px; height: 21px; }
.dd-tbird--1 .dd-tbird__eyes { top: 29.92px; }
.dd-tbird--1 .dd-tbird__beak { top: 41.36px; }

.dd-tbird--2 .dd-tbird__body { background: #7fae63; width: 69.12px; height: 69.12px; animation-delay: .5s; }
.dd-tbird--2 .dd-tbird__tuft { background: #7fae63; }
.dd-tbird--2 .dd-tbird__wing { background: #5c8a49; right: 13.44px; width: 15px; height: 21px; animation-delay: .6s; }
.dd-tbird--2 .dd-tbird__eyes { top: 32.64px; }
.dd-tbird--2 .dd-tbird__eye { animation-delay: 1.4s; }
.dd-tbird--2 .dd-tbird__beak { top: 45.12px; }

.dd-tbird--3 .dd-tbird__body { background: #e6c65a; width: 69.12px; height: 69.12px; animation-delay: 1s; }
.dd-tbird--3 .dd-tbird__tuft { background: #e6c65a; }
.dd-tbird--3 .dd-tbird__wing { background: #c9a53f; right: 13.44px; width: 15px; height: 21px; animation-delay: 1.2s; }
.dd-tbird--3 .dd-tbird__eyes { top: 32.64px; }
.dd-tbird--3 .dd-tbird__eye { animation-delay: .8s; }
.dd-tbird--3 .dd-tbird__beak { top: 45.12px; }

.dd-tbird--4 .dd-tbird__body { background: #8f9ad8; width: 63.36px; height: 63.36px; animation-delay: 1.5s; }
.dd-tbird--4 .dd-tbird__tuft { background: #8f9ad8; }
.dd-tbird--4 .dd-tbird__wing { background: #6f7cc4; right: 12.32px; width: 15px; height: 21px; animation-delay: .4s; }
.dd-tbird--4 .dd-tbird__eyes { top: 29.92px; }
.dd-tbird--4 .dd-tbird__eye { animation-delay: 2.1s; }
.dd-tbird--4 .dd-tbird__beak { top: 41.36px; }

.dd-feature__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: clamp(28px, 5vw, 36px); color: var(--dd-heading); margin: 0 0 16px; line-height: 1.1; }
.dd-feature__text { font-size: 15px; line-height: 1.65; color: #4a5183; margin: 0 0 26px; max-width: 460px; }
.dd-feature__bullets { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
.dd-feature__bullet-title { font-family: var(--dd-font-heading); font-size: 19px; color: var(--dd-heading); margin-bottom: 6px; }
.dd-feature__bullet-text { font-size: 13px; line-height: 1.6; color: #4a5183; margin: 0; }

/* --------------------------------------------------------------------------
   9. TRUST CARDS — "Human & clinical."
   -------------------------------------------------------------------------- */
.dd-trust {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px 60px;
  text-align: center;
}
.dd-trust__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: 32px; color: var(--dd-heading); margin: 0 0 30px; }
.dd-trust__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  text-align: left;
}
.dd-trust-card { background: var(--dd-cream); border-radius: 20px; padding: 24px; }
.dd-trust-card__icon { width: 34px; height: 34px; border-radius: 9px; background: var(--dd-navy); margin-bottom: 16px; }
.dd-trust-card__title { font-family: var(--dd-font-heading); font-size: 19px; color: var(--dd-heading); margin-bottom: 8px; }
.dd-trust-card__text { font-size: 13px; line-height: 1.6; color: #4a5183; margin: 0; }

/* --------------------------------------------------------------------------
   10. COVERAGE + STATS + CHART
   -------------------------------------------------------------------------- */
.dd-coverage {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 70px;
}
.dd-coverage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}
.dd-coverage__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: clamp(26px, 5vw, 34px); color: var(--dd-heading); margin: 0 0 14px; line-height: 1.15; }
.dd-coverage__text { font-size: 14px; line-height: 1.6; color: #4a5183; margin: 0 0 26px; max-width: 380px; }
.dd-coverage__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; max-width: 440px; }
.dd-coverage__stat-num { font-family: var(--dd-font-heading); font-size: 34px; color: var(--dd-heading); }
.dd-coverage__stat-label { font-size: 12px; color: var(--dd-muted); }

.dd-chart {
  position: relative;
  height: 280px;
  border-radius: 20px;
  background: linear-gradient(180deg, var(--dd-navy), var(--dd-navy-deep));
  overflow: hidden;
}
.dd-chart__gridline { position: absolute; left: 0; right: 0; height: 1px; background: rgba(255, 255, 255, .08); }
.dd-chart__gridline--1 { bottom: 44px; background: rgba(255, 255, 255, .14); }
.dd-chart__gridline--2 { bottom: 104px; }
.dd-chart__gridline--3 { bottom: 164px; }
.dd-chart__bars {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 44px;
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.dd-chart__bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  transform: scaleY(0);
  animation: dd-grow .9s cubic-bezier(.2, .8, .2, 1) forwards;
}
.dd-chart__bar--1 { height: 20%;  background: linear-gradient(180deg, #8f9ad8, #6f7cc4); animation-delay: .1s; }
.dd-chart__bar--2 { height: 34%;  background: linear-gradient(180deg, #8f9ad8, #6f7cc4); animation-delay: .25s; }
.dd-chart__bar--3 { height: 46%;  background: linear-gradient(180deg, #9aa4dd, #7986cb); animation-delay: .4s; }
.dd-chart__bar--4 { height: 62%;  background: linear-gradient(180deg, #c3b79f, #a892c0); animation-delay: .55s; }
.dd-chart__bar--5 { height: 80%;  background: linear-gradient(180deg, #f0d489, #e6b86a); animation-delay: .7s; }
.dd-chart__bar--6 { height: 100%; background: linear-gradient(180deg, #f6d98a, #eec25f); animation-delay: .85s; }
.dd-chart__caption { position: absolute; left: 28px; bottom: 16px; font-size: 11px; color: rgba(255, 255, 255, .55); letter-spacing: .04em; }

.dd-chart-bird {
  position: absolute;
  left: 8%;
  bottom: 40px;
  width: 34px;
  height: 32px;
  transform: translateX(-50%);
  animation: dd-bird-hop 7s ease-in-out infinite;
  animation-delay: 1s;
  z-index: 5;
}
.dd-chart-bird__body { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 28px; height: 28px; border-radius: 50% 50% 46% 46%; background: #e79bb4; }
.dd-chart-bird__tuft { position: absolute; top: 1px; left: 50%; transform: translateX(-50%); width: 5px; height: 11px; border-radius: 3px; background: #e79bb4; }
.dd-chart-bird__wing {
  position: absolute; bottom: 9px; right: 2px; width: 11px; height: 15px; border-radius: 60% 60% 55% 55%;
  background: #d67fa4; transform-origin: top center; animation: dd-wave 1.1s ease-in-out infinite; z-index: 6;
}
.dd-chart-bird__eyes { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 7; }
.dd-chart-bird__eye {
  width: 8px; height: 8px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center;
  transform-origin: center; animation: dd-blink 4s ease-in-out infinite;
}
.dd-chart-bird__eye--2 { animation-delay: .3s; }
.dd-chart-bird__pupil { width: 3.5px; height: 3.5px; border-radius: 50%; background: var(--dd-heading); }
.dd-chart-bird__beak { position: absolute; top: 15px; left: 50%; transform: translate(-50%, 0) rotate(45deg); width: 6px; height: 6px; background: #f0a24e; z-index: 7; }

/* --------------------------------------------------------------------------
   11. EDITORIAL STANDARD + PROCESS
   -------------------------------------------------------------------------- */
.dd-editorial {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 70px;
}
.dd-editorial__panel {
  background: var(--dd-navy);
  border-radius: 26px;
  padding: clamp(30px, 5vw, 56px);
  color: #fff;
}
.dd-editorial__eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; opacity: .6; margin-bottom: 18px; }
.dd-editorial__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 40px; align-items: start; }
.dd-editorial__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: clamp(26px, 4vw, 34px); line-height: 1.15; margin: 0 0 20px; }
.dd-editorial__quote {
  font-size: 14px;
  line-height: 1.7;
  opacity: .85;
  margin: 0;
  border-left: 2px solid var(--dd-cloud-gold);
  padding-left: 16px;
  font-style: italic;
}
.dd-editorial__process { display: flex; flex-direction: column; gap: 24px; }
.dd-editorial__step-label { font-size: 13px; font-weight: 600; color: var(--dd-cloud-gold); margin-bottom: 6px; letter-spacing: .04em; }
.dd-editorial__step-text { font-size: 13px; line-height: 1.65; opacity: .82; margin: 0; }

/* --------------------------------------------------------------------------
   12. FAQ
   -------------------------------------------------------------------------- */
.dd-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 24px 80px;
}
.dd-faq__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 44px; }
.dd-faq__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: 32px; color: var(--dd-heading); margin: 0 0 14px; }
.dd-faq__lead { font-size: 14px; color: #4a5183; margin: 0 0 20px; max-width: 260px; }
.dd-faq__list { display: flex; flex-direction: column; }
.dd-faq-item { border-bottom: 1px solid rgba(28, 37, 84, .18); padding: 20px 0; cursor: pointer; }
.dd-faq-item__head { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.dd-faq-item__question { font-size: 16px; font-weight: 600; color: var(--dd-heading); }
.dd-faq-item__chevron { flex: none; font-size: 22px; color: var(--dd-navy); transition: transform .3s ease; }
.dd-faq-item.is-open .dd-faq-item__chevron { transform: rotate(45deg); }
.dd-faq-item__panel { overflow: hidden; transition: max-height .4s ease, opacity .35s ease; max-height: 0; opacity: 0; }
.dd-faq-item.is-open .dd-faq-item__panel { max-height: 200px; opacity: 1; }
.dd-faq-item__panel p { font-size: 14px; line-height: 1.65; color: #4a5183; margin: 12px 0 0; }

/* --------------------------------------------------------------------------
   13. NEWSLETTER CTA
   -------------------------------------------------------------------------- */
.dd-cta { position: relative; overflow: hidden; padding-top: 60px; }
.dd-cta__inner { position: relative; z-index: 10; text-align: center; padding: 20px 24px 30px; }
.dd-cta__eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--dd-muted); margin-bottom: 14px; }
.dd-cta__title { font-family: var(--dd-font-heading); font-weight: 400; font-size: clamp(30px, 6vw, 40px); color: var(--dd-heading); margin: 0 0 14px; }
.dd-cta__text { font-size: 16px; color: #38406e; max-width: 440px; margin: 0 auto 28px; }

.dd-newsletter {
  max-width: 900px;
  margin: 0 auto;
  background: var(--dd-cream);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(27, 38, 104, .18);
  text-align: left;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
}

.dd-newsletter__panel {
  position: relative;
  background: linear-gradient(165deg, var(--dd-navy-panel-1), var(--dd-navy));
  color: #fff;
  padding: 38px 34px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dd-newsletter__panel-cloud {
  position: absolute; top: -14px; right: -30px; width: 150px; height: 52px; background: var(--dd-cloud-pink); border-radius: 100px;
  filter: blur(1px); opacity: .5; box-shadow: 52px 20px 0 -8px #f6c6d3, -34px 16px 0 -12px #f7ccd6;
  animation: dd-drift-slow 90s linear infinite;
}
.dd-newsletter__badge {
  position: relative; z-index: 2; width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .1);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.dd-newsletter__badge svg { animation: dd-flap 1s ease-in-out infinite; transform-origin: center; }
.dd-newsletter__heading { position: relative; z-index: 2; font-family: var(--dd-font-heading); font-size: 25px; line-height: 1.2; margin-bottom: 14px; }
.dd-newsletter__lead { position: relative; z-index: 2; font-size: 13px; line-height: 1.65; opacity: .82; margin: 0 0 22px; }
.dd-newsletter__checks { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 12px; margin-top: auto; }
.dd-newsletter__check { display: flex; align-items: center; gap: 10px; font-size: 13px; opacity: .9; }
.dd-newsletter__check-icon {
  flex: none; width: 18px; height: 18px; border-radius: 50%; background: rgba(246, 217, 138, .2); color: var(--dd-cloud-gold);
  display: flex; align-items: center; justify-content: center; font-size: 10px;
}

.dd-newsletter__form-wrap { padding: 36px 34px; }
.dd-newsletter__form { display: flex; flex-direction: column; gap: 14px; }
.dd-newsletter__row { display: flex; gap: 12px; flex-wrap: wrap; }
.dd-input, .dd-select {
  padding: 14px 16px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--dd-panel-light);
  color: var(--dd-heading);
  box-sizing: border-box;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}
.dd-input:focus, .dd-select:focus { border-color: var(--dd-navy); background: #fff; }
.dd-input--half { flex: 1; min-width: 130px; }
.dd-input--full, .dd-select { width: 100%; }
.dd-select { appearance: none; }

.dd-newsletter__label { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--dd-muted-2); margin-top: 6px; }

.dd-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.dd-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 9px 15px;
  border-radius: 100px;
  border: 1px solid rgba(28, 37, 84, .18);
  background: #fff;
  color: #4a5183;
  font-size: 13px;
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}
.dd-chip:hover { border-color: var(--dd-navy); }
.dd-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.dd-chip:has(input:checked) { background: var(--dd-navy); border-color: var(--dd-navy); color: #fff; }

.dd-newsletter__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 100px;
  background: var(--dd-navy);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  margin-top: 2px;
  transition: background .2s ease;
}
.dd-newsletter__submit:hover { background: #141c52; }
.dd-newsletter__submit:disabled { opacity: .6; cursor: not-allowed; }
.dd-newsletter__submit .dd-btn__arrow { width: 22px; height: 22px; background: var(--dd-cloud-gold); color: var(--dd-navy); font-size: 12px; }
.dd-newsletter__disclaimer { font-size: 12px; color: var(--dd-muted-2); text-align: center; margin: 6px 0 0; }
.dd-newsletter__error { font-size: 13px; color: #c0392b; text-align: center; margin: 2px 0 0; }

.dd-newsletter__thanks { display: none; text-align: center; }
.dd-newsletter__thanks.is-visible { display: block; }
.dd-newsletter__form.is-hidden { display: none; }
.dd-newsletter__thanks-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--dd-navy); color: var(--dd-cloud-gold);
  display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 16px;
}
.dd-newsletter__thanks-title { font-family: var(--dd-font-heading); font-size: 24px; color: var(--dd-heading); margin-bottom: 8px; }
.dd-newsletter__thanks-text { font-size: 14px; color: #4a5183; margin: 0; }

/* --------------------------------------------------------------------------
   14. LANDSCAPE + WORDMARK FOOTER
   -------------------------------------------------------------------------- */
.dd-landscape { position: relative; height: 340px; margin-top: 20px; }
.dd-landscape__hills {
  position: absolute; bottom: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(180deg, var(--dd-grass-2), var(--dd-grass-1));
  border-radius: 100% 100% 0 0 / 60px 60px 0 0;
}
.dd-landscape__wordmark {
  position: absolute; bottom: 24px; left: 0; right: 0; text-align: center;
  font-family: var(--dd-font-word); font-weight: 800; font-size: clamp(20px, 8.4vw, 150px);
  white-space: nowrap; line-height: .8; color: var(--dd-cream); letter-spacing: -.03em; z-index: 2; user-select: none;
}
.dd-tree { position: absolute; bottom: 110px; z-index: 3; animation: dd-sway 7s ease-in-out infinite; transform-origin: bottom center; }
.dd-tree--left { left: 5%; }
.dd-tree--right { right: 6%; animation-duration: 8s; animation-delay: -2s; }
.dd-tree__trunk { width: 12px; height: 60px; background: #7a5a44; border-radius: 6px; margin: 0 auto; }
.dd-tree--right .dd-tree__trunk { height: 70px; }
.dd-tree__canopy { width: 120px; height: 110px; border-radius: 50%; margin-top: -90px; }
.dd-tree__canopy--green { background: radial-gradient(circle at 40% 35%, #8fbf72, #5c8a49); }
.dd-tree__canopy--blossom { width: 140px; height: 120px; margin-top: -100px; background: radial-gradient(circle at 55% 35%, #efb0c8, #d67fa4); }

.dd-footer-bar {
  background: var(--dd-grass-1);
  padding: 26px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 4;
}
.dd-footer-bar__links { display: flex; gap: 26px; font-size: 13px; }
.dd-footer-bar__links a { color: #f4f1e8; }
.dd-footer-bar__copy { font-size: 12px; color: #e5ecd8; }

/* --------------------------------------------------------------------------
   15. SIDE FOLIAGE (trees & bushes) + extra gliding birds
   -------------------------------------------------------------------------- */
.dd-foliage-layer { position: absolute; inset: 0; z-index: 3; pointer-events: none; overflow: hidden; }

.dd-foliage {
  position: absolute;
  animation: dd-sway var(--dd-sway-dur, 9s) ease-in-out infinite;
  animation-delay: var(--dd-sway-delay, 0s);
  transform-origin: var(--dd-sway-origin, top center);
}
.dd-foliage__part { position: absolute; }

.dd-glide-bird { position: absolute; left: 0; animation: dd-fly var(--dd-fly-dur, 45s) linear infinite; animation-delay: var(--dd-fly-delay, 0s); }
.dd-glide-bird svg { animation: dd-flap .9s ease-in-out infinite; transform-origin: center; }

/* --------------------------------------------------------------------------
   16. LEGAL PAGE (Terms & Privacy)
   -------------------------------------------------------------------------- */
.dd-legal-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(20px, 5vw, 48px);
  max-width: 1080px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.dd-legal-header__back { font-size: 14px; font-weight: 500; color: #2a337a; }

.dd-legal {
  max-width: 820px;
  margin: 0 auto;
  padding: 8px 24px 70px;
}
.dd-legal__card {
  background: var(--dd-cream);
  border-radius: 26px;
  padding: clamp(28px, 5vw, 56px);
  box-shadow: 0 20px 50px rgba(27, 38, 104, .12);
}
.dd-legal__title {
  font-family: var(--dd-font-heading);
  font-weight: 400;
  font-size: clamp(26px, 5vw, 36px);
  line-height: 1.1;
  color: var(--dd-heading);
  margin: 0;
}
.dd-legal__meta { font-size: 14px; color: var(--dd-muted); margin-top: 4px; }
.dd-legal__intro { font-size: 16px; line-height: 1.7; color: var(--dd-heading); margin: 22px 0 0; }

.dd-legal__part {
  margin: 52px 0 8px;
  padding-top: 26px;
  border-top: 1px solid rgba(28, 37, 84, .16);
  text-align: center;
}
.dd-legal__part-eyebrow { font-size: 12px; letter-spacing: .22em; color: var(--dd-muted-2); text-transform: uppercase; margin-bottom: 6px; }
.dd-legal__part-title { font-family: var(--dd-font-heading); font-size: clamp(24px, 4vw, 30px); color: var(--dd-heading); }

.dd-legal__h2 {
  font-family: var(--dd-font-heading);
  font-weight: 400;
  font-size: 21px;
  color: var(--dd-heading);
  margin: 34px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(28, 37, 84, .12);
}
.dd-legal__h3 { font-size: 14px; font-weight: 600; color: #2c3466; margin: 22px 0 6px; letter-spacing: .01em; }
.dd-legal__p { font-size: 14.5px; line-height: 1.7; color: var(--dd-body-text); margin: 10px 0; }
.dd-legal__p strong { color: var(--dd-heading); }
.dd-legal__note {
  font-size: 13px;
  font-style: italic;
  color: var(--dd-muted-2);
  margin: 12px 0;
  border-left: 2px solid rgba(28, 37, 84, .2);
  padding-left: 14px;
}
.dd-legal__clause {
  font-size: 13px;
  line-height: 1.7;
  color: var(--dd-heading);
  background: var(--dd-panel-light);
  border-left: 3px solid var(--dd-navy);
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin: 16px 0;
  letter-spacing: .01em;
}
.dd-legal__list { margin: 8px 0; padding-left: 22px; display: flex; flex-direction: column; gap: 8px; }
.dd-legal__list li { font-size: 14.5px; line-height: 1.65; color: var(--dd-body-text); }
.dd-legal__footnote {
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(28, 37, 84, .12);
  font-size: 12px;
  color: var(--dd-muted-2);
}

/* --------------------------------------------------------------------------
   17. 404
   -------------------------------------------------------------------------- */
.dd-404 {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px;
  overflow: hidden;
}
.dd-404__code {
  font-family: var(--dd-font-heading);
  font-weight: 400;
  font-size: clamp(90px, 22vw, 220px);
  line-height: 1;
  color: rgba(27, 38, 104, .12);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  z-index: 0;
  user-select: none;
}
.dd-404__inner { position: relative; z-index: 2; max-width: 520px; margin: 0 auto; }
.dd-404__eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #4a5183; margin-bottom: 18px; display: block; }
.dd-404__heading { font-family: var(--dd-font-heading); font-weight: 400; font-size: clamp(28px, 5vw, 40px); color: var(--dd-heading); margin: 0 0 16px; line-height: 1.15; }
.dd-404__text { font-size: 16px; line-height: 1.6; color: #38406e; margin: 0 0 30px; }
.dd-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dd-404__btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--dd-navy); color: #fff; font-weight: 600;
  font-size: 15px; padding: 15px 26px; border-radius: 100px;
}
.dd-404__btn:hover { color: #fff; }
.dd-404__btn--ghost { background: #fff; color: var(--dd-navy); box-shadow: 0 10px 30px rgba(27, 38, 104, .12); }
.dd-404__btn--ghost:hover { color: var(--dd-navy); }

/* --------------------------------------------------------------------------
   17b. CONFIRM (thank-you page) — same centered layout as 404, bird badge
   instead of ghosted numerals.
   -------------------------------------------------------------------------- */
.dd-confirm {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 90px 24px;
  overflow: hidden;
}
.dd-confirm__badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--dd-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.dd-confirm__inner { position: relative; z-index: 2; max-width: 520px; margin: 0 auto; }
.dd-confirm__eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #4a5183; margin-bottom: 18px; display: block; }
.dd-confirm__heading { font-family: var(--dd-font-heading); font-weight: 400; font-size: clamp(28px, 5vw, 40px); color: var(--dd-heading); margin: 0 0 16px; line-height: 1.15; }
.dd-confirm__text { font-size: 16px; line-height: 1.6; color: #38406e; margin: 0 0 30px; }
.dd-confirm__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dd-confirm__btn {
  display: inline-flex; align-items: center; gap: 10px; background: var(--dd-navy); color: #fff; font-weight: 600;
  font-size: 15px; padding: 15px 26px; border-radius: 100px;
}
.dd-confirm__btn:hover { color: #fff; }

/* --------------------------------------------------------------------------
   18. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 640px) {
  .dd-nav { padding: 20px 20px; gap: 16px 24px; }
  .dd-nav__group { gap: 20px; }
  .dd-newsletter { grid-template-columns: 1fr; }
  .dd-newsletter__panel { padding: 30px 26px; }
  .dd-newsletter__form-wrap { padding: 28px 26px; }
  .dd-footer-bar { justify-content: center; text-align: center; }
  .dd-landscape { height: 260px; }
  .dd-tree__canopy, .dd-tree__canopy--blossom { width: 80px; height: 74px; margin-top: -60px; }
  .dd-tree--right .dd-tree__canopy--blossom { width: 92px; height: 80px; margin-top: -66px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
