:root {
  --font-main: "Inter", "Segoe UI Variable Text", "Segoe UI", Roboto, Arial, sans-serif;
  --bg: #050914;
  --paper: #0b1220;
  --ink: #f7fbff;
  --muted: #aab8cb;
  --line: #1d2f4a;
  --accent: #00c8ff;
  --accent-2: #147dff;
  --deep: #020713;
  --soft: #101a2d;
  --danger: #ff5c7a;
  --radius: 8px;
  --max: 1360px;
  --shadow: 0 24px 90px rgba(0, 117, 255, .22);
  font-family: var(--font-main);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(0,200,255,.20), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(20,125,255,.18), transparent 28%),
    linear-gradient(135deg, rgba(4,10,24,.96), rgba(5,9,20,.99));
  z-index: -1;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid rgba(0, 200, 255, .55);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: .75rem;
  transform: translateY(-160%);
  background: var(--deep);
  color: white;
  padding: .65rem .9rem;
  border-radius: var(--radius);
  z-index: 10;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 9;
  background: rgba(5, 9, 20, .86);
  border-bottom: 1px solid rgba(0, 200, 255, .18);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--deep);
  color: #00c8ff;
  border-radius: 50%;
  font-size: .9rem;
}

.brand-word {
  font-size: .98rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .94rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.nav-muted {
  opacity: .75;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  padding: .55rem .8rem;
  border-radius: var(--radius);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: .78rem 1.05rem;
  border: 1px solid var(--deep);
  border-radius: var(--radius);
  background: var(--deep);
  color: white;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #082b60;
}

.button.ghost {
  background: transparent;
  color: var(--deep);
}

.button.ghost:hover {
  background: rgba(0, 200, 255, .10);
}

.button.small {
  min-height: 38px;
  padding: .5rem .8rem;
  font-size: .88rem;
}

.hero,
.page-hero,
.section,
.trust-bar,
.article,
.message-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: 6rem 1.5rem;
}

.hero {
  min-height: calc(100vh - 78px);
  background: linear-gradient(90deg, rgba(5,9,20,.98) 0%, rgba(5,9,20,.86) 48%, rgba(5,9,20,.36) 100%), url('/assets/img/dreamseven-logo-banner.jpg') right center / min(52vw, 640px) auto no-repeat;
  border-bottom: 1px solid rgba(0,200,255,.16);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .65fr);
  align-items: center;
  gap: 4rem;
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}

.page-hero {
  padding-top: 6.5rem;
  padding-bottom: 4.5rem;
}

.eyebrow {
  margin: 0 0 .85rem;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  font-size: clamp(2.75rem, 8vw, 6.7rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 4rem);
}

h3 {
  font-size: 1.2rem;
}

.lead,
.section-lead {
  max-width: 760px;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.trust-line,
.fineprint {
  max-width: 620px;
  color: var(--muted);
  font-size: .96rem;
  margin-top: 1.5rem;
}

.hero-panel {
  position: relative;
  padding: 1rem;
  background: var(--deep);
  color: #f7fbff;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero-panel span {
  display: block;
  padding: 1.2rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.14);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  font-weight: 750;
}

.hero-panel span:last-child {
  border-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: start;
}

.rich-text p,
.text-stack p,
.legal-copy p,
.article p {
  color: var(--muted);
  font-size: 1.08rem;
}

.muted {
  background: rgba(10, 22, 42, .78);
  max-width: none;
}

.muted > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.compact {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.service-grid,
.pricing-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.service-grid.three,
.article-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.article-card,
.price-card {
  min-height: 210px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 18, 32, .82);
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.service-card:hover,
.article-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 200, 255, .55);
  background: var(--paper);
}

.service-card span,
.article-card span {
  display: inline-block;
  color: var(--accent-2);
  font-weight: 800;
  margin-bottom: .8rem;
}

.service-card p,
.article-card p,
.price-card p {
  color: var(--muted);
  margin: 0;
}

.method-list {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .8rem;
  list-style: none;
  padding: 0;
  margin: 2.4rem 0 0;
}

.method-list li {
  border-top: 3px solid var(--accent);
  padding-top: 1rem;
}

.method-list span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  font-size: .82rem;
  margin-bottom: .85rem;
}

.method-list p {
  color: var(--muted);
  font-size: .92rem;
  margin: .5rem 0 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .65rem .9rem;
  background: rgba(11,18,32,.76);
  color: var(--deep);
  font-weight: 650;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.trust-bar div {
  padding: 1.2rem;
  background: var(--deep);
  color: white;
}

.trust-bar p {
  color: rgba(255,255,255,.74);
  margin: .4rem 0 0;
  font-size: .92rem;
}

.faq-list {
  max-width: 900px;
  margin-top: 2rem;
}

details {
  border-top: 1px solid var(--line);
  padding: 1.1rem 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 750;
}

details p {
  color: var(--muted);
  margin-bottom: 0;
}

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
}

.price-card h2 {
  font-size: 1.55rem;
}

.price-card ul {
  padding-left: 1.1rem;
  color: var(--muted);
}

.price-card .button {
  margin-top: auto;
}

.text-stack {
  display: grid;
  gap: 2rem;
}

.text-stack article {
  max-width: 850px;
}

.form-section {
  padding-top: 2rem;
}

.lead-form {
  width: 100%;
  max-width: 900px;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field-grid,
.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: .35rem;
  color: var(--deep);
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #08111f;
  color: var(--ink);
  padding: .8rem .85rem;
  font: inherit;
}

textarea {
  resize: vertical;
}

.lead-form > label,
.check-grid {
  margin-top: 1rem;
}

.consent {
  grid-template-columns: 22px 1fr;
  align-items: start;
  font-weight: 500;
  color: var(--muted);
}

.consent input,
.check-grid input {
  width: auto;
  margin-top: .3rem;
}

.check-grid label {
  display: flex;
  flex-direction: row;
  gap: .55rem;
  font-weight: 600;
}

.hp {
  position: absolute;
  left: -9999px;
}

.lead-form button {
  margin-top: 1.3rem;
}

.article {
  max-width: 850px;
}

.article h1 {
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  margin-top: 1rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.5rem;
  color: var(--accent);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.cta-band {
  background: var(--deep);
  color: white;
  border-radius: var(--radius);
  padding: 3rem;
  margin-bottom: 4rem;
}

.cta-band p {
  max-width: 760px;
  color: rgba(255,255,255,.76);
}

.site-footer {
  background: #020713;
  color: white;
}

.footer-cta,
.footer-grid,
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer-cta {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.footer-cta h2 {
  max-width: 820px;
}

.footer-cta p {
  max-width: 760px;
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-grid h2 {
  font-size: .9rem;
  margin-bottom: .8rem;
}

.footer-grid p,
.footer-bottom {
  color: rgba(255,255,255,.68);
}

.footer-grid a {
  display: block;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  margin: .45rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.12);
}

.message-page {
  min-height: 100vh;
  display: grid;
  align-content: center;
}

.message-page h1 {
  font-size: clamp(2.4rem, 7vw, 5.8rem);
}

@media (max-width: 1060px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pricing-grid,
  .article-grid,
  .trust-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .method-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .header-inner {
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    inset: 68px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: .5rem 0;
  }

  .hero,
  .page-hero,
  .section,
  .trust-bar,
  .article,
  .message-page {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4rem;
    background-position: center bottom;
    background-size: 100% auto;
    padding-bottom: 16rem;
  }

  .hero-panel span {
    padding: .9rem 1rem;
  }

  .field-grid,
  .check-grid,
  .service-grid,
  .service-grid.three,
  .pricing-grid,
  .article-grid,
  .trust-bar,
  .method-list,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 2rem 1.2rem;
    border-radius: 0;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2rem;
  }

  .brand-word {
    font-size: .9rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .lead-form {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.journey-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.3rem;
}

.audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.journey-grid article,
.audience-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(11,18,32,.82);
}

.journey-grid span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-weight: 800;
  margin-bottom: .8rem;
}

.journey-grid p,
.audience-grid p {
  color: var(--muted);
  font-size: .94rem;
}

@media (max-width: 1060px) {
  .journey-grid,
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .journey-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }
}
.form-note {
  margin: 1rem 0 1.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.form-note h2 {
  font-size: 1.25rem;
}

.form-note p {
  margin: .45rem 0 0;
  color: var(--muted);
}
.orientation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.orientation-grid article {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11,18,32,.82);
}

.orientation-grid strong {
  display: block;
  margin: .8rem 0;
  color: var(--accent-2);
  font-size: 1.15rem;
}

.orientation-grid p {
  color: var(--muted);
}

@media (max-width: 1060px) {
  .orientation-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .orientation-grid {
    grid-template-columns: 1fr;
  }
}
.workflow-line,
.care-boundary-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.2rem;
}

.care-boundary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workflow-line article,
.care-boundary-grid article {
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11,18,32,.82);
}

.workflow-line span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  font-weight: 800;
  margin-bottom: .8rem;
}

.workflow-line p,
.care-boundary-grid p {
  color: var(--muted);
  font-size: .94rem;
}

@media (max-width: 1060px) {
  .workflow-line,
  .care-boundary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .workflow-line,
  .care-boundary-grid {
    grid-template-columns: 1fr;
  }
}.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(0, 200, 255, .28);
}

.brand-word {
  color: #f7fbff;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.brand-word span {
  color: #00c8ff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,200,255,.8), transparent);
}

.hero {
  position: relative;
}
/* Dreamseven logo color system refinement */
body::before {
  background:
    radial-gradient(circle at 8% 18%, rgba(0,200,255,.20), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(20,125,255,.18), transparent 28%),
    linear-gradient(135deg, rgba(4,10,24,.96), rgba(5,9,20,.99));
}

.hero {
  background: linear-gradient(90deg, rgba(5,9,20,.98) 0%, rgba(5,9,20,.86) 48%, rgba(5,9,20,.36) 100%), url('/assets/img/dreamseven-logo-banner.jpg') right center / min(52vw, 640px) auto no-repeat;
  border-bottom-color: rgba(0,200,255,.16);
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.brand-word span,
.text-link {
  color: var(--accent);
}

.service-card,
.article-card,
.price-card,
.journey-grid article,
.audience-grid article,
.orientation-grid article,
.workflow-line article,
.care-boundary-grid article,
.lead-form,
.form-note {
  background: rgba(11,18,32,.86);
  border-color: rgba(0,200,255,.16);
}

input,
select,
textarea {
  background: #08111f;
  color: var(--ink);
  border-color: rgba(0,200,255,.22);
}
.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.entry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.entry-grid .text-link {
  margin-top: .9rem;
}

@media (max-width: 1060px) {
  .entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .entry-grid {
    grid-template-columns: 1fr;
  }
}
.go-live-grid ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.go-live-grid li + li {
  margin-top: .55rem;
}
.support-priority-grid article span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  color: var(--accent-2);
  font-weight: 800;
}

.support-priority-grid ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.support-priority-grid li + li {
  margin-top: .55rem;
}

.support-priority-grid strong {
  margin-top: 1.1rem;
}
/* Dreamseven light content refinement: header and hero stay dark, content becomes brighter. */
:root {
  --content-bg: #f3f7fb;
  --content-panel: #ffffff;
  --content-soft: #eaf3fb;
  --content-ink: #07111f;
  --content-muted: #536479;
  --content-line: #d5e3ef;
}

body {
  background: var(--content-bg);
  color: var(--content-ink);
}

body::before {
  background:
    linear-gradient(180deg, rgba(5,9,20,.98) 0, rgba(5,9,20,.98) 560px, rgba(243,247,251,.96) 561px, rgba(243,247,251,1) 100%),
    radial-gradient(circle at 18% 720px, rgba(0,200,255,.10), transparent 26%),
    radial-gradient(circle at 85% 860px, rgba(20,125,255,.08), transparent 28%);
}

.site-header,
.hero,
.page-hero {
  color: #f7fbff;
}

