/* ============================================
   Round 4, per-screenshot adjustments
============================================ */

/* ── Footer: BIG logo stacked above the wordmark + tagline ── */
.footer-v2 { padding: 2.5rem clamp(2rem, 4vw, 4rem) 0 !important; }
.footer-v2-main {
  align-items: flex-start !important;
  gap: clamp(2rem, 4vw, 4rem) !important;
}
.footer-v2-brand {
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0.65rem !important;
}
.footer-v2-mark {
  width: clamp(120px, 12vw, 170px) !important;
  height: auto !important;
}
.footer-v2-brand-text { gap: 0.2rem !important; }
.footer-v2-brand-text .footer-v2-logo {
  font-size: 1.5rem !important;
  letter-spacing: 0.04em !important;
}
.footer-v2-tag {
  font-size: 0.62rem !important;
  letter-spacing: 0.2em !important;
}
/* Links, contact, socials vertical-center against the tall brand column */
.footer-v2-links.footer-v2-contact.footer-v2-social {
  align-self: center !important;
}

/* ── FAQ: restore scroll + multi-toggle behavior ── */
.adu-faq {
  max-height: calc(100vh - var(--nav-h) - 5rem) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  scrollbar-width: none;
}
.adu-faq::-webkit-scrollbar { display: none; }
/* drop the dim/single-open visuals from round 3 */
.faq-item.dim {
  opacity: 1 !important;
  pointer-events: auto !important;
}

/* ── Where do I begin, boxes match the blue-box dimensions ──
   Wider and TALL, but capped so the whole card lives inside the
   section (no clip into next section, no overflow below viewport). */
.begin-section {
  padding: calc(var(--nav-h) + 1.2rem) clamp(2.5rem, 4.5vw, 5rem) 1.2rem !important;
}
.begin-inner {
  gap: 0.75rem !important;
  justify-content: flex-start !important;
}
.begin-inner h2 { font-size: clamp(1.9rem, 3.4vw, 3rem) !important; }
.begin-lede {
  font-size: 0.92rem !important;
  max-width: 720px !important;
  margin-bottom: 0.1rem !important;
}
.begin-cards {
  grid-template-columns: 1fr 1fr 1fr !important;
  gap: clamp(1.25rem, 2vw, 2.2rem) !important;
  /* explicit height bounded by the visible viewport */
  height: clamp(340px, 46vh, 440px) !important;
  height: clamp(340px, 46dvh, 440px) !important;
  max-width: 1480px;
  margin: 0.5rem auto 0 !important;
}
.begin-card {
  padding: 1.6rem 1.5rem 1.2rem !important;
  gap: 0.55rem !important;
  overflow: hidden !important;
}
.begin-icon { margin-bottom: 0.1rem !important; }
.begin-icon svg { width: clamp(30px, 3.6vh, 38px); height: auto; }
.begin-card h3 {
  font-size: clamp(0.9rem, 1vw, 1rem) !important;
  line-height: 1.3 !important;
}
.begin-card p {
  font-size: 0.78rem !important;
  line-height: 1.5 !important;
  opacity: 0.7 !important;
  flex: 0 0 auto !important;
}
.begin-card-bullets {
  flex: 1 1 auto;
  gap: 0.3rem !important;
  min-height: 0 !important;
}
.begin-card-bullets li {
  font-size: 0.72rem !important;
  line-height: 1.35 !important;
}
.begin-card .btn-ghost {
  font-size: 0.6rem !important;
  padding: 0.6rem 0.95rem !important;
  margin-top: 0.4rem !important;
}

/* ── ADU Types ── */
/* 1) Intro panel, text shifted right (centered between left edge + diagonal line) */
.adu-intro-text {
  margin-left: clamp(7rem, 13vw, 14rem) !important;
}

/* 2) Panels 2–5, Learn-More button raised so it sits at the height
   of the LAST dot in the right-side rail. The rail centers at 50% +
   nav-h/2 ≈ 539, with 9 dots + gaps ≈ 340px tall, so the last dot is
   around viewport y ≈ 700. The button sits at the bottom of the
   panel-info column; bumping the column's padding-bottom raises the
   button by that exact amount. */
.adu-panel:not(.adu-panel--intro) .adu-panel-info {
  padding-bottom: clamp(15rem, 24vh, 20rem) !important;
}

/* 3) Panels 2–5, isometric drawing raised toward the visual midline
   between the header bottom (~132) and the section bottom (100vh).
   We pull the SVG up with a slight translate so it visually sits at
   the midpoint rather than its natural lower-bias placement. */
.adu-panel:not(.adu-panel--intro) .adu-panel-design {
  align-items: flex-start !important;
  padding-top: clamp(3rem, 8vh, 7rem) !important;
  padding-bottom: clamp(2rem, 6vh, 5rem) !important;
}
.adu-panel:not(.adu-panel--intro) .adu-panel-design svg.adu-panel:not(.adu-panel--intro) .adu-panel-design img {
  transform: translateY(-4%);
}