.page-hero {
  max-width: none;
  background: linear-gradient(135deg, #050914 0%, #07152a 62%, #06285a 100%);
  border-bottom: 1px solid rgba(0,200,255,.18);
}

.page-hero > * {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

main > .section:not(.page-hero):not(.hero),
.article,
.message-page {
  color: var(--content-ink);
}

main > .section:not(.muted):not(.cta-band):not(.config-hero):not(.mfk-pro):not(.config-seo-section),
.article,
.message-page {
  background: var(--content-bg);
}

.muted,
.config-orientation-section {
  background: var(--content-soft);
  color: var(--content-ink);
}

.lead,
.section-lead,
.rich-text p,
.text-stack p,
.legal-copy p,
.article p,
.trust-line,
.fineprint,
details p,
.service-card p,
.article-card p,
.price-card p,
.price-card ul,
.journey-grid p,
.audience-grid p,
.orientation-grid p,
.workflow-line p,
.care-boundary-grid p,
.form-note p,
.support-priority-grid ul {
  color: var(--content-muted);
}

.service-card,
.article-card,
.price-card,
.journey-grid article,
.audience-grid article,
.orientation-grid article,
.workflow-line article,
.care-boundary-grid article,
.lead-form,
.form-note {
  background: var(--content-panel);
  border-color: var(--content-line);
  color: var(--content-ink);
  box-shadow: 0 16px 42px rgba(11, 36, 66, .08);
}

.service-card:hover,
.article-card:hover {
  background: #f8fcff;
  border-color: rgba(0, 150, 210, .38);
}

label,
summary,
.service-card h2,
.service-card h3,
.article-card h2,
.article-card h3,
.price-card h2,
.price-card h3,
.journey-grid h3,
.audience-grid h3,
.orientation-grid h3,
.workflow-line h3,
.care-boundary-grid h3 {
  color: var(--content-ink);
}

input,
select,
textarea {
  background: #ffffff;
  color: var(--content-ink);
  border-color: #c9d9e8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 150, 210, .72);
  box-shadow: 0 0 0 3px rgba(0, 200, 255, .14);
  outline: none;
}

.pill-list span {
  background: #ffffff;
  color: var(--content-ink);
  border-color: var(--content-line);
}

.trust-bar div,
.workflow-line span {
  background: #08224a;
  color: #ffffff;
}

.trust-bar p {
  color: rgba(255,255,255,.78);
}

.cta-band {
  background: linear-gradient(135deg, #06132a 0%, #082f66 100%);
  color: #ffffff;
  box-shadow: 0 18px 54px rgba(8,47,102,.22);
}

.cta-band p {
  color: rgba(255,255,255,.78);
}

.site-footer {
  background: #eef5fb;
  color: var(--content-ink);
  border-top: 1px solid var(--content-line);
}

.footer-grid {
  border-top-color: var(--content-line);
}

.footer-bottom {
  border-top-color: var(--content-line);
}

.footer-cta p,
.footer-grid p,
.footer-bottom,
.footer-grid a {
  color: var(--content-muted);
}

.footer-grid a:hover {
  color: var(--accent-2);
}

.button.ghost {
  color: #08224a;
  border-color: rgba(8,34,74,.28);
  background: rgba(255,255,255,.66);
}

.button.ghost:hover {
  background: rgba(0, 200, 255, .14);
}

.hero .button.ghost,
.page-hero .button.ghost,
.site-header .button.ghost,
.cta-band .button.ghost {
  color: #f7fbff;
  border-color: rgba(255,255,255,.34);
  background: transparent;
}

.hero .lead,
.page-hero .lead,
.hero .section-lead,
.page-hero .section-lead,
.hero .trust-line,
.page-hero .trust-line {
  color: rgba(247,251,255,.76);
}
/* Dreamseven navigation dropdown */
.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-group-trigger::after {
  content: "";
  display: inline-block;
  width: .42rem;
  height: .42rem;
  margin-left: .4rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-.15rem) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + .8rem);
  left: 50%;
  min-width: 230px;
  display: grid;
  gap: .15rem;
  padding: .7rem;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(15,23,42,.12);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(5,9,20,.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown a {
  color: #273347;
  padding: .58rem .68rem;
  border-radius: 6px;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  color: #005fba;
  background: #edf7ff;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

@media (max-width: 860px) {
  .nav-group {
    display: grid;
    gap: .35rem;
  }

  .nav-group-trigger::after {
    display: none;
  }

  .nav-dropdown {
    position: static;
    min-width: 0;
    display: grid;
    gap: .15rem;
    padding: .2rem 0 .3rem .85rem;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown a {
    padding: .38rem 0;
    color: #4b607a;
  }

  .nav-dropdown a:hover,
  .nav-dropdown a:focus-visible {
    background: transparent;
    color: #005fba;
  }
}
.main-nav a.is-active {
  color: var(--accent);
}

/* Dreamseven full width hero refinement */
.hero,
.page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero {
  min-height: min(760px, calc(100vh - 78px));
  padding: clamp(5rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2)) clamp(4rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(280px, .52fr);
  gap: clamp(2.5rem, 5vw, 5.5rem);
  background:
    linear-gradient(90deg, rgba(5,9,20,.98) 0%, rgba(5,9,20,.9) 43%, rgba(5,9,20,.56) 68%, rgba(5,9,20,.28) 100%),
    url('/assets/img/dreamseven-logo-banner.jpg') right center / min(48vw, 760px) auto no-repeat,
    #050914;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(0,200,255,.16), transparent 34%),
    linear-gradient(90deg, transparent 0 55%, rgba(0,102,255,.16) 100%);
  pointer-events: none;
}

.hero-copy {
  max-width: 760px;
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.55rem, 5.4vw, 5.85rem);
  line-height: .98;
}

.hero .lead,
.page-hero .lead {
  max-width: 790px;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
}

.hero-panel {
  align-self: stretch;
  min-height: 360px;
  align-content: center;
  background: linear-gradient(180deg, rgba(255,255,255,.13), rgba(255,255,255,.055));
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 26px 70px rgba(0,0,0,.32);
}

.page-hero {
  min-height: clamp(360px, 42vw, 560px);
  display: grid;
  align-content: center;
  padding: clamp(5.2rem, 8vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2)) clamp(4.2rem, 7vw, 6rem);
  background:
    linear-gradient(90deg, rgba(5,9,20,.98) 0%, rgba(5,9,20,.9) 46%, rgba(5,9,20,.58) 72%, rgba(5,9,20,.35) 100%),
    url('/assets/img/dreamseven-logo-banner.jpg') right center / min(42vw, 620px) auto no-repeat,
    #050914;
}

.page-hero > * {
  width: min(var(--max), 100%);
  max-width: 980px;
  margin-left: 0;
  margin-right: 0;
}

.page-hero .eyebrow,
.page-hero h1,
.page-hero .lead {
  position: relative;
}

@media (min-width: 1180px) {
  .page-hero .lead {
    max-width: 760px;
  }
}

@media (max-width: 860px) {
  .hero,
  .page-hero {
    min-height: auto;
    padding: 5rem 1.25rem 4rem;
    background:
      linear-gradient(180deg, rgba(5,9,20,.96) 0%, rgba(5,9,20,.9) 62%, rgba(5,9,20,.76) 100%),
      url('/assets/img/dreamseven-logo-banner.jpg') right 1.2rem top 1.4rem / min(72vw, 380px) auto no-repeat,
      #050914;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-panel {
    min-height: 0;
    padding: .65rem;
    border-radius: 14px;
  }

  .hero-panel span {
    padding: .78rem .9rem;
    font-size: clamp(1.05rem, 6vw, 1.45rem);
  }

  .hero-actions {
    gap: .65rem;
    margin-top: 1.45rem;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .trust-line,
  .fineprint {
    margin-top: 1rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 4.2rem 1rem 3rem;
    gap: 1.25rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.05rem, 10vw, 2.7rem);
    line-height: 1.03;
  }

  .hero .lead,
  .page-hero .lead {
    margin-top: 1rem;
    font-size: 1rem;
  }

  .hero-panel {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
  }

  .hero-panel span {
    flex: 1 1 calc(50% - .45rem);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 10px;
    padding: .58rem .65rem;
    font-size: .94rem;
    text-align: center;
  }

  .trust-line,
  .fineprint {
    font-size: .9rem;
  }
}
/* Dreamseven system map */
.system-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fc 100%);
}

.system-head {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.system-head .section-lead {
  margin-top: 0;
}

.system-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .8rem;
  margin-top: clamp(2rem, 4vw, 3.4rem);
}

.system-map::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 39px;
  height: 2px;
  background: linear-gradient(90deg, rgba(0,200,255,.08), rgba(20,125,255,.55), rgba(0,200,255,.08));
}

.system-map article {
  position: relative;
  min-height: 260px;
  padding: 1.25rem;
  background: #ffffff;
  border: 1px solid #d8e5f0;
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(11,36,66,.07);
}

.system-map span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  border-radius: 999px;
  background: #061225;
  color: #00c8ff;
  font-weight: 800;
}

.system-map h3 {
  font-size: 1.02rem;
  color: #07111f;
}

.system-map p {
  color: #536479;
  line-height: 1.65;
}

.system-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: 1rem 1.15rem;
  background: #061225;
  color: #f7fbff;
  border-radius: 8px;
}

.system-note p {
  margin: 0;
  color: rgba(247,251,255,.74);
}

@media (max-width: 980px) {
  .system-head,
  .system-note {
    grid-template-columns: 1fr;
  }

  .system-head .section-lead {
    margin-top: 1rem;
  }

  .system-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-map::before {
    display: none;
  }
}

@media (max-width: 560px) {
  .system-map {
    grid-template-columns: 1fr;
  }

  .system-map {
    gap: .65rem;
  }

  .system-map article {
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: .8rem;
    align-items: start;
    padding: .9rem;
  }

  .system-map span {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
    grid-row: span 2;
  }

  .system-map h3 {
    font-size: .98rem;
  }

  .system-map p {
    margin: .35rem 0 0;
    line-height: 1.5;
  }

  .system-note {
    padding: .9rem;
  }

  .system-note .button {
    width: 100%;
    justify-content: center;
  }
}
/* Dreamseven legal pages */
.legal-panel {
  max-width: 980px;
}

.legal-panel h2 {
  margin-top: 2.1rem;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.legal-panel a {
  color: #005fba;
  font-weight: 700;
}

.legal-alert {
  padding: 1rem 1.15rem;
  margin-bottom: 2rem;
  border: 1px solid #c9d9e8;
  border-left: 4px solid #00a9e8;
  border-radius: 8px;
  background: #f4f9fd;
}

.legal-alert strong {
  display: block;
  color: #07111f;
  margin-bottom: .35rem;
}

.legal-alert p {
  margin: 0;
}

.legal-list {
  display: grid;
  gap: .7rem;
  margin: 1.2rem 0 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 1rem;
  padding: .85rem 0;
  border-bottom: 1px solid #dbe6ef;
}

.legal-list dt {
  font-weight: 800;
  color: #07111f;
}

.legal-list dd {
  margin: 0;
  color: #536479;
}

@media (max-width: 640px) {
  .legal-list div {
    grid-template-columns: 1fr;
    gap: .25rem;
  }
}
/* Dreamseven knowledge article refinement */
.article-rich {
  max-width: 960px;
}

.article-rich .eyebrow {
  margin-top: 2rem;
}

.article-intro {
  margin-top: 1.6rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid #00c8ff;
  background: #f4f9fd;
  border-radius: 8px;
}

.article-section {
  margin-top: 3rem;
}

.article-section h2 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
}

.article-checkgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.25rem;
}

.article-checkgrid div {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: .75rem;
  align-items: start;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #d8e5f0;
  border-radius: 8px;
}

.article-checkgrid span {
  width: 10px;
  height: 10px;
  margin-top: .55rem;
  border-radius: 999px;
  background: #00c8ff;
  box-shadow: 0 0 0 5px rgba(0,200,255,.12);
}

.article-checkgrid p {
  margin: 0;
}

.article-split-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
}

.article-split-note > div,
.muted-callout {
  padding: 1.35rem;
  border-radius: 8px;
  border: 1px solid #d8e5f0;
  background: #ffffff;
}

.article-split-note ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #536479;
  line-height: 1.75;
}

.muted-callout {
  background: #061225;
  color: #f7fbff;
}

.muted-callout h2,
.muted-callout p {
  color: inherit;
}

.muted-callout p {
  color: rgba(247,251,255,.78);
}

.muted-callout .button.ghost {
  color: #f7fbff;
  border-color: rgba(255,255,255,.26);
}

@media (max-width: 760px) {
  .article-checkgrid,
  .article-split-note {
    grid-template-columns: 1fr;
  }

  .article-section {
    margin-top: 2.2rem;
  }
}
.article-principles > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.15rem;
}

.article-principles article {
  padding: 1rem;
  border-radius: 8px;
  background: #f8fcff;
  border: 1px solid #d8e5f0;
}

.article-principles h3 {
  font-size: 1rem;
  color: #07111f;
}

.article-principles p {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .article-principles > div {
    grid-template-columns: 1fr;
  }
}
/* Dreamseven entry advisor interaction */
.entry-advisor-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: end;
}

.entry-advisor-head .section-lead {
  margin-top: 0;
}

.entry-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 2rem;
}

.entry-choice {
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: .9rem;
  padding: 1.05rem;
  text-align: left;
  border: 1px solid #d8e5f0;
  border-radius: 8px;
  background: #ffffff;
  color: #07111f;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(11,36,66,.065);
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.entry-choice:hover,
.entry-choice:focus-visible,
.entry-choice.is-active {
  transform: translateY(-2px);
  border-color: rgba(0,150,210,.55);
  background: #f8fcff;
  outline: none;
}

.entry-choice span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eaf3fb;
  color: #147dff;
  font-size: .82rem;
  font-weight: 800;
}

.entry-choice strong {
  line-height: 1.25;
}

.entry-result {
  display: grid;
  gap: .85rem;
  margin-top: 1rem;
  padding: 1.35rem;
  border-radius: 8px;
  background: #061225;
  color: #f7fbff;
}

.entry-result h3 {
  font-size: clamp(1.35rem, 2.5vw, 2.25rem);
}

.entry-result p {
  max-width: 920px;
  margin: 0;
  color: rgba(247,251,255,.78);
}

.entry-result strong {
  color: #f7fbff;
}

.entry-result .button.ghost {
  color: #f7fbff;
  border-color: rgba(255,255,255,.28);
}

@media (max-width: 980px) {
  .entry-advisor-head,
  .entry-choice-grid {
    grid-template-columns: 1fr;
  }

  .entry-advisor-head .section-lead {
    margin-top: 1rem;
  }

  .entry-choice {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
  }
}
/* Dreamseven softer visual layer */
:root {
  --radius: 14px;
  --shadow: 0 18px 48px rgba(12, 33, 64, .10);
  --line: rgba(94, 123, 153, .20);
}

.button,
.nav-toggle,
.service-card,
.article-card,
.price-card,
.journey-grid article,
.audience-grid article,
.orientation-grid article,
.workflow-line article,
.care-boundary-grid article,
.trust-bar,
.lead-form,
.faq-list details,
.system-map article,
.system-note,
.legal-alert,
.article-intro,
.article-checkgrid div,
.article-split-note > div,
.article-principles article,
.muted-callout,
.entry-choice,
.entry-result,
.hero-panel,
.cta-band {
  border-radius: 16px;
}

.service-card,
.article-card,
.price-card,
.journey-grid article,
.audience-grid article,
.orientation-grid article,
.workflow-line article,
.care-boundary-grid article,
.system-map article,
.article-checkgrid div,
.article-split-note > div,
.article-principles article,
.entry-choice,
.lead-form,
.faq-list details {
  border-color: rgba(112, 141, 170, .22);
  box-shadow: 0 14px 34px rgba(20, 45, 78, .065);
}

.service-card:hover,
.article-card:hover,
.entry-choice:hover,
.entry-choice:focus-visible,
.entry-choice.is-active {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(20, 45, 78, .10);
}

.hero,
.page-hero {
  background-color: #071225;
}

.hero-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.075));
  border-color: rgba(255,255,255,.24);
  box-shadow: 0 22px 54px rgba(0, 20, 48, .26);
}

.hero-panel span {
  border-bottom-color: rgba(255,255,255,.11);
}

.system-note,
.entry-result,
.muted-callout,
.cta-band {
  background: linear-gradient(145deg, #07162a 0%, #0a2542 100%);
  box-shadow: 0 20px 48px rgba(4, 18, 39, .18);
}

.system-map span,
.journey-grid span {
  background: linear-gradient(145deg, #092449, #0d376f);
}

.legal-alert,
.article-intro {
  background: linear-gradient(135deg, #f7fbff 0%, #eef7fc 100%);
  border-color: rgba(0, 169, 232, .24);
}

.article-checkgrid span {
  box-shadow: 0 0 0 7px rgba(0, 200, 255, .10);
}

.nav-dropdown {
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(5, 18, 38, .14);
}

@media (max-width: 520px) {
  .hero-panel,
  .hero-panel span,
  .system-map article,
  .entry-choice,
  .entry-result,
  .article-principles article,
  .article-checkgrid div {
    border-radius: 14px;
  }
}

/* Dreamseven project blueprints */
.project-blueprints {
  background:
    linear-gradient(180deg, #f7fbff 0%, #ffffff 46%, #eef6fb 100%);
}

.blueprint-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.blueprint-head .section-lead {
  margin-top: 0;
}

.blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3.4rem);
}

.blueprint-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(1.1rem, 2.4vw, 1.55rem);
  border: 1px solid #d6e7f2;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 22px 60px rgba(11, 36, 66, .08);
}

.blueprint-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #00c8ff, #147dff);
}

.blueprint-card-head span {
  display: inline-flex;
  margin-bottom: .85rem;
  color: #0077c8;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.blueprint-card h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  color: #07111f;
}

.blueprint-card dl {
  display: grid;
  gap: .95rem;
  margin: 1.25rem 0 1.35rem;
}

.blueprint-card dl div {
  padding-top: .95rem;
  border-top: 1px solid #e2edf5;
}

.blueprint-card dt {
  margin-bottom: .25rem;
  color: #07111f;
  font-weight: 800;
}

.blueprint-card dd {
  margin: 0;
  color: #536479;
  line-height: 1.62;
}

.blueprint-card .text-link {
  margin-top: auto;
}

@media (max-width: 980px) {
  .blueprint-head,
  .blueprint-grid {
    grid-template-columns: 1fr;
  }

  .blueprint-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .blueprint-card {
    border-radius: 14px;
    padding: 1rem;
  }

  .blueprint-card dl {
    gap: .75rem;
    margin: 1rem 0 1.15rem;
  }

  .blueprint-card dl div {
    padding-top: .75rem;
  }
}

/* Dreamseven entry matrix */
.entry-matrix-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
}

.entry-matrix-head {
  display: grid;
  grid-template-columns: minmax(0, .75fr) minmax(300px, .75fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.entry-matrix-head .section-lead {
  margin-top: 0;
}

.entry-matrix-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .8rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.entry-matrix-card {
  position: relative;
  min-height: 238px;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  padding: 1rem;
  border: 1px solid #d7e7f2;
  border-radius: 16px;
  background: rgba(255,255,255,.9);
  color: #07111f;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(11, 36, 66, .07);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.entry-matrix-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 200, 255, .55);
  box-shadow: 0 24px 66px rgba(20, 125, 255, .12);
}

.entry-matrix-card span {
  color: #0077c8;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.entry-matrix-card h3 {
  font-size: 1.08rem;
  color: #07111f;
}

.entry-matrix-card p {
  margin: 0;
  color: #536479;
  line-height: 1.55;
}

.entry-matrix-card strong {
  margin-top: auto;
  color: #10243d;
  font-size: .93rem;
  line-height: 1.48;
}

.entry-matrix-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 1rem;
  padding: .95rem 1rem;
  border: 1px solid #d7e7f2;
  border-radius: 16px;
  background: #f8fbfe;
}

.entry-matrix-note p {
  margin: 0;
  color: #536479;
}

@media (max-width: 1180px) {
  .entry-matrix-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .entry-matrix-head,
  .entry-matrix-grid,
  .entry-matrix-note {
    grid-template-columns: 1fr;
  }

  .entry-matrix-head .section-lead {
    margin-top: .8rem;
  }

  .entry-matrix-note {
    display: grid;
  }
}

@media (max-width: 560px) {
  .entry-matrix-grid {
    gap: .65rem;
  }

  .entry-matrix-card {
    min-height: 0;
    border-radius: 14px;
    padding: .95rem;
  }
}

/* Dreamseven offer logic */
.offer-logic-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
}

.offer-logic-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .7fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.offer-logic-head .section-lead {
  margin-top: 0;
}

.offer-factor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .8rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.offer-factor-grid article {
  min-height: 210px;
  padding: 1rem;
  border: 1px solid #d7e7f2;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 52px rgba(11,36,66,.07);
}

.offer-factor-grid h3,
.offer-boundary-grid h3 {
  color: #07111f;
  font-size: 1.05rem;
}

.offer-factor-grid p,
.offer-boundary-grid p {
  margin: .75rem 0 0;
  color: #536479;
  line-height: 1.58;
}

.offer-boundary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

.offer-boundary-grid article {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border: 1px solid #d4e5f1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 54px rgba(11,36,66,.08);
}

.offer-boundary-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #00c8ff, #147dff);
}

.offer-boundary-section .hero-actions {
  margin-top: 1.4rem;
}

@media (max-width: 1180px) {
  .offer-factor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .offer-logic-head,
  .offer-boundary-grid {
    grid-template-columns: 1fr;
  }

  .offer-logic-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 640px) {
  .offer-factor-grid {
    grid-template-columns: 1fr;
    gap: .65rem;
  }

  .offer-factor-grid article,
  .offer-boundary-grid article {
    min-height: 0;
    border-radius: 14px;
    padding: 1rem;
  }
}

/* Dreamseven onboarding panel */
.onboarding-panel-section {
  background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

.onboarding-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.onboarding-head .section-lead {
  margin-top: 0;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .62fr);
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.onboarding-steps {
  display: grid;
  gap: .75rem;
}

.onboarding-steps article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1rem;
  border: 1px solid #d7e7f2;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 46px rgba(11,36,66,.06);
}

.onboarding-steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #061225;
  color: #00c8ff;
  font-weight: 800;
}

.onboarding-steps h3,
.briefing-card h3 {
  color: #07111f;
  font-size: 1.08rem;
}

.onboarding-steps p {
  margin: .35rem 0 0;
  color: #536479;
}

.briefing-card {
  padding: 1.2rem;
  border: 1px solid #d4e5f1;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(11,36,66,.08);
}

.briefing-group {
  margin-top: 1rem;
  padding-top: .95rem;
  border-top: 1px solid #e1ecf4;
}

.briefing-group strong {
  color: #07111f;
}

.briefing-group ul {
  margin: .55rem 0 0;
  padding-left: 1.1rem;
  color: #536479;
}

.briefing-group li + li {
  margin-top: .25rem;
}

@media (max-width: 920px) {
  .onboarding-head,
  .onboarding-grid {
    grid-template-columns: 1fr;
  }

  .onboarding-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .onboarding-steps article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: .75rem;
    border-radius: 14px;
    padding: .9rem;
  }

  .onboarding-steps span {
    width: 36px;
    height: 36px;
  }

  .briefing-card {
    border-radius: 14px;
    padding: 1rem;
  }
}

/* Dreamseven quality standards */
.quality-standards-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.quality-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.quality-head .section-lead {
  margin-top: 0;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.quality-grid article {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  border: 1px solid #d5e6f2;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 58px rgba(11,36,66,.08);
}

.quality-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #00c8ff, #147dff);
}

.quality-grid h3 {
  color: #07111f;
  font-size: 1.12rem;
}

.quality-grid p {
  margin: .75rem 0 0;
  color: #536479;
  line-height: 1.6;
}

.quality-grid ul {
  display: grid;
  gap: .4rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.quality-grid li {
  position: relative;
  padding-left: 1.1rem;
  color: #10243d;
  font-weight: 700;
  font-size: .92rem;
}

.quality-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00a9e8;
}

@media (max-width: 1080px) {
  .quality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .quality-head,
  .quality-grid {
    grid-template-columns: 1fr;
  }

  .quality-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .quality-grid {
    gap: .65rem;
  }

  .quality-grid article {
    border-radius: 14px;
    padding: 1rem;
  }
}

/* Dreamseven result signals */
.result-signals-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 55%, #f1f7fc 100%);
}

.result-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.result-head .section-lead {
  margin-top: 0;
}

.result-signal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.result-signal-grid article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #d6e7f2;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 58px rgba(11,36,66,.08);
}

.result-signal-grid h3 {
  color: #07111f;
  font-size: 1.08rem;
}

.result-signal-grid p {
  margin: .75rem 0 1rem;
  color: #536479;
  line-height: 1.58;
}

.result-signal-grid article div {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
}

.result-signal-grid span {
  display: inline-flex;
  padding: .36rem .5rem;
  border: 1px solid #d8e8f3;
  border-radius: 999px;
  background: #f4f9fd;
  color: #10243d;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .result-signal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .result-head,
  .result-signal-grid {
    grid-template-columns: 1fr;
  }

  .result-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .result-signal-grid {
    gap: .65rem;
  }

  .result-signal-grid article {
    min-height: 0;
    border-radius: 14px;
    padding: 1rem;
  }
}

/* Dreamseven fit criteria */
.fit-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.fit-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.fit-head .section-lead {
  margin-top: 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .88fr);
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.fit-column {
  padding: 1.25rem;
  border: 1px solid #d6e7f2;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 20px 58px rgba(11,36,66,.08);
}

.fit-column > .eyebrow {
  margin-bottom: 1rem;
}

.fit-column div {
  padding: 1rem 0;
  border-top: 1px solid #e2edf5;
}

.fit-column div:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.fit-column h3 {
  color: #07111f;
  font-size: 1.08rem;
}

.fit-column p {
  margin: .45rem 0 0;
  color: #536479;
}

.fit-good {
  border-top: 5px solid #00c8ff;
}

.fit-bad {
  border-top: 5px solid #8fb3ca;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbfe 100%);
}

.fit-bad .eyebrow {
  color: #5f7f95;
}

@media (max-width: 820px) {
  .fit-head,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .fit-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .fit-column {
    border-radius: 14px;
    padding: 1rem;
  }

  .fit-column div {
    padding: .85rem 0;
  }
}

/* Dreamseven knowledge themes */
.knowledge-themes-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8fc 100%);
}

.knowledge-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.knowledge-head .section-lead {
  margin-top: 0;
}

.knowledge-theme-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: .85rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.knowledge-theme-grid article {
  min-height: 275px;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #d6e7f2;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 58px rgba(11,36,66,.08);
}

.knowledge-theme-grid h3 {
  color: #07111f;
  font-size: 1.08rem;
}

.knowledge-theme-grid p {
  margin: .75rem 0 1rem;
  color: #536479;
}

.knowledge-theme-grid article div {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: auto;
}

.knowledge-theme-grid span {
  display: inline-flex;
  padding: .35rem .5rem;
  border: 1px solid #d8e8f3;
  border-radius: 999px;
  background: #f5f9fd;
  color: #10243d;
  font-size: .8rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 1180px) {
  .knowledge-theme-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .knowledge-head,
  .knowledge-theme-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .knowledge-theme-grid {
    gap: .65rem;
  }

  .knowledge-theme-grid article {
    min-height: 0;
    border-radius: 14px;
    padding: 1rem;
  }
}

/* Dreamseven project deliverables */
.deliverables-section {
  background: linear-gradient(180deg, #ffffff 0%, #f4f9fd 100%);
}

.deliverables-head {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, .72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
}

.deliverables-head .section-lead {
  margin-top: 0;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.deliverables-grid article {
  display: flex;
  flex-direction: column;
  min-height: 270px;
  padding: 1.15rem;
  border: 1px solid #d6e7f2;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 58px rgba(11,36,66,.08);
}

.deliverables-grid h3 {
  color: #07111f;
  font-size: 1.1rem;
}

.deliverables-grid p {
  margin: .75rem 0 1rem;
  color: #536479;
}

.deliverables-grid ul {
  display: grid;
  gap: .4rem;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.deliverables-grid li {
  position: relative;
  padding-left: 1.05rem;
  color: #10243d;
  font-weight: 800;
  font-size: .9rem;
}

.deliverables-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #00a9e8;
}

@media (max-width: 1080px) {
  .deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .deliverables-head,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .deliverables-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .deliverables-grid {
    gap: .65rem;
  }

  .deliverables-grid article {
    min-height: 0;
    border-radius: 14px;
    padding: 1rem;
  }
}

/* Dreamseven business use cases */
.use-case-section {
  background: linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
}

.use-case-head {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, .72fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
}

.use-case-head .section-lead {
  margin-top: 0;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.use-case-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 1.2rem;
  border: 1px solid #d8e8f2;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 54px rgba(9,42,76,.075);
  color: inherit;
  text-decoration: none;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.use-case-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,169,232,.45);
  box-shadow: 0 24px 70px rgba(9,42,76,.11);
}

.use-case-card h3 {
  color: #07111f;
  font-size: 1.12rem;
}

.use-case-card p {
  margin: .8rem 0 1rem;
  color: #536479;
}

.use-case-card strong {
  margin-top: auto;
  color: #0d2a48;
  font-size: .92rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .use-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .use-case-head,
  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-head .section-lead {
    margin-top: .8rem;
  }
}

@media (max-width: 560px) {
  .use-case-grid {
    gap: .65rem;
  }

  .use-case-card {
    min-height: 0;
    border-radius: 14px;
    padding: 1rem;
  }
}
/* Dreamseven MediaFlex skin override */
:root {
  --bg: #f6fafc;
  --paper: #ffffff;
  --ink: #07111f;
  --muted: #657386;
  --line: #dbe7f0;
  --accent: #00a9e8;
  --accent-2: #147dff;
  --deep: #050914;
  --soft: #eef6fb;
  --danger: #ff5c7a;
  --radius: 12px;
  --max: 1480px;
  --shadow: 0 22px 70px rgba(9, 42, 76, .10);
}

html {
  overflow-x: clip;
  scroll-padding-top: 112px;
}

body {
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

body::before {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 251, 253, .96);
  border-bottom: 1px solid rgba(15, 40, 68, .10);
  color: var(--ink);
  box-shadow: 0 8px 26px rgba(9, 31, 52, .045);
  backdrop-filter: blur(18px);
}

.header-inner {
  max-width: 1480px;
  min-height: 82px;
  padding: 0 48px;
  gap: 30px;
}

.brand {
  gap: .85rem;
  color: #07111f;
}

.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  box-shadow: 0 14px 30px rgba(0, 43, 91, .14);
}

.brand-word {
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: none;
  color: #07111f;
}

.brand-word span {
  color: var(--accent);
}

.main-nav {
  gap: 22px;
  margin-left: auto;
  font-size: .8rem;
}

.main-nav a,
.nav-group-trigger {
  position: relative;
  color: #192536;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
  padding: 29px 0;
}

.main-nav a::after,
.nav-group-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"],
.nav-group-trigger:hover {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after,
.nav-group-trigger:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  border: 1px solid #dce8f1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(8, 34, 62, .14);
}

.nav-dropdown a {
  padding: 12px 14px;
  color: #132238;
}

.button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 850;
  box-shadow: 0 14px 32px rgba(0, 169, 232, .24);
}

.button:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, #08b8f5, #1e83ff);
  box-shadow: 0 18px 40px rgba(0, 105, 210, .22);
}

.button.ghost {
  background: #101826;
  border-color: #101826;
  color: #fff;
  box-shadow: 0 10px 26px rgba(6, 14, 27, .12);
}

.button.ghost:hover {
  background: #172235;
}

.hero,
.page-hero,
.section,
.trust-bar,
.article,
.message-page {
  max-width: var(--max);
  padding-left: 48px;
  padding-right: 48px;
}

.section,
.article,
.message-page {
  padding-top: 92px;
  padding-bottom: 92px;
}

.hero {
  position: relative;
  max-width: none;
  min-height: min(760px, calc(100svh - 82px));
  padding: 0 max(48px, calc((100vw - 1480px) / 2 + 48px));
  border-bottom: 0;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 8, 19, .96) 0%, rgba(3, 8, 19, .86) 42%, rgba(3, 8, 19, .48) 72%, rgba(3, 8, 19, .74) 100%),
    url('/assets/img/dreamseven-logo-banner.jpg') right center / min(54vw, 720px) auto no-repeat,
    radial-gradient(circle at 78% 24%, rgba(0, 169, 232, .28), transparent 33%),
    linear-gradient(135deg, #050914, #0b1730 58%, #06101e);
  grid-template-columns: minmax(0, .95fr) minmax(360px, .55fr);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(246, 250, 252, .96));
  pointer-events: none;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.page-hero .eyebrow {
  color: #46d4ff;
}

.hero h1 {
  max-width: 940px;
  font-size: clamp(3.2rem, 6.8vw, 7.2rem);
  line-height: .96;
  color: #fff;
}

.hero .lead {
  max-width: 780px;
  color: rgba(238, 247, 255, .82);
  font-size: clamp(1.08rem, 1.5vw, 1.32rem);
}

.trust-line {
  color: rgba(238, 247, 255, .72);
}

.hero-panel {
  align-self: stretch;
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(94, 205, 255, .24);
  border-radius: 14px;
  background: rgba(4, 13, 29, .58);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  backdrop-filter: blur(14px);
}

.hero-panel span {
  min-height: 64px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  font-weight: 900;
  justify-content: flex-start;
  padding: 0 18px;
}

.page-hero {
  max-width: none;
  padding: 112px max(48px, calc((100vw - 1480px) / 2 + 48px)) 88px;
  background:
    linear-gradient(90deg, rgba(3, 8, 19, .94), rgba(5, 15, 33, .82)),
    radial-gradient(circle at 82% 24%, rgba(0, 169, 232, .24), transparent 34%),
    #050914;
  color: #fff;
}

.page-hero h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(3rem, 5.2vw, 6.4rem);
}

.page-hero .lead,
.page-hero p {
  color: rgba(238, 247, 255, .78);
}

.eyebrow {
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .75rem;
}

h1,
h2,
h3 {
  color: #07111f;
}

h2 {
  font-size: clamp(2.35rem, 4vw, 4.55rem);
  line-height: 1;
}

h3 {
  font-size: 1.18rem;
  line-height: 1.18;
}

.lead,
.section-lead,
.rich-text,
.service-card p,
.orientation-grid p,
.journey-grid p,
.audience-grid p,
.article-card p,
.footer-grid p {
  color: var(--muted);
}

.split,
.section.split {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.muted,
.light-section,
.use-case-section,
.deliverables-section,
.knowledge-section,
.entry-matrix-section,
.result-signals-section,
.fit-section {
  max-width: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(0, 169, 232, .06), transparent 31%),
    linear-gradient(135deg, #f8fbfe 0%, #eef6fb 100%);
}

.muted > *,
.use-case-section > *,
.deliverables-section > *,
.knowledge-section > *,
.entry-matrix-section > *,
.result-signals-section > *,
.fit-section > * {
  position: relative;
  z-index: 2;
}

.service-grid,
.service-grid.three,
.article-grid,
.orientation-grid,
.audience-grid,
.journey-grid,
.use-case-grid,
.deliverables-grid,
.knowledge-theme-grid,
.result-signal-grid,
.offer-factor-grid,
.offer-boundary-grid,
.entry-matrix-grid,
.quality-grid,
.onboarding-grid,
.briefing-grid,
.support-priority-grid,
.care-boundary-grid,
.care-rhythm-grid,
.growth-channel-grid,
.next-step-grid,
.workflow-grid,
.content-pillar-grid,
.project-blueprint-grid,
.system-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.service-card.static,
.article-card,
.orientation-grid article,
.audience-grid article,
.journey-grid article,
.use-case-card,
.deliverables-grid article,
.knowledge-theme-grid article,
.result-signal-grid article,
.offer-factor-grid article,
.offer-boundary-grid article,
.entry-matrix-grid article,
.quality-grid article,
.onboarding-grid article,
.briefing-grid article,
.support-priority-grid article,
.care-boundary-grid article,
.care-rhythm-grid article,
.growth-channel-grid article,
.next-step-grid article,
.workflow-grid article,
.content-pillar-grid article,
.project-blueprint-grid article,
.system-map article,
.price-card,
.system-note,
.trust-bar,
.form-shell,
.contact-card {
  position: relative;
  min-width: 0;
  min-height: 285px;
  padding: 30px;
  border: 1px solid #dfe8f0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  box-shadow: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.service-card:hover,
.article-card:hover,
.use-case-card:hover,
.entry-matrix-grid article:hover,
.project-blueprint-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 232, .48);
  box-shadow: 0 22px 55px rgba(8, 34, 62, .08);
}

.service-card span,
.orientation-grid strong,
.journey-grid span,
.project-blueprint-grid span,
.result-signal-grid span,
.entry-matrix-grid strong {
  color: var(--accent);
}

.pill-list span,
.hero-checks span,
.result-signal-grid span,
.deliverables-grid li,
.knowledge-theme-grid span {
  border-radius: 9px;
  border: 1px solid #dce8f1;
  background: #fff;
  color: #12243a;
}

.system-section,
.offer-logic-section,
.dark-section {
  max-width: none;
  background:
    radial-gradient(circle at 70% 40%, rgba(0, 169, 232, .20), transparent 34%),
    linear-gradient(135deg, #050914, #10233d);
  color: #fff;
}

.system-section h2,
.system-section h3,
.system-section p,
.offer-logic-section h2,
.offer-logic-section h3,
.offer-logic-section p,
.dark-section h2,
.dark-section h3,
.dark-section p {
  color: #fff;
}

.system-map article,
.offer-factor-grid article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
  color: #fff;
}

.system-note {
  margin-top: 20px;
}

.cta-band,
.site-footer {
  max-width: none;
  background: linear-gradient(136deg, #030712, #16243a);
  color: #fff;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a,
.cta-band h2,
.cta-band p {
  color: #fff;
}

@media (max-width: 1180px) {
  .header-inner {
    padding: 0 28px;
  }

  .main-nav {
    gap: 14px;
  }

  .service-grid,
  .service-grid.three,
  .article-grid,
  .orientation-grid,
  .audience-grid,
  .journey-grid,
  .use-case-grid,
  .deliverables-grid,
  .knowledge-theme-grid,
  .result-signal-grid,
  .offer-factor-grid,
  .offer-boundary-grid,
  .entry-matrix-grid,
  .quality-grid,
  .onboarding-grid,
  .briefing-grid,
  .support-priority-grid,
  .care-boundary-grid,
  .care-rhythm-grid,
  .growth-channel-grid,
  .next-step-grid,
  .workflow-grid,
  .content-pillar-grid,
  .project-blueprint-grid,
  .system-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 72px;
    padding: 0 22px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .hero,
  .page-hero,
  .section,
  .article,
  .message-page {
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero {
    min-height: 720px;
    padding-top: 76px;
    padding-bottom: 70px;
    grid-template-columns: 1fr;
    background:
      linear-gradient(180deg, rgba(3, 8, 19, .94), rgba(5, 15, 33, .88)),
      url('/assets/img/dreamseven-logo-banner.jpg') center 14% / min(94vw, 520px) auto no-repeat,
      #050914;
  }

  .hero-panel {
    align-self: auto;
  }

  .split,
  .section.split,
  .deliverables-head,
  .use-case-head,
  .knowledge-head,
  .result-head,
  .fit-head,
  .offer-logic-head,
  .entry-matrix-head {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .section,
  .article,
  .message-page {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.3rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3.35rem);
  }

  .service-grid,
  .service-grid.three,
  .article-grid,
  .orientation-grid,
  .audience-grid,
  .journey-grid,
  .use-case-grid,
  .deliverables-grid,
  .knowledge-theme-grid,
  .result-signal-grid,
  .offer-factor-grid,
  .offer-boundary-grid,
  .entry-matrix-grid,
  .quality-grid,
  .onboarding-grid,
  .briefing-grid,
  .support-priority-grid,
  .care-boundary-grid,
  .care-rhythm-grid,
  .growth-channel-grid,
  .next-step-grid,
  .workflow-grid,
  .content-pillar-grid,
  .project-blueprint-grid,
  .system-map {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card.static,
  .article-card,
  .orientation-grid article,
  .audience-grid article,
  .journey-grid article,
  .use-case-card,
  .deliverables-grid article,
  .knowledge-theme-grid article,
  .result-signal-grid article,
  .offer-factor-grid article,
  .offer-boundary-grid article,
  .entry-matrix-grid article,
  .quality-grid article,
  .onboarding-grid article,
  .briefing-grid article,
  .support-priority-grid article,
  .care-boundary-grid article,
  .care-rhythm-grid article,
  .growth-channel-grid article,
  .next-step-grid article,
  .workflow-grid article,
  .content-pillar-grid article,
  .project-blueprint-grid article,
  .system-map article,
  .price-card,
  .system-note,
  .trust-bar,
  .form-shell,
  .contact-card {
    min-height: 0;
    padding: 22px;
  }
}
/* Dreamseven MediaFlex skin tuning */
.hero {
  min-height: 640px;
  padding-top: 82px;
  padding-bottom: 78px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(3rem, 5.4vw, 6.15rem);
}

.hero-panel {
  align-self: center;
}

@media (max-width: 900px) {
  .hero {
    min-height: 660px;
    padding-top: 74px;
    padding-bottom: 58px;
    align-content: center;
    gap: 2rem;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px;
    gap: 10px;
  }

  .hero-panel span {
    min-height: 44px;
    padding: 0 12px;
    font-size: .88rem;
  }

  .hero-panel span:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 620px;
    padding-top: 54px;
    padding-bottom: 46px;
    background:
      linear-gradient(180deg, rgba(3, 8, 19, .95), rgba(5, 15, 33, .90)),
      url('/assets/img/dreamseven-logo-banner.jpg') center 34px / min(108vw, 460px) auto no-repeat,
      #050914;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.4vw, 3.35rem);
  }

  .hero .lead {
    font-size: 1rem;
  }
}
/* Dreamseven MediaFlex mobile hero compression */
@media (max-width: 560px) {
  .hero {
    min-height: 0;
    padding-top: 42px;
    padding-bottom: 54px;
    gap: 1.15rem;
  }

  .hero h1 {
    font-size: clamp(2.08rem, 10.2vw, 2.85rem);
    line-height: 1.02;
  }

  .hero-actions {
    margin: 24px 0 14px;
    gap: 10px;
  }

  .hero .button {
    width: auto;
    min-height: 42px;
    padding: 0 15px;
    font-size: .92rem;
  }

  .hero-panel {
    display: none;
  }

  .trust-line {
    max-width: 34rem;
    font-size: .92rem;
  }
}
/* Dreamseven MediaFlex homepage structure */
.hero {
  grid-template-columns: minmax(0, .92fr) minmax(390px, .62fr);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  max-width: 760px;
}

.hero-checks span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  color: rgba(244, 250, 255, .88);
  font-size: .9rem;
  font-weight: 800;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.home-command-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(94, 205, 255, .24);
  background: rgba(4, 13, 29, .62);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .34);
  min-height: 480px;
}

.home-command-card img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  opacity: .88;
}

.home-command-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 18, .04), rgba(2, 8, 18, .82));
}

.home-command-overlay {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  background: rgba(3, 10, 22, .76);
  backdrop-filter: blur(14px);
}

.home-command-overlay span {
  display: block;
  color: #46d4ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.home-command-overlay strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
}

.home-command-overlay div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.home-command-overlay b {
  padding: 7px 10px;
  border-radius: 8px;
  background: rgba(70, 212, 255, .14);
  color: #eaf8ff;
  font-size: .82rem;
}

.statsbar {
  background: #ffffff;
  border-bottom: 1px solid #dfe8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.stat {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 24px 22px;
  border-left: 1px solid #dfe8f0;
}

.stat:last-child {
  border-right: 1px solid #dfe8f0;
}

.stat b {
  color: #07111f;
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  line-height: 1;
}

.stat span {
  color: #657386;
  font-size: .92rem;
  font-weight: 750;
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .home-command-card,
  .home-command-card img {
    min-height: 360px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .hero-visual {
    display: none;
  }

  .hero-checks {
    gap: 7px;
  }

  .hero-checks span {
    padding: 7px 9px;
    font-size: .78rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    padding-right: 0;
  }

  .stat {
    min-height: 86px;
    padding: 18px 20px;
  }
}
/* Dreamseven MediaFlex core services */
.home-core-services {
  background: #f6fafc;
}

.block-head {
  max-width: 900px;
  margin-bottom: 40px;
}

.block-head h2 {
  margin-bottom: 18px;
}

.block-head p:not(.eyebrow) {
  max-width: 760px;
  color: #657386;
  font-size: 1.08rem;
}

.home-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-core-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid #dfe8f0;
  border-radius: 12px;
  background: #fff;
  color: #07111f;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-core-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 169, 232, .48);
  box-shadow: 0 22px 55px rgba(8, 34, 62, .08);
}

.home-core-card:nth-child(1) {
  background: linear-gradient(145deg, #06101f, #102849);
  border-color: rgba(70, 212, 255, .26);
  color: #fff;
}

.home-core-card:nth-child(1) h3,
.home-core-card:nth-child(1) p,
.home-core-card:nth-child(1) strong {
  color: #fff;
}

.core-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 11px;
  background: #e7f7fd;
  color: #008bc2;
  font-weight: 950;
  font-size: .78rem;
  letter-spacing: .02em;
}

.home-core-card:nth-child(1) .core-icon {
  background: rgba(255, 255, 255, .14);
  color: #fff;
}

.home-core-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.home-core-card p {
  color: #657386;
  margin-bottom: 24px;
}

.home-core-card strong {
  margin-top: auto;
  color: #008bc2;
  font-weight: 900;
}

@media (max-width: 960px) {
  .home-core-grid {
    grid-template-columns: 1fr;
  }

  .home-core-card {
    min-height: 0;
  }
}
/* Dreamseven MediaFlex extension services */
.home-extension-services {
  background: #ffffff;
  padding-top: 0;
}

.home-extension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-extension-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid #dfe8f0;
  border-radius: 12px;
  background: #fff;
  color: #07111f;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-extension-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 169, 232, .42);
  box-shadow: 0 20px 48px rgba(8, 34, 62, .075);
}

.home-extension-card h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
}

.home-extension-card p {
  color: #657386;
  margin-bottom: 22px;
}

.home-extension-card strong {
  margin-top: auto;
  color: #008bc2;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .home-extension-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .home-extension-grid {
    grid-template-columns: 1fr;
  }

  .home-extension-card {
    min-height: 0;
    padding: 22px;
  }
}
/* Dreamseven MediaFlex system section */
.home-system-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.home-system-grid {
  max-width: 1480px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, .78fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(244, 250, 255, .86);
  font-weight: 780;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #46d4ff;
  box-shadow: 0 0 0 6px rgba(70, 212, 255, .12);
}

.home-system-media {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.home-system-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  opacity: .9;
}

.home-system-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 8, 18, .02), rgba(2, 8, 18, .76));
}

.home-system-caption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 13px;
  background: rgba(3, 10, 22, .76);
  backdrop-filter: blur(14px);
}

.home-system-caption span {
  display: block;
  margin-bottom: 8px;
  color: #46d4ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.home-system-caption strong {
  display: block;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.2;
}

.home-system-section .button.ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
}

@media (max-width: 980px) {
  .home-system-grid {
    grid-template-columns: 1fr;
  }

  .home-system-media,
  .home-system-media img {
    min-height: 340px;
  }
}

@media (max-width: 560px) {
  .home-system-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home-system-media,
  .home-system-media img {
    min-height: 280px;
  }

  .home-system-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
  }
}
/* Dreamseven MediaFlex system section hardening */
.home-system-section {
  max-width: none;
  background:
    radial-gradient(circle at 72% 36%, rgba(0, 169, 232, .22), transparent 34%),
    linear-gradient(135deg, #050914, #10233d 68%, #06101f);
  color: #fff;
}

.home-system-section h2,
.home-system-section h3,
.home-system-section p,
.home-system-section li {
  color: #fff;
}

.home-system-section .section-lead {
  color: rgba(238, 247, 255, .78);
}
/* Dreamseven MediaFlex system background force */
.section.system-section.home-system-section {
  max-width: none !important;
  background:
    radial-gradient(circle at 72% 36%, rgba(0, 169, 232, .22), transparent 34%),
    linear-gradient(135deg, #050914, #10233d 68%, #06101f) !important;
  background-color: #050914 !important;
}
/* Dreamseven MediaFlex regional block */
.home-region-section {
  max-width: none;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 169, 232, .07), transparent 30%),
    linear-gradient(135deg, #f8fbfe 0%, #edf6fb 100%);
}

.home-region-section .block-head {
  max-width: 980px;
}

.home-region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-region-grid a {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  border: 1px solid #dfe8f0;
  border-radius: 12px;
  background: #fff;
  color: #07111f;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-region-grid a:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 169, 232, .42);
  box-shadow: 0 20px 48px rgba(8, 34, 62, .075);
}

.home-region-grid span {
  color: #00a9e8;
  font-size: .8rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.home-region-grid b {
  display: block;
  color: #07111f;
  font-size: 1.2rem;
  line-height: 1.15;
}

.home-region-grid small {
  display: block;
  color: #657386;
  font-size: .9rem;
  line-height: 1.45;
}

@media (max-width: 1080px) {
  .home-region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .home-region-grid {
    grid-template-columns: 1fr;
  }

  .home-region-grid a {
    min-height: 0;
    padding: 22px;
  }
}
/* Dreamseven MediaFlex regional background force */
.section.home-region-section {
  max-width: none !important;
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 169, 232, .07), transparent 30%),
    linear-gradient(135deg, #f8fbfe 0%, #edf6fb 100%) !important;
  background-color: #f3f7fb !important;
}
/* Dreamseven MediaFlex knowledge teaser */
.home-knowledge-section {
  max-width: none;
  background: #ffffff;
}

.home-knowledge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.home-knowledge-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid #dfe8f0;
  border-radius: 12px;
  background: #fff;
  color: #07111f;
  text-decoration: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.home-knowledge-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 169, 232, .42);
  box-shadow: 0 20px 48px rgba(8, 34, 62, .075);
}

.home-knowledge-card span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #e7f7fd;
  color: #008bc2;
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-knowledge-card h3 {
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.home-knowledge-card p {
  color: #657386;
  margin-bottom: 24px;
}

.home-knowledge-card strong {
  margin-top: auto;
  color: #008bc2;
  font-weight: 900;
}

.home-knowledge-section .hero-actions {
  margin-top: 28px;
}

.home-knowledge-section .button.ghost {
  background: #101826;
  border-color: #101826;
  color: #fff;
}

@media (max-width: 920px) {
  .home-knowledge-grid {
    grid-template-columns: 1fr;
  }

  .home-knowledge-card {
    min-height: 0;
  }
}
/* Dreamseven MediaFlex home CTA */
.home-cta-band {
  max-width: none;
  padding: 76px 0;
  background:
    radial-gradient(circle at 76% 34%, rgba(0, 169, 232, .22), transparent 32%),
    linear-gradient(136deg, #030712, #16243a);
  color: #fff;
}

.home-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.home-cta-band h2 {
  max-width: 900px;
  color: #fff;
  margin-bottom: 14px;
}

.home-cta-band p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(238, 247, 255, .76);
  margin: 0;
}

.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.home-cta-band .button.ghost {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
}

@media (max-width: 820px) {
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .home-cta-band {
    padding: 62px 0;
  }

  .home-cta-actions,
  .home-cta-actions .button {
    width: 100%;
  }
}
/* Dreamseven MediaFlex premium footer */
.site-footer.premium-footer {
  position: relative;
  max-width: none;
  padding: 92px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 169, 232, .18), transparent 30%),
    radial-gradient(circle at 86% 28%, rgba(20, 125, 255, .16), transparent 32%),
    linear-gradient(136deg, #030712, #101b2d 62%, #07101e);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.15fr) minmax(280px, .72fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 0;
  padding-bottom: 44px;
}

.footer-logo {
  width: min(320px, 100%);
  height: auto;
  margin-bottom: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
}

.footer-brand p,
.footer-contact-box p,
.footer-bottom p {
  color: rgba(238, 247, 255, .74);
}

.footer-tags,
.footer-social,
.footer-keywords,
.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-tags span,
.footer-keywords span {
  padding: 7px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .08);
  color: rgba(244, 250, 255, .88);
  font-size: .82rem;
  font-weight: 800;
}

.footer-social {
  margin-top: 24px;
}

.footer-social a,
.footer-bottom a {
  color: #46d4ff;
  font-weight: 850;
  text-decoration: none;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.footer-group h2,
.footer-contact-box h2 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 16px;
}

.footer-group a,
.footer-contact-box a {
  display: block;
  color: rgba(238, 247, 255, .72);
  text-decoration: none;
  margin: 0 0 10px;
}

.footer-group a:hover,
.footer-contact-box a:hover {
  color: #46d4ff;
}

.footer-contact-box {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  align-self: start;
}

.footer-contact-cta {
  margin-top: 18px !important;
  padding: 12px 14px;
  border-radius: 9px;
  background: linear-gradient(135deg, #00a9e8, #147dff);
  color: #fff !important;
  font-weight: 900;
  text-align: center;
}

.footer-keywords {
  padding-top: 22px;
  padding-bottom: 22px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 0;
}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-footer.premium-footer {
    padding-top: 68px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Dreamseven MediaFlex page heroes */
.page-hero.mediaflex-page-hero {
  position: relative;
  max-width: none;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 8, 19, .96) 0%, rgba(5, 15, 33, .90) 52%, rgba(5, 15, 33, .72) 100%),
    radial-gradient(circle at 78% 18%, rgba(0, 169, 232, .24), transparent 34%),
    radial-gradient(circle at 20% 82%, rgba(20, 125, 255, .18), transparent 32%),
    linear-gradient(135deg, #050914, #0a1830 58%, #06101e);
}

.page-hero.mediaflex-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 82px 82px;
  opacity: .34;
  pointer-events: none;
}

.page-hero.mediaflex-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 88px;
  background: linear-gradient(180deg, transparent, rgba(246, 250, 252, .98));
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(82px, 9vw, 132px) 48px clamp(78px, 8vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(2.4rem, 5vw, 5.2rem);
  align-items: center;
}

.page-hero-copy {
  max-width: 900px;
}

.page-hero.mediaflex-page-hero .eyebrow {
  color: #46d4ff;
}

.page-hero.mediaflex-page-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(2.9rem, 5.7vw, 6.2rem);
  line-height: .98;
}

.page-hero.mediaflex-page-hero .lead {
  max-width: 760px;
  color: rgba(238, 247, 255, .80);
  font-size: clamp(1.05rem, 1.35vw, 1.24rem);
}

.page-hero-actions {
  margin-top: 30px;
}

.page-hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-hero-signals span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 9px;
  background: rgba(255, 255, 255, .08);
  color: rgba(244, 250, 255, .86);
  font-size: .82rem;
  font-weight: 850;
}

.page-hero-system {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(94, 205, 255, .24);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .25);
  backdrop-filter: blur(16px);
}

.page-hero-system::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #00a9e8, #147dff);
}

.page-hero-system > span {
  display: block;
  margin-bottom: 12px;
  color: #46d4ff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero-system > strong {
  display: block;
  margin-bottom: 22px;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1.45;
}

.page-hero-system div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.page-hero-system b {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(70, 212, 255, .16);
  color: #46d4ff;
  font-size: .82rem;
}

.page-hero-system p {
  margin: 0;
  color: rgba(238, 247, 255, .76);
  font-weight: 750;
}

@media (max-width: 960px) {
  .page-hero-inner {
    grid-template-columns: 1fr;
  }

  .page-hero-system {
    max-width: 620px;
  }
}

@media (max-width: 640px) {
  .page-hero-inner {
    padding: 68px 22px 78px;
  }

  .page-hero.mediaflex-page-hero h1 {
    font-size: clamp(2.35rem, 12vw, 3.55rem);
  }

  .page-hero-actions .button {
    width: 100%;
  }

  .page-hero-system {
    padding: 22px;
  }
}
/* Dreamseven MediaFlex page hero mobile refinement */
@media (max-width: 700px) {
  .page-hero-inner {
    padding: 58px 22px 64px;
  }

  .page-hero.mediaflex-page-hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.2rem);
  }

  .page-hero.mediaflex-page-hero .lead {
    font-size: 1rem;
  }

  .page-hero-actions {
    margin-top: 24px;
  }

  .page-hero-signals {
    margin-top: 20px;
  }

  .page-hero-system {
    display: none;
  }
}
/* Dreamseven MediaFlex feature band */
.feature-band {
  position: relative;
  max-width: none;
  padding: 74px max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
  border-bottom: 1px solid rgba(10, 27, 49, .08);
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 169, 232, .10), transparent 30%),
    radial-gradient(circle at 86% 70%, rgba(20, 125, 255, .08), transparent 32%);
  pointer-events: none;
}

.feature-band-head,
.feature-band-grid,
.feature-band-tags {
  position: relative;
  z-index: 1;
}

.feature-band-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .62fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 28px;
}

.feature-band-head h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 4rem);
}

.feature-band-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.75;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-band-grid article {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  border: 1px solid rgba(10, 27, 49, .10);
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 55px rgba(8, 20, 36, .08);
}

.feature-band-grid article:first-child {
  background: linear-gradient(135deg, #06101e, #10213c);
  color: #fff;
  border-color: rgba(70, 212, 255, .22);
}

.feature-band-grid span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0, 169, 232, .12);
  color: #0576c8;
  font-weight: 900;
}

.feature-band-grid article:first-child span {
  background: rgba(70, 212, 255, .18);
  color: #46d4ff;
}

.feature-band-grid strong {
  color: inherit;
  font-size: 1.1rem;
  line-height: 1.35;
}

.feature-band-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.feature-band-tags span {
  padding: 9px 12px;
  border-radius: 9px;
  border: 1px solid rgba(10, 27, 49, .10);
  background: rgba(255, 255, 255, .72);
  color: #31506f;
  font-size: .88rem;
  font-weight: 800;
}

@media (max-width: 1060px) {
  .feature-band-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .feature-band {
    padding: 54px 22px;
  }

  .feature-band-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-band-head h2 {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
  }

  .feature-band-grid {
    grid-template-columns: 1fr;
  }

  .feature-band-grid article {
    min-height: 116px;
  }
}
/* Dreamseven MediaFlex feature band mobile refinement */
@media (max-width: 760px) {
  .feature-band {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .feature-band-head {
    margin-bottom: 18px;
  }

  .feature-band-head h2 {
    font-size: clamp(1.65rem, 8vw, 2.3rem);
  }

  .feature-band-head p:last-child {
    font-size: .96rem;
    line-height: 1.6;
  }

  .feature-band-grid {
    gap: 10px;
  }

  .feature-band-grid article {
    min-height: 96px;
    padding: 16px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
  }

  .feature-band-grid strong {
    font-size: 1rem;
  }

  .feature-band-tags {
    display: none;
  }
}
/* Dreamseven MediaFlex premium header */
.site-header.mediaflex-header {
  background: rgba(248, 251, 253, .98);
  border-bottom: 1px solid rgba(13, 41, 72, .10);
  box-shadow: 0 10px 28px rgba(8, 30, 54, .055);
  color: #07111f;
}

.dreamseven-topbar {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: linear-gradient(90deg, #edf6fb, #f6fbfe);
  border-bottom: 1px solid rgba(13, 41, 72, .08);
  color: #536980;
  font-size: .78rem;
  font-weight: 750;
}

.dreamseven-topbar div,
.dreamseven-topbar div:last-child {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.dreamseven-topbar a {
  color: #0872bf;
  text-decoration: none;
  white-space: nowrap;
}

.site-header.mediaflex-header .header-inner {
  min-height: 78px;
  padding: 0 48px;
}

.site-header.mediaflex-header .brand {
  gap: .85rem;
  min-width: max-content;
}

.site-header.mediaflex-header .brand-logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0, 43, 91, .14);
}

.site-header.mediaflex-header .brand-word {
  display: grid;
  gap: 1px;
  font-size: 1.05rem;
  line-height: 1.05;
  font-weight: 900;
  color: #07111f;
}

.site-header.mediaflex-header .brand-word span {
  color: #00a9e8;
}

.site-header.mediaflex-header .brand-word small {
  color: #60748b;
  font-size: .66rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-header.mediaflex-header .main-nav {
  gap: 8px;
}

.site-header.mediaflex-header .main-nav > a,
.site-header.mediaflex-header .nav-group-trigger {
  padding: 10px 11px;
  border-radius: 8px;
  color: #1a2a3d;
  font-size: .78rem;
  letter-spacing: .02em;
  line-height: 1;
  text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}

.site-header.mediaflex-header .main-nav > a::after,
.site-header.mediaflex-header .nav-group-trigger::after {
  display: none;
}

.site-header.mediaflex-header .main-nav > a:hover,
.site-header.mediaflex-header .main-nav > a[aria-current="page"],
.site-header.mediaflex-header .nav-group-trigger:hover,
.site-header.mediaflex-header .nav-group-trigger.is-active {
  background: #eef7fc;
  color: #007ac4;
}

.site-header.mediaflex-header .nav-muted {
  color: #64748b;
}

.site-header.mediaflex-header .nav-contact {
  border: 1px solid rgba(13, 41, 72, .13);
  background: #fff;
}

.site-header.mediaflex-header .button.small {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 8px;
  white-space: nowrap;
}

.site-header.mediaflex-header .nav-dropdown {
  top: calc(100% + .72rem);
  min-width: 270px;
  padding: 10px;
  border: 1px solid #dce8f1;
  border-radius: 12px;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 28px 80px rgba(8, 34, 62, .16);
}

.site-header.mediaflex-header .nav-dropdown a {
  padding: 11px 12px;
  border-radius: 8px;
  color: #183049;
  font-size: .86rem;
  font-weight: 800;
  text-transform: none;
}

.site-header.mediaflex-header .nav-dropdown a:hover,
.site-header.mediaflex-header .nav-dropdown a[aria-current="page"] {
  background: #edf7ff;
  color: #007ac4;
}

@media (max-width: 1180px) {
  .dreamseven-topbar {
    display: none;
  }

  .site-header.mediaflex-header .header-inner {
    min-height: 72px;
    padding: 0 22px;
  }

  .site-header.mediaflex-header .brand-logo {
    width: 48px;
    height: 48px;
  }

  .site-header.mediaflex-header .nav-toggle {
    width: 42px;
    height: 42px;
    display: inline-grid;
    gap: 4px;
    place-content: center;
    padding: 0;
    border: 1px solid rgba(13, 41, 72, .13);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(8, 30, 54, .08);
  }

  .site-header.mediaflex-header .nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #10213c;
  }

  .site-header.mediaflex-header .main-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    max-height: calc(100svh - 92px);
    overflow: auto;
    padding: 14px;
    border: 1px solid rgba(13, 41, 72, .10);
    border-radius: 14px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 28px 80px rgba(8, 30, 54, .18);
  }

  .site-header.mediaflex-header .main-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .site-header.mediaflex-header .main-nav > a,
  .site-header.mediaflex-header .nav-group-trigger {
    padding: 13px 12px;
    border-radius: 9px;
    background: #f6fbfe;
  }

  .site-header.mediaflex-header .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    min-width: 0;
    margin: 4px 0 8px;
    padding: 6px;
    border-radius: 10px;
    box-shadow: none;
  }

  .site-header.mediaflex-header .button.small,
  .site-header.mediaflex-header .nav-contact {
    justify-content: center;
    width: 100%;
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .site-header.mediaflex-header .brand-word {
    font-size: .95rem;
  }

  .site-header.mediaflex-header .brand-word small {
    display: none;
  }
}
/* Dreamseven MediaFlex mega navigation */
.site-header.mediaflex-header .nav-group {
  position: relative;
}

.site-header.mediaflex-header .nav-dropdown.mega-nav {
  left: 50%;
  width: min(1120px, calc(100vw - 96px));
  min-width: 0;
  padding: 0;
  overflow: hidden;
  transform: translate(-50%, 10px);
}

.site-header.mediaflex-header .nav-group:hover .nav-dropdown.mega-nav,
.site-header.mediaflex-header .nav-group:focus-within .nav-dropdown.mega-nav {
  transform: translate(-50%, 0);
}

.mega-nav {
  grid-template-columns: 305px 1fr;
}

.mega-nav-intro {
  padding: 30px;
  background:
    radial-gradient(circle at 84% 18%, rgba(70, 212, 255, .22), transparent 36%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.mega-nav-intro .eyebrow {
  color: #46d4ff;
}

.mega-nav-intro h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 1.65rem;
  line-height: 1.08;
}

.mega-nav-intro p:not(.eyebrow) {
  margin: 0 0 22px;
  color: rgba(238, 247, 255, .78);
  font-size: .92rem;
  line-height: 1.6;
}

.mega-nav-cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #00a9e8, #147dff) !important;
  color: #fff !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
  text-decoration: none;
}

.mega-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #e5eef5;
}

.site-header.mediaflex-header .mega-nav-grid a {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px !important;
  border-radius: 0;
  background: #fff;
  color: #1a2a3d;
  text-decoration: none;
}

.site-header.mediaflex-header .mega-nav-grid a:hover,
.site-header.mediaflex-header .mega-nav-grid a[aria-current="page"] {
  background: #f3faff;
  color: #0a73bc;
}

.mega-nav-grid span {
  width: max-content;
  min-width: 42px;
  padding: 6px 8px;
  border-radius: 8px;
  background: rgba(0, 169, 232, .12);
  color: #0576c8;
  font-size: .72rem;
  font-weight: 900;
}

.mega-nav-grid b,
.mega-nav-grid small {
  display: block;
}

.mega-nav-grid b {
  font-size: .98rem;
  line-height: 1.2;
}

.mega-nav-grid small {
  color: #62748a;
  font-size: .8rem;
  line-height: 1.45;
}

.mega-nav-strip {
  grid-column: 1 / -1;
  display: flex;
  background: #f7fbfd;
  border-top: 1px solid #e3edf5;
}

.mega-nav-strip span {
  flex: 1;
  padding: 11px 14px;
  border-right: 1px solid #e3edf5;
  color: #52677f;
  font-size: .76rem;
  font-weight: 850;
  text-align: center;
}

.mega-nav-strip span:last-child {
  border-right: 0;
}

@media (min-width: 1181px) {
  .site-header.mediaflex-header .nav-dropdown.mega-nav {
    display: grid;
  }
}

@media (max-width: 1180px) {
  .site-header.mediaflex-header .nav-dropdown.mega-nav {
    width: auto;
    display: grid;
    grid-template-columns: 1fr;
    transform: none;
  }

  .mega-nav-intro,
  .mega-nav-strip {
    display: none;
  }

  .mega-nav-grid {
    grid-template-columns: 1fr;
    gap: 6px;
    background: transparent;
  }

  .site-header.mediaflex-header .mega-nav-grid a {
    min-height: 0;
    padding: 12px !important;
    border-radius: 9px;
    background: #f6fbfe;
  }

  .mega-nav-grid small,
  .mega-nav-grid span {
    display: none;
  }
}
/* Dreamseven MediaFlex mega navigation viewport alignment */
@media (min-width: 1181px) {
  .site-header.mediaflex-header .nav-dropdown.mega-nav {
    position: fixed;
    top: 112px;
    left: 50%;
    right: auto;
    transform: translate(-50%, 10px);
  }

  .site-header.mediaflex-header .nav-group:hover .nav-dropdown.mega-nav,
  .site-header.mediaflex-header .nav-group:focus-within .nav-dropdown.mega-nav {
    transform: translate(-50%, 0);
  }
}
/* Dreamseven MediaFlex premium forms */
.form-section {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1120px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1120px) / 2 + 48px));
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.lead-form.premium-lead-form {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 24px 80px rgba(8, 30, 54, .10);
}

.lead-form-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: start;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(13, 41, 72, .10);
}

.lead-form-head h2 {
  max-width: 680px;
  margin: 0 0 10px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.lead-form-head p:last-child {
  max-width: 720px;
  margin: 0;
  color: #60748b;
  font-weight: 650;
}

.lead-form-signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 240px;
}

.lead-form-signals span {
  padding: 8px 10px;
  border: 1px solid rgba(0, 169, 232, .16);
  border-radius: 8px;
  background: #edf8ff;
  color: #0576c8;
  font-size: .78rem;
  font-weight: 900;
}

.lead-form .field-grid {
  gap: 16px;
}

.lead-form label {
  color: #253850;
  font-size: .86rem;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  margin-top: 8px;
  border: 1px solid #d6e3ee;
  border-radius: 9px;
  background: #f8fbfd;
  color: #10213c;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(0, 169, 232, .62);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 169, 232, .12);
  outline: 0;
}

.lead-form textarea {
  min-height: 132px;
  resize: vertical;
}

.lead-form .form-note {
  margin: 26px 0 18px;
  padding: 20px;
  border: 1px solid rgba(0, 169, 232, .16);
  border-left: 4px solid #00a9e8;
  border-radius: 10px;
  background: linear-gradient(135deg, #f2faff, #fff);
}

.lead-form .form-note h2 {
  margin: 0 0 6px;
  font-size: 1.15rem;
}

.lead-form .form-note p {
  margin: 0;
  color: #60748b;
}

.check-grid {
  margin: 18px 0;
}

.check-grid label,
.lead-form .consent {
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 9px;
  background: #f8fbfd;
}

.check-grid label {
  padding: 12px 14px;
}

.lead-form .consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  padding: 16px;
  color: #536980;
  font-weight: 700;
}

.lead-form input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: #00a9e8;
}

.lead-form button.button {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  font-size: .98rem;
}

@media (max-width: 760px) {
  .form-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .lead-form.premium-lead-form {
    padding: 22px;
  }

  .lead-form-head {
    grid-template-columns: 1fr;
  }

  .lead-form-signals {
    justify-content: flex-start;
    max-width: none;
  }
}
/* Dreamseven MediaFlex knowledge hub */
.knowledge-hub-section {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.knowledge-hub-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .7fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 30px;
}

.knowledge-hub-head h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.4rem);
}

.knowledge-hub-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .62fr);
  gap: 22px;
  margin-bottom: 22px;
}

.knowledge-featured-card,
.knowledge-list-card {
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 22px 70px rgba(8, 30, 54, .09);
}

.knowledge-featured-card {
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(26px, 4vw, 44px);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .24), transparent 34%),
    linear-gradient(135deg, #06101e, #10213c 62%, #07111f);
}

.knowledge-featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: .32;
}

.knowledge-featured-card > * {
  position: relative;
  z-index: 1;
}

.knowledge-featured-card span,
.knowledge-list-card .eyebrow {
  color: #46d4ff;
}

.knowledge-featured-card h3 {
  max-width: 760px;
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 4.6rem);
  line-height: 1.02;
}

.knowledge-featured-card p {
  max-width: 760px;
  color: rgba(238, 247, 255, .78);
  font-size: 1.05rem;
}

.knowledge-featured-card strong {
  margin-top: 22px;
  color: #46d4ff;
}

.knowledge-list-card {
  padding: 24px;
}

.knowledge-list-card a {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid rgba(13, 41, 72, .10);
  color: #10213c;
  text-decoration: none;
}

.knowledge-list-card a:hover b {
  color: #007ac4;
}

.knowledge-list-card a span {
  color: #0576c8;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.knowledge-list-card a b {
  font-size: 1rem;
  line-height: 1.35;
}

.knowledge-hub-grid {
  margin-top: 0;
}

@media (max-width: 980px) {
  .knowledge-hub-head,
  .knowledge-hub-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .knowledge-hub-section {
    padding-left: 22px;
    padding-right: 22px;
  }

  .knowledge-featured-card {
    min-height: 0;
    padding: 26px;
  }

  .knowledge-featured-card h3 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }
}
/* Dreamseven MediaFlex article pages */
.article.mediaflex-article {
  max-width: 1120px;
  padding-top: 92px;
}

.article-hero-panel {
  position: relative;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(70, 212, 255, .18);
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(70, 212, 255, .22), transparent 35%),
    linear-gradient(135deg, #06101e, #10213c 62%, #07111f);
  color: #fff;
  box-shadow: 0 30px 90px rgba(8, 30, 54, .16);
}

.article-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 74px 74px;
  opacity: .32;
}

.article-hero-panel > * {
  position: relative;
  z-index: 1;
}

.article-hero-panel .text-link,
.article-hero-panel .eyebrow {
  color: #46d4ff;
}

.article-hero-panel h1 {
  max-width: 960px;
  margin: 14px 0 20px;
  color: #fff;
  font-size: clamp(2.7rem, 5.8vw, 6.3rem);
  line-height: .98;
}

.article-hero-panel .lead {
  max-width: 820px;
  color: rgba(238, 247, 255, .80);
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
}

.article-meta-row,
.article-reading-map {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.article-meta-row {
  margin-top: 26px;
}

.article-meta-row span,
.article-reading-map span {
  padding: 8px 11px;
  border-radius: 9px;
  font-size: .8rem;
  font-weight: 900;
}

.article-meta-row span {
  border: 1px solid rgba(255, 255, 255, .13);
  background: rgba(255, 255, 255, .08);
  color: rgba(244, 250, 255, .88);
}

.article-reading-map {
  margin: 24px 0;
  padding: 14px;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 12px;
  background: #f7fbfd;
}

.article-reading-map span {
  border: 1px solid rgba(0, 169, 232, .16);
  background: #edf8ff;
  color: #0576c8;
}

.mediaflex-article .article-intro {
  margin-top: 0;
  padding: 24px;
  border-left: 4px solid #00a9e8;
  background: linear-gradient(135deg, #f2faff, #fff);
  box-shadow: 0 18px 50px rgba(8, 30, 54, .06);
}

.mediaflex-article .article-section {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.mediaflex-article .article-principles,
.mediaflex-article .article-split-note,
.mediaflex-article .muted-callout {
  max-width: none;
}

.mediaflex-article .article-checkgrid div,
.mediaflex-article .article-principles article,
.mediaflex-article .article-split-note > div {
  border-color: rgba(13, 41, 72, .10);
  box-shadow: 0 16px 45px rgba(8, 30, 54, .06);
}

@media (max-width: 760px) {
  .article.mediaflex-article {
    padding-top: 58px;
  }

  .article-hero-panel {
    padding: 24px;
  }

  .article-hero-panel h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.35rem);
  }
}
/* Dreamseven MediaFlex article mobile refinement */
@media (max-width: 760px) {
  .article-hero-panel .lead {
    font-size: 1rem;
  }

  .article-meta-row {
    margin-top: 18px;
  }

  .article-meta-row span,
  .article-reading-map span {
    padding: 7px 9px;
    font-size: .74rem;
  }

  .article-reading-map {
    margin: 18px 0;
    padding: 10px;
  }

  .mediaflex-article .article-intro {
    padding: 20px;
  }
}
/* Dreamseven MediaFlex regional landing pages */
.regional-landing-intro {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.regional-landing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: stretch;
}

.regional-copy-card,
.regional-system-card {
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 14px;
  box-shadow: 0 24px 80px rgba(8, 30, 54, .09);
}

.regional-copy-card {
  padding: clamp(26px, 4vw, 44px);
  background: rgba(255, 255, 255, .90);
}

.regional-copy-card h2 {
  max-width: 900px;
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1.02;
}

.regional-copy-card p:not(.eyebrow) {
  max-width: 920px;
  color: #60748b;
  font-weight: 650;
}

.regional-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.regional-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(0, 169, 232, .16);
  border-radius: 9px;
  background: #edf8ff;
  color: #0576c8;
  font-size: .84rem;
  font-weight: 900;
}

.regional-system-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 18%, rgba(70, 212, 255, .22), transparent 36%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.regional-system-card > span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(70, 212, 255, .14);
  color: #46d4ff;
  font-weight: 900;
}

.regional-system-card h3 {
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.18;
}

.regional-system-card div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.regional-system-card b {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: rgba(70, 212, 255, .16);
  color: #46d4ff;
}

.regional-system-card p {
  margin: 0;
  color: rgba(238, 247, 255, .78);
}

.regional-signal-section {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: #fff;
}

.regional-signal-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 28px;
}

.regional-signal-head h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.regional-signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.regional-signal-grid article {
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 12px;
  background: #f8fbfd;
  box-shadow: 0 16px 50px rgba(8, 30, 54, .06);
}

.regional-signal-grid article:first-child {
  background: linear-gradient(135deg, #06101e, #10213c);
  color: #fff;
}

.regional-signal-grid span {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: rgba(0, 169, 232, .12);
  color: #0576c8;
  font-weight: 900;
}

.regional-signal-grid article:first-child span {
  background: rgba(70, 212, 255, .16);
  color: #46d4ff;
}

.regional-signal-grid h3 {
  font-size: 1.12rem;
}

.regional-signal-grid p {
  color: #60748b;
}

.regional-signal-grid article:first-child h3,
.regional-signal-grid article:first-child p {
  color: #fff;
}

.regional-final-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .18), transparent 34%),
    linear-gradient(135deg, #06101e, #10213c);
  color: #fff;
}

.regional-final-band h2 {
  max-width: 820px;
  color: #fff;
}

.regional-final-band p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(238, 247, 255, .78);
}

.regional-final-band .button.ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

@media (max-width: 1100px) {
  .regional-landing-grid,
  .regional-signal-head,
  .regional-final-band {
    grid-template-columns: 1fr;
  }

  .regional-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .regional-landing-intro,
  .regional-signal-section,
  .regional-final-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .regional-copy-card,
  .regional-system-card {
    padding: 22px;
  }

  .regional-signal-grid {
    grid-template-columns: 1fr;
  }

  .regional-signal-grid article {
    min-height: 0;
  }

  .regional-final-band .hero-actions .button {
    width: 100%;
  }
}
/* Dreamseven mobile overflow guard for knowledge cards */
.knowledge-hub-grid,
.knowledge-hub-grid .article-card,
.knowledge-hub-grid .article-card * {
  min-width: 0;
}

.knowledge-hub-grid .article-card h2,
.knowledge-hub-grid .article-card h3,
.knowledge-hub-grid .article-card p,
.knowledge-hub-grid .article-card span {
  overflow-wrap: anywhere;
}
/* Dreamseven MediaFlex growth and next-step pages */
.growth-channel-stage,
.next-step-stage {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.growth-channel-head,
.next-step-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 30px;
}

.growth-channel-head h2,
.next-step-head h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 1.02;
}

.growth-channel-system {
  display: grid;
  grid-template-columns: minmax(340px, 460px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.growth-channel-focus {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .24), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
  box-shadow: 0 26px 80px rgba(8, 30, 54, .16);
}

.growth-channel-focus > span,
.next-step-focus-band aside span {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(70, 212, 255, .14);
  color: #46d4ff;
  font-weight: 900;
}

.growth-channel-focus h3 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.growth-channel-focus p {
  color: rgba(238, 247, 255, .78);
}

.growth-channel-grid-soft {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.growth-channel-grid-soft article,
.next-step-roadmap article {
  min-width: 0;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 16px 52px rgba(8, 30, 54, .07);
}

.growth-channel-grid-soft article {
  min-height: 212px;
  padding: 22px;
}

.growth-channel-grid-soft span,
.next-step-roadmap span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #edf8ff;
  color: #0576c8;
  font-weight: 900;
}

.growth-channel-grid-soft h3,
.next-step-roadmap h3 {
  font-size: 1.1rem;
}

.growth-channel-grid-soft p,
.next-step-roadmap p,
.next-step-focus-band p {
  color: #60748b;
}

.growth-tone-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: #fff;
}

.next-step-roadmap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.next-step-roadmap article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 22px;
}

.next-step-roadmap span {
  margin-bottom: 0;
}

.next-step-focus-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: #fff;
}

.next-step-focus-band h2 {
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.next-step-focus-band aside {
  display: grid;
  gap: 10px;
  padding: 26px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .22), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
  box-shadow: 0 24px 80px rgba(8, 30, 54, .14);
}

.next-step-focus-band aside strong {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

@media (max-width: 1100px) {
  .growth-channel-head,
  .next-step-head,
  .growth-channel-system,
  .growth-tone-band,
  .next-step-focus-band {
    grid-template-columns: 1fr;
  }

  .growth-channel-focus {
    min-height: 0;
  }

  .growth-channel-grid-soft,
  .next-step-roadmap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .growth-channel-stage,
  .next-step-stage,
  .growth-tone-band,
  .next-step-focus-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .growth-channel-grid-soft,
  .next-step-roadmap {
    grid-template-columns: 1fr;
  }

  .growth-channel-focus,
  .growth-channel-grid-soft article,
  .next-step-roadmap article,
  .next-step-focus-band aside {
    padding: 22px;
  }

  .next-step-roadmap article {
    grid-template-columns: 44px 1fr;
  }

  .growth-channel-focus .hero-actions .button {
    width: 100%;
  }
}
/* Dreamseven MediaFlex conversion pages */
.conversion-intro-stage,
.conversion-form-stage {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
}

.conversion-intro-stage {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.conversion-intro-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 30px;
}

.conversion-intro-head h2,
.conversion-form-copy h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.45rem);
  line-height: 1.02;
}

.conversion-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.conversion-choice-grid article {
  min-width: 0;
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 16px 52px rgba(8, 30, 54, .07);
}

.conversion-choice-grid article:first-child {
  background: linear-gradient(135deg, #06101e, #10213c);
  color: #fff;
}

.conversion-choice-grid span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #edf8ff;
  color: #0576c8;
  font-weight: 900;
}

.conversion-choice-grid article:first-child span {
  background: rgba(70, 212, 255, .16);
  color: #46d4ff;
}

.conversion-choice-grid h3 {
  font-size: 1.12rem;
}

.conversion-choice-grid p,
.conversion-form-copy p {
  color: #60748b;
}

.conversion-choice-grid article:first-child h3,
.conversion-choice-grid article:first-child p {
  color: #fff;
}

.conversion-action-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 26px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(13, 41, 72, .10);
  box-shadow: 0 18px 60px rgba(8, 30, 54, .08);
}

.conversion-action-card h3 {
  max-width: 760px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
}

.conversion-action-card p {
  max-width: 760px;
  color: #60748b;
}

.conversion-form-stage {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 620px);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: start;
  background: linear-gradient(180deg, #fff 0%, #eef6fb 100%);
}

.conversion-form-copy {
  position: sticky;
  top: 118px;
}

.conversion-form-copy p {
  max-width: 760px;
  font-weight: 650;
}

.conversion-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.conversion-mini-list span {
  padding: 9px 12px;
  border: 1px solid rgba(0, 169, 232, .16);
  border-radius: 9px;
  background: #edf8ff;
  color: #0576c8;
  font-size: .84rem;
  font-weight: 900;
}

.support-security-note {
  margin-top: 26px;
  padding: 22px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .20), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.support-security-note strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.support-security-note p {
  margin: 0;
  color: rgba(238, 247, 255, .78);
}

.conversion-form-stage .lead-form.premium-lead-form {
  max-width: none;
  margin: 0;
}

@media (max-width: 1100px) {
  .conversion-intro-head,
  .conversion-action-card,
  .conversion-form-stage {
    grid-template-columns: 1fr;
  }

  .conversion-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .conversion-form-copy {
    position: static;
  }
}

@media (max-width: 760px) {
  .conversion-intro-stage,
  .conversion-form-stage {
    padding-left: 22px;
    padding-right: 22px;
  }

  .conversion-choice-grid {
    grid-template-columns: 1fr;
  }

  .conversion-choice-grid article,
  .conversion-action-card,
  .support-security-note {
    min-height: 0;
    padding: 22px;
  }

  .conversion-action-card .hero-actions .button {
    width: 100%;
  }
}
/* Dreamseven MediaFlex care and support pages */
.care-package-stage,
.care-rhythm-stage,
.care-boundary-stage,
.support-overview-stage,
.support-rules-stage {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
}

.care-package-stage,
.support-overview-stage {
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.care-rhythm-stage,
.support-rules-stage {
  background: #fff;
}

.care-stage-head,
.care-rhythm-head,
.support-overview-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 30px;
}

.care-stage-head h2,
.care-rhythm-head h2,
.support-overview-head h2,
.support-path-card h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.45rem);
  line-height: 1.02;
}

.care-pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.care-price-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 520px;
  padding: 24px;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 58px rgba(8, 30, 54, .08);
}

.care-price-card.is-highlighted {
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .22), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.care-price-card h2 {
  color: inherit;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.care-price-card p:not(.eyebrow),
.care-price-card li,
.care-fineprint,
.care-rhythm-grid-soft p,
.care-boundary-grid-soft p,
.support-rule-grid-soft p,
.support-priority-grid-soft p,
.support-path-card p {
  color: #60748b;
}

.care-price-card.is-highlighted p:not(.eyebrow),
.care-price-card.is-highlighted li {
  color: rgba(238, 247, 255, .78);
}

.care-price-card ul,
.support-priority-grid-soft ul {
  margin: 22px 0;
  padding-left: 1.15rem;
}

.care-price-card li + li,
.support-priority-grid-soft li + li {
  margin-top: 8px;
}

.care-price-card.is-highlighted .button.ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

.care-fineprint {
  margin-top: 18px;
}

.care-rhythm-grid-soft,
.care-boundary-grid-soft,
.support-rule-grid-soft {
  display: grid;
  gap: 16px;
}

.care-rhythm-grid-soft,
.support-rule-grid-soft {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.care-boundary-grid-soft,
.support-priority-grid-soft {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.care-rhythm-grid-soft article,
.care-boundary-grid-soft article,
.support-rule-grid-soft article,
.support-priority-grid-soft article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 16px 52px rgba(8, 30, 54, .07);
}

.care-rhythm-grid-soft span,
.care-boundary-grid-soft span,
.support-rule-grid-soft span {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: #edf8ff;
  color: #0576c8;
  font-weight: 900;
}

.care-support-band,
.support-path-stage {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .18), transparent 34%),
    linear-gradient(135deg, #06101e, #10213c);
  color: #fff;
}

.care-support-band h3,
.support-path-card h2 {
  color: #fff;
}

.care-support-band p:not(.eyebrow),
.support-path-card p {
  max-width: 820px;
  color: rgba(238, 247, 255, .78);
}

.care-support-band .button.ghost,
.support-path-stage .button.ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

.support-priority-grid-soft article:first-child {
  background: #fff;
}

.support-priority-grid-soft article.is-critical {
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .22), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.support-priority-grid-soft span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #edf8ff;
  color: #0576c8;
  font-weight: 900;
}

.support-priority-grid-soft h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.support-priority-grid-soft strong {
  display: block;
  margin-top: 16px;
  color: #0576c8;
}

.support-priority-grid-soft article.is-critical span {
  background: rgba(70, 212, 255, .16);
  color: #46d4ff;
}

.support-priority-grid-soft article.is-critical h3,
.support-priority-grid-soft article.is-critical p,
.support-priority-grid-soft article.is-critical li,
.support-priority-grid-soft article.is-critical strong {
  color: #fff;
}

.support-path-stage {
  margin-top: 0;
}

.support-path-aside {
  display: grid;
  min-width: 300px;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}

.support-path-aside span {
  color: #46d4ff;
  font-weight: 900;
}

.support-path-aside strong {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

@media (max-width: 1180px) {
  .care-pricing-grid,
  .care-rhythm-grid-soft,
  .support-rule-grid-soft {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .care-stage-head,
  .care-rhythm-head,
  .support-overview-head,
  .care-support-band,
  .support-path-stage {
    grid-template-columns: 1fr;
  }

  .care-boundary-grid-soft,
  .support-priority-grid-soft {
    grid-template-columns: 1fr;
  }

  .support-path-aside {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .care-package-stage,
  .care-rhythm-stage,
  .care-boundary-stage,
  .support-overview-stage,
  .support-rules-stage,
  .care-support-band,
  .support-path-stage {
    padding-left: 22px;
    padding-right: 22px;
  }

  .care-pricing-grid,
  .care-rhythm-grid-soft,
  .support-rule-grid-soft {
    grid-template-columns: 1fr;
  }

  .care-price-card,
  .care-rhythm-grid-soft article,
  .care-boundary-grid-soft article,
  .support-rule-grid-soft article,
  .support-priority-grid-soft article,
  .support-path-aside {
    min-height: 0;
    padding: 22px;
  }

  .care-support-band .hero-actions .button,
  .support-path-stage .hero-actions .button {
    width: 100%;
  }
}
/* Dreamseven MediaFlex agency trust pages */
.agency-trust-stage,
.agency-method-stage,
.agency-about-stage {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.agency-trust-stage.light {
  background: #fff;
}

.agency-trust-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 30px;
}

.agency-trust-head.compact {
  margin-bottom: 18px;
}

.agency-trust-head h2,
.agency-founder-card h2,
.agency-method-stage h2,
.agency-split-band h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.45rem);
  line-height: 1.02;
}

.agency-card-grid,
.agency-method-grid,
.agency-pill-grid {
  display: grid;
  gap: 16px;
}

.agency-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agency-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.agency-card-grid.service-rules {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.agency-card-grid article,
.agency-method-grid article,
.agency-founder-card,
.agency-belief-card,
.agency-pill-grid span {
  min-width: 0;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 16px 52px rgba(8, 30, 54, .07);
}

.agency-card-grid article,
.agency-method-grid article,
.agency-founder-card,
.agency-belief-card {
  padding: 22px;
}

.agency-card-grid span,
.agency-method-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 10px;
  background: #edf8ff;
  color: #0576c8;
  font-weight: 900;
}

.agency-card-grid p,
.agency-method-grid p,
.agency-founder-card p,
.agency-belief-card p,
.agency-split-band p {
  color: #60748b;
}

.agency-split-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .18), transparent 34%),
    linear-gradient(135deg, #06101e, #10213c);
  color: #fff;
}

.agency-split-band h2,
.agency-split-band h3,
.agency-split-band p:not(.eyebrow) {
  color: #fff;
}

.agency-split-band p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(238, 247, 255, .78);
}

.agency-split-band aside {
  display: grid;
  min-width: 300px;
  gap: 10px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
}

.agency-split-band aside span {
  color: #46d4ff;
  font-weight: 900;
}

.agency-split-band aside strong {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.agency-split-band .button.ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

.agency-method-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.agency-method-grid article.is-lead {
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .22), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.agency-method-grid article.is-lead span {
  background: rgba(70, 212, 255, .16);
  color: #46d4ff;
}

.agency-method-grid article.is-lead h3,
.agency-method-grid article.is-lead p {
  color: #fff;
}

.agency-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: stretch;
}

.agency-belief-card {
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .22), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.agency-belief-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(70, 212, 255, .14);
  color: #46d4ff;
  font-weight: 900;
}

.agency-belief-card h3,
.agency-belief-card p {
  color: #fff;
}

.agency-pill-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.agency-pill-grid span {
  padding: 16px;
  color: #0576c8;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .agency-card-grid.four,
  .agency-card-grid.service-rules,
  .agency-method-grid,
  .agency-pill-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .agency-trust-head,
  .agency-split-band,
  .agency-about-grid {
    grid-template-columns: 1fr;
  }

  .agency-split-band aside {
    min-width: 0;
  }
}

@media (max-width: 760px) {
  .agency-trust-stage,
  .agency-method-stage,
  .agency-about-stage,
  .agency-split-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .agency-card-grid.four,
  .agency-card-grid.three,
  .agency-card-grid.service-rules,
  .agency-method-grid,
  .agency-pill-grid {
    grid-template-columns: 1fr;
  }

  .agency-card-grid article,
  .agency-method-grid article,
  .agency-founder-card,
  .agency-belief-card,
  .agency-split-band aside,
  .agency-pill-grid span {
    padding: 22px;
  }

  .agency-split-band .hero-actions .button {
    width: 100%;
  }
}
/* Dreamseven MediaFlex project proof pages */
.project-proof-stage,
.project-price-stage,
.go-live-proof-stage,
.reference-proof-stage,
.reference-evidence-stage {
  max-width: none;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background: linear-gradient(180deg, #f7fbfd 0%, #eef6fb 100%);
}

.project-price-stage,
.reference-evidence-stage {
  background: #fff;
}

.project-proof-head {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, .65fr);
  gap: clamp(1.6rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: 30px;
}

.project-proof-head h2,
.project-boundary-stage h2,
.go-live-after-band h2,
.reference-evidence-stage h2,
.reference-pilot-band h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 4vw, 4.45rem);
  line-height: 1.02;
}

.project-roadmap-grid,
.project-price-grid,
.project-factor-grid,
.project-boundary-grid,
.go-live-proof-grid,
.reference-concept-grid,
.reference-evidence-grid {
  display: grid;
  gap: 16px;
}

.project-roadmap-grid {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.project-price-grid,
.reference-evidence-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.project-factor-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.project-boundary-grid,
.reference-concept-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.go-live-proof-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.project-roadmap-grid article,
.project-price-grid article,
.project-factor-grid article,
.project-boundary-grid article,
.go-live-proof-grid article,
.reference-concept-grid article,
.reference-evidence-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid rgba(13, 41, 72, .10);
  border-radius: 12px;
  background: rgba(255, 255, 255, .90);
  box-shadow: 0 16px 52px rgba(8, 30, 54, .07);
}

.project-roadmap-grid article.is-lead,
.reference-concept-grid article:first-child {
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .22), transparent 34%),
    linear-gradient(145deg, #06101e, #10213c);
  color: #fff;
}

.project-roadmap-grid span,
.project-price-grid span,
.project-factor-grid span,
.project-boundary-grid span,
.go-live-proof-grid span,
.reference-concept-grid span,
.reference-evidence-grid span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  min-height: 40px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 10px;
  background: #edf8ff;
  color: #0576c8;
  font-weight: 900;
}

.project-roadmap-grid article.is-lead span,
.reference-concept-grid article:first-child span {
  background: rgba(70, 212, 255, .16);
  color: #46d4ff;
}

.project-roadmap-grid p,
.project-price-grid p,
.project-factor-grid p,
.project-boundary-grid p,
.go-live-proof-grid li,
.reference-concept-grid p,
.reference-evidence-grid p,
.reference-pilot-band p,
.go-live-after-band p {
  color: #60748b;
}

.project-roadmap-grid article.is-lead h3,
.project-roadmap-grid article.is-lead p,
.reference-concept-grid article:first-child h3,
.reference-concept-grid article:first-child p {
  color: #fff;
}

.project-price-grid strong {
  display: block;
  margin: 14px 0 10px;
  color: #0576c8;
  font-size: 1.18rem;
}

.project-boundary-stage,
.go-live-after-band,
.reference-pilot-band {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(320px, 1fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: center;
  padding-left: max(48px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(48px, calc((100vw - 1480px) / 2 + 48px));
  background:
    radial-gradient(circle at 82% 18%, rgba(70, 212, 255, .18), transparent 34%),
    linear-gradient(135deg, #06101e, #10213c);
  color: #fff;
}

.project-boundary-stage h2,
.project-boundary-stage p:not(.eyebrow),
.go-live-after-band h2,
.go-live-after-band p:not(.eyebrow),
.reference-pilot-band h2,
.reference-pilot-band p:not(.eyebrow) {
  color: #fff;
}

.project-boundary-stage .button.ghost,
.go-live-after-band .button.ghost,
.reference-pilot-band .button.ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .20);
}

.go-live-proof-grid ul {
  margin: 0;
  padding-left: 1.1rem;
}

.go-live-proof-grid li + li {
  margin-top: 8px;
}

@media (max-width: 1220px) {
  .project-roadmap-grid,
  .project-factor-grid,
  .go-live-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-price-grid,
  .reference-evidence-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .project-proof-head,
  .project-boundary-stage,
  .go-live-after-band,
  .reference-pilot-band {
    grid-template-columns: 1fr;
  }

  .project-boundary-grid,
  .reference-concept-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .project-proof-stage,
  .project-price-stage,
  .go-live-proof-stage,
  .reference-proof-stage,
  .reference-evidence-stage,
  .project-boundary-stage,
  .go-live-after-band,
  .reference-pilot-band {
    padding-left: 22px;
    padding-right: 22px;
  }

  .project-roadmap-grid,
  .project-price-grid,
  .project-factor-grid,
  .go-live-proof-grid,
  .reference-evidence-grid {
    grid-template-columns: 1fr;
  }

  .project-roadmap-grid article,
  .project-price-grid article,
  .project-factor-grid article,
  .project-boundary-grid article,
  .go-live-proof-grid article,
  .reference-concept-grid article,
  .reference-evidence-grid article {
    padding: 22px;
  }

  .project-boundary-stage .hero-actions .button,
  .go-live-after-band .hero-actions .button,
  .reference-pilot-band .hero-actions .button {
    width: 100%;
  }
}
/* Dreamseven MediaFlex entry and process pages */
.audience-focus-stage,
.workflow-process-stage,
.content-pillar-stage,
.entry-advisor-premium {
  max-width: none;
  width: 100%;
  padding-left: max(28px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(28px, calc((100vw - 1480px) / 2 + 48px));
}

.audience-focus-head,
.workflow-process-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .62fr);
  gap: clamp(1.4rem, 4vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.7rem, 3vw, 2.6rem);
}

.audience-focus-head .section-lead,
.workflow-process-head .section-lead {
  margin: 0;
  color: #486176;
}

.audience-focus-grid,
.workflow-process-grid,
.content-pillar-grid-soft {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.9rem, 1.8vw, 1.25rem);
}

.audience-focus-grid article,
.workflow-process-grid article,
.content-pillar-grid-soft article {
  position: relative;
  min-height: 238px;
  grid-column: span 4;
  display: grid;
  align-content: start;
  gap: .85rem;
  padding: clamp(1.15rem, 2vw, 1.65rem);
  border: 1px solid rgba(122, 151, 180, .24);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 20px 54px rgba(10, 35, 68, .075);
}

.audience-focus-grid article.is-lead,
.workflow-process-grid article.is-lead {
  grid-column: span 8;
  min-height: 260px;
  background: radial-gradient(circle at top right, rgba(0, 178, 255, .28), transparent 34%), linear-gradient(135deg, #07111f 0%, #0b2346 100%);
  color: #f7fbff;
}

.audience-focus-grid span,
.workflow-process-grid span,
.content-pillar-grid-soft span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e8f6ff;
  color: #087bdc;
  font-size: .82rem;
  font-weight: 800;
}

.audience-focus-grid article.is-lead span,
.workflow-process-grid article.is-lead span {
  background: rgba(255,255,255,.14);
  color: #66d9ff;
}

.audience-focus-grid h3,
.workflow-process-grid h3,
.content-pillar-grid-soft h3 {
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  color: inherit;
}

.audience-focus-grid p,
.workflow-process-grid p,
.content-pillar-grid-soft p {
  margin: 0;
  color: #516b80;
}

.audience-focus-grid article.is-lead p,
.workflow-process-grid article.is-lead p {
  color: rgba(247,251,255,.78);
}

.audience-focus-grid strong {
  display: block;
  margin-bottom: .25rem;
  color: #07111f;
}

.audience-focus-grid article.is-lead strong {
  color: #ffffff;
}

.audience-fit-band,
.workflow-principle-band,
.content-rhythm-band,
.entry-decision-band {
  max-width: none;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4.2rem) max(28px, calc((100vw - 1480px) / 2 + 48px));
  border-radius: 0;
  background: radial-gradient(circle at 88% 15%, rgba(0, 178, 255, .22), transparent 28%), linear-gradient(135deg, #061225 0%, #0b2448 100%);
  color: #f7fbff;
}

.audience-fit-band h2,
.workflow-principle-band h2,
.content-rhythm-band h2,
.entry-decision-band h2 {
  color: #ffffff;
}

.audience-fit-band p,
.workflow-principle-band p,
.content-rhythm-band p,
.entry-decision-band p {
  max-width: 820px;
  color: rgba(247,251,255,.76);
}

.audience-fit-pills {
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  justify-content: flex-end;
}

.audience-fit-pills span,
.workflow-principle-band aside strong {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: .65rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.16);
  color: #f7fbff;
  font-weight: 800;
}

.workflow-principle-band {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
}

.workflow-principle-band .hero-actions,
.content-rhythm-band .hero-actions,
.entry-decision-band .hero-actions {
  grid-column: 1 / -1;
}

.workflow-principle-band aside {
  display: grid;
  gap: .65rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(255,255,255,.08);
}

.workflow-principle-band aside span {
  color: #66d9ff;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.content-pillar-grid-soft article {
  grid-column: span 3;
  min-height: 228px;
}

.content-rhythm-band,
.entry-decision-band {
  grid-template-columns: minmax(0, 1fr) auto;
}

.entry-advisor-premium {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.entry-advisor-premium .entry-choice-grid {
  gap: clamp(.85rem, 1.6vw, 1.15rem);
}

.entry-advisor-premium .entry-choice {
  min-height: 176px;
  border-color: rgba(122, 151, 180, .25);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(10, 35, 68, .075);
}

.entry-advisor-premium .entry-choice.is-active {
  background: linear-gradient(145deg, #eef9ff 0%, #ffffff 100%);
  box-shadow: 0 22px 58px rgba(0, 125, 220, .12);
}

.entry-advisor-premium .entry-result {
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
  padding: clamp(1.35rem, 2.6vw, 2rem);
  background: radial-gradient(circle at 86% 0%, rgba(0, 178, 255, .24), transparent 30%), linear-gradient(135deg, #07111f 0%, #0b2346 100%);
}

.entry-advisor-premium .entry-result .hero-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.entry-decision-band {
  margin-top: 0;
}

@media (max-width: 1180px) {
  .audience-focus-grid article,
  .workflow-process-grid article,
  .content-pillar-grid-soft article,
  .audience-focus-grid article.is-lead,
  .workflow-process-grid article.is-lead {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .audience-focus-stage,
  .workflow-process-stage,
  .content-pillar-stage,
  .entry-advisor-premium {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .audience-focus-head,
  .workflow-process-head,
  .audience-fit-band,
  .workflow-principle-band,
  .content-rhythm-band,
  .entry-decision-band,
  .entry-advisor-premium .entry-result {
    grid-template-columns: 1fr;
  }

  .audience-fit-pills {
    justify-content: flex-start;
  }

  .content-pillar-grid-soft article,
  .audience-focus-grid article,
  .workflow-process-grid article,
  .audience-focus-grid article.is-lead,
  .workflow-process-grid article.is-lead {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .entry-advisor-premium .entry-choice {
    min-height: 0;
  }

  .audience-fit-band,
  .workflow-principle-band,
  .content-rhythm-band,
  .entry-decision-band {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
/* Dreamseven MediaFlex service suite */
body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section:not(.mediaflex-page-hero):not(.feature-band):not(.cta-band) {
  max-width: none;
  width: 100%;
  padding-left: max(28px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(28px, calc((100vw - 1480px) / 2 + 48px));
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section:not(.mediaflex-page-hero):not(.feature-band):not(.cta-band) > .eyebrow,
body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section:not(.mediaflex-page-hero):not(.feature-band):not(.cta-band) > h2,
body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section:not(.mediaflex-page-hero):not(.feature-band):not(.cta-band) > .section-lead {
  max-width: 980px;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.2rem);
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article {
  grid-column: span 3;
  min-height: 248px;
  display: grid;
  align-content: start;
  gap: .75rem;
  padding: clamp(1.12rem, 2vw, 1.55rem);
  border: 1px solid rgba(122,151,180,.23);
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 20px 54px rgba(10,35,68,.075);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:first-child {
  grid-column: span 6;
  background: radial-gradient(circle at 88% 0%, rgba(0,178,255,.25), transparent 32%), linear-gradient(135deg, #07111f 0%, #0b2346 100%);
  color: #f7fbff;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:nth-child(4) {
  grid-column: span 6;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article::before {
  content: "0" counter(service-card);
  counter-increment: service-card;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e8f6ff;
  color: #087bdc;
  font-size: .82rem;
  font-weight: 800;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid {
  counter-reset: service-card;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:first-child::before {
  background: rgba(255,255,255,.14);
  color: #66d9ff;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid h3 {
  font-size: clamp(1.12rem, 2vw, 1.55rem);
  color: #07111f;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:first-child h3 {
  color: #ffffff;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid p {
  color: #516b80;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:first-child p {
  color: rgba(247,251,255,.78);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section.muted {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .service-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(.9rem, 1.6vw, 1.2rem);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .service-grid.three .service-card {
  min-height: 230px;
  border: 1px solid rgba(122,151,180,.23);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(10,35,68,.07);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .service-grid.three .service-card:first-child {
  background: linear-gradient(145deg, #eef9ff 0%, #ffffff 100%);
  border-color: rgba(0,150,210,.22);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding-top: clamp(2rem, 5vw, 4.2rem);
  padding-bottom: clamp(2rem, 5vw, 4.2rem);
  border-radius: 0;
  background: radial-gradient(circle at 88% 15%, rgba(0,178,255,.22), transparent 28%), linear-gradient(135deg, #061225 0%, #0b2448 100%);
  color: #f7fbff;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section.split h2 {
  color: #ffffff;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section.split p,
body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section.split .rich-text p {
  color: rgba(247,251,255,.76);
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section.split .button.ghost {
  color: #f7fbff;
  border-color: rgba(255,255,255,.28);
}

@media (max-width: 1180px) {
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article,
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:first-child,
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:nth-child(4) {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section:not(.mediaflex-page-hero):not(.feature-band):not(.cta-band) {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article,
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:first-child,
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:nth-child(4),
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .service-grid.three .service-card {
    grid-column: 1 / -1;
    min-height: 0;
  }

  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .service-grid.three,
  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section.split {
    grid-template-columns: 1fr;
  }
}
/* Dreamseven MediaFlex utility pages */
body:is(.template-thank_you, .template-legal, .template-privacy, .template-404) main > .section:not(.mediaflex-page-hero):not(.cta-band) {
  max-width: none;
  width: 100%;
  padding-left: max(28px, calc((100vw - 1480px) / 2 + 48px));
  padding-right: max(28px, calc((100vw - 1480px) / 2 + 48px));
}

.utility-confirmation-stage,
.utility-error-stage {
  min-height: 56vh;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.utility-confirmation-card,
.utility-error-card {
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid rgba(122,151,180,.22);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 24px 72px rgba(10,35,68,.09);
}

.utility-error-card {
  grid-template-columns: 1fr;
  max-width: 900px;
  background: radial-gradient(circle at 88% 0%, rgba(0,178,255,.22), transparent 32%), linear-gradient(135deg, #07111f 0%, #0b2346 100%);
  color: #f7fbff;
}

.utility-error-card h1,
.utility-error-card .lead {
  color: #ffffff;
}

.utility-error-card .lead {
  max-width: 720px;
  opacity: .78;
}

.utility-error-card .button.ghost,
.utility-confirmation-card .button.ghost {
  border-color: rgba(7,17,31,.18);
}

.utility-error-card .button.ghost {
  color: #f7fbff;
  border-color: rgba(255,255,255,.28);
}

.legal-panel {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.legal-panel > h2,
.legal-panel > p,
.legal-panel > dl,
.legal-panel > .legal-alert {
  max-width: 1120px;
}

.legal-panel > h2 {
  margin-top: clamp(2rem, 4vw, 3.2rem);
  padding-top: 1.2rem;
  border-top: 1px solid rgba(122,151,180,.22);
  color: #07111f;
}

.legal-panel > h2:first-of-type {
  margin-top: 1.4rem;
}

.legal-panel > p {
  color: #516b80;
}

.legal-alert {
  border-color: rgba(0,150,210,.22);
  background: linear-gradient(145deg, #eef9ff 0%, #ffffff 100%);
  box-shadow: 0 18px 46px rgba(10,35,68,.065);
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.legal-list div {
  border: 1px solid rgba(122,151,180,.22);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(10,35,68,.055);
}

@media (max-width: 860px) {
  body:is(.template-thank_you, .template-legal, .template-privacy, .template-404) main > .section:not(.mediaflex-page-hero):not(.cta-band) {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .utility-confirmation-card,
  .utility-error-card,
  .legal-list {
    grid-template-columns: 1fr;
  }
}
/* Dreamseven clarity pass: lighter, calmer, more agency-grade */
:root {
  --font-main: "Inter", "Segoe UI Variable Text", "Segoe UI", Roboto, Arial, sans-serif;
  --max: 1240px;
  --page-bg: #f6f9fc;
  --surface: #ffffff;
  --surface-soft: #eef6fb;
  --text: #0b1726;
  --text-soft: #526579;
  --line-soft: rgba(91, 120, 150, .18);
  --shadow-soft: 0 14px 38px rgba(18, 45, 76, .07);
  font-family: var(--font-main);
}

html,
body,
button,
input,
select,
textarea {
  font-family: var(--font-main);
}

body {
  background: var(--page-bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.62;
  font-weight: 430;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  display: none;
}

main {
  background: var(--page-bg);
  color: var(--text);
}

.site-header,
.hero,
.mediaflex-page-hero,
.config-hero,
.site-footer,
.cta-band,
main > .section.split,
.workflow-principle-band,
.content-rhythm-band,
.entry-decision-band,
.care-support-band,
.support-path-stage,
.agency-split-band,
.project-boundary-stage,
.go-live-after-band,
.reference-pilot-band {
  color: #f7fbff;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.35rem, 5.4vw, 5.15rem);
  line-height: 1.05;
  font-weight: 780;
}

h2 {
  font-size: clamp(1.85rem, 3.05vw, 3.15rem);
  line-height: 1.08;
  font-weight: 760;
}

h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.22;
  font-weight: 720;
}

p,
li,
.rich-text p,
.section-lead,
.lead {
  color: var(--text-soft);
  max-width: 68ch;
}

.lead,
.section-lead {
  font-size: clamp(1rem, 1.18vw, 1.15rem);
  line-height: 1.72;
}

.eyebrow {
  margin-bottom: .65rem;
  font-size: .72rem;
  letter-spacing: .08em;
}

.hero,
.page-hero,
.section,
.trust-bar,
.article,
.message-page {
  max-width: var(--max);
  padding-top: clamp(4.2rem, 7vw, 7rem);
  padding-bottom: clamp(4.2rem, 7vw, 7rem);
}

.section,
.page-hero,
.article,
.trust-bar {
  background: transparent;
}

.hero {
  min-height: min(760px, calc(100vh - 78px));
  padding-top: clamp(4.5rem, 7vw, 7rem);
  padding-bottom: clamp(4.5rem, 7vw, 7rem);
  gap: clamp(2rem, 4vw, 4rem);
}

.hero-actions {
  gap: .8rem;
}

.button {
  min-height: 44px;
  padding: .72rem 1rem;
  border-radius: 8px;
  font-weight: 720;
}

.button:hover {
  transform: translateY(-1px);
}

.service-grid,
.service-grid.three,
.card-grid,
.steps-grid,
.value-grid,
.trust-grid,
.blog-grid,
.use-case-grid,
.orientation-grid,
.region-grid,
.care-package-grid,
.support-path-grid,
.project-roadmap-grid,
.reference-grid,
.audience-focus-grid,
.workflow-process-grid,
.content-pillar-grid-soft {
  gap: clamp(1.15rem, 2vw, 1.65rem) !important;
}

.service-card,
.use-case-card,
.card,
.trust-card,
.article-card,
.blog-card,
.orientation-grid article,
.service-grid.three .service-card,
.care-package-card,
.support-path-card,
.reference-card,
.project-roadmap-grid article,
.audience-focus-grid article,
.workflow-process-grid article,
.content-pillar-grid-soft article,
.entry-advisor-premium .entry-choice,
.legal-list div,
.utility-confirmation-card,
.legal-alert {
  border-radius: 8px !important;
  border-color: var(--line-soft) !important;
  box-shadow: var(--shadow-soft) !important;
  background: var(--surface) !important;
  color: var(--text) !important;
}

.service-card p,
.use-case-card p,
.card p,
.trust-card p,
.article-card p,
.blog-card p,
.orientation-grid article p,
.service-grid.three .service-card p,
.care-package-card p,
.support-path-card p,
.reference-card p,
.project-roadmap-grid article p,
.audience-focus-grid article p,
.workflow-process-grid article p,
.content-pillar-grid-soft article p,
.entry-advisor-premium .entry-choice p {
  color: var(--text-soft) !important;
}

.service-card h3,
.use-case-card h3,
.card h3,
.trust-card h3,
.article-card h3,
.blog-card h3,
.orientation-grid article h3,
.service-grid.three .service-card h3,
.care-package-card h3,
.support-path-card h3,
.reference-card h3,
.project-roadmap-grid article h3,
.audience-focus-grid article h3,
.workflow-process-grid article h3,
.content-pillar-grid-soft article h3,
.entry-advisor-premium .entry-choice h3 {
  color: var(--text) !important;
}

.orientation-grid article,
.service-grid.three .service-card,
.service-card,
.use-case-card,
.card,
.trust-card,
.article-card,
.blog-card {
  min-height: 0 !important;
  padding: clamp(1.15rem, 2vw, 1.65rem) !important;
}

.orientation-grid article::before,
.service-card::before,
.use-case-card::before {
  display: none !important;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  max-width: 1040px;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article,
body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid article:first-child,
body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-business_tools, .template-customer_portal) .orientation-grid article:nth-child(4) {
  grid-column: auto !important;
}

body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) main > .section:not(.mediaflex-page-hero):not(.feature-band):not(.cta-band) {
  padding-left: max(24px, calc((100vw - 1240px) / 2 + 24px));
  padding-right: max(24px, calc((100vw - 1240px) / 2 + 24px));
}

main > .section.muted,
.legal-panel,
.utility-confirmation-stage,
.config-seo-section {
  background: linear-gradient(180deg, #f6f9fc 0%, #ffffff 100%) !important;
}

.feature-band,
.cta-band,
.mediaflex-page-hero,
main > .section.split {
  border-radius: 0 !important;
}

.footer-keywords,
.mega-nav-strip,
.footer-tags {
  display: none !important;
}

.footer-main,
.footer-nav,
.footer-contact-box {
  gap: clamp(1.2rem, 2vw, 2rem) !important;
}

.footer-brand p,
.footer-contact-box p {
  color: rgba(247,251,255,.68) !important;
}

@media (max-width: 980px) {
  h1 { font-size: clamp(2.15rem, 10vw, 3.55rem); }
  h2 { font-size: clamp(1.65rem, 7vw, 2.45rem); }

  .hero,
  .page-hero,
  .section,
  .trust-bar,
  .article,
  .message-page {
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  body:is(.template-websites_shops, .template-digitalization, .template-automation_ai, .template-visibility, .template-solutions, .template-web_applications, .template-plugins_extensions, .template-business_tools, .template-customer_portal) .orientation-grid,
  .service-grid,
  .service-grid.three,
  .card-grid,
  .steps-grid,
  .value-grid,
  .trust-grid,
  .blog-grid,
  .use-case-grid,
  .orientation-grid,
  .region-grid,
  .care-package-grid,
  .support-path-grid,
  .project-roadmap-grid,
  .reference-grid {
    grid-template-columns: 1fr !important;
  }
}