/*
Theme Name: Справа Майбутнього
Theme URI: https://arwix.team
Description: Кастомна тема для ГО «Справа Майбутнього»
Version: 2.0
Author: Справа Майбутнього
Text Domain: dk
*/

/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --green-deep:    #070a12;
  --green-mid:     #2a9df4;
  --green-bright:  #66c7ff;
  --green-light:   #d8f1ff;
  --cream:         #f5f7fb;
  --sand:          #dce5f2;
  --charcoal:      #050608;
  --text:          #141821;
  --text-muted:    #5d6675;
  --white:         #ffffff;
  --accent:        #66c7ff;

  --font-display:  system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:     system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-w:         1280px;
  --nav-h:         72px;
  --section-py:    clamp(3rem, 5vw, 5rem);
  --section-px:    clamp(1.5rem, 5vw, 4rem);

  --radius-sm:     10px;
  --radius-md:     16px;
  --radius-lg:     22px;
  --radius-pill:   18px;

  --shadow-sm:     0 2px 12px rgba(0,0,0,.06);
  --shadow-md:     0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:     0 16px 56px rgba(0,0,0,.14);
  --shadow-green:  0 10px 28px rgba(102,199,255,.24);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(102,199,255,.055) 0%, transparent 28%),
    linear-gradient(315deg, rgba(42,157,244,.04) 0%, transparent 34%),
    var(--white);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY UTILITIES
============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px;
  background: currentColor;
}
.section-label--light { color: var(--green-bright); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.12;
  color: var(--green-deep);
}
.section-title em { font-style: normal; color: var(--green-mid); }
.section-title--white { color: var(--white); }
.section-title--white em { color: var(--green-bright); }

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75; color: var(--text-muted);
  margin-top: 1.25rem;
}
.lead--white { color: rgba(255,255,255,.72); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--font-body);
  font-size: .95rem; font-weight: 700;
  border-radius: var(--radius-pill);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--green-bright); color: var(--green-deep);
}
.btn-primary:hover {
  background: var(--green-light);
  box-shadow: var(--shadow-green);
}

.btn-dark {
  background: var(--green-deep); color: var(--white);
}
.btn-dark:hover { background: var(--green-mid); }

.btn-white {
  background: var(--white); color: var(--green-deep);
}
.btn-white:hover { background: var(--cream); }

.btn-outline {
  background: transparent;
  border: 2px solid currentColor;
}
.btn-outline--dark { color: var(--green-deep); }
.btn-outline--dark:hover { background: var(--green-deep); color: var(--white); }
.btn-outline--light { color: rgba(255,255,255,.8); }
.btn-outline--light:hover { color: var(--white); background: rgba(255,255,255,.08); }

/* ============================================================
   SHARE TOOLS
============================================================ */
.share-tools {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.share-tools__label {
  display: inline-flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #7a7a7a;
}

.share-tools__buttons {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  flex: 0 0 auto;
  min-height: 42px;
  padding: .78rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f6f8f6;
  color: var(--green-deep);
  font-size: .9rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.share-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.share-btn svg {
  display: block;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px;
  min-height: 18px;
  max-width: 18px;
  max-height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.share-btn:focus-visible {
  outline: 2px solid var(--green-bright);
  outline-offset: 2px;
}

.share-btn--primary {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}

.share-btn--primary:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
}

.share-btn--secondary:hover {
  background: rgba(102,199,255,.12);
  border-color: rgba(102,199,255,.3);
  color: var(--green-deep);
}

.share-tools__status {
  min-height: 1em;
  font-size: .82rem;
  color: var(--green-mid);
}

.share-tools--compact {
  margin-left: auto;
  justify-content: flex-end;
}

.share-tools--compact .share-tools__buttons {
  justify-content: flex-end;
}

.share-tools--compact .share-tools__status {
  flex-basis: 100%;
  text-align: right;
}

.share-tools--card {
  margin-top: 2.5rem;
  padding: 1.35rem 1.45rem;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--radius-md);
  background: #f6f8f6;
  justify-content: space-between;
}

.share-tools--card .share-tools__label {
  color: var(--green-deep);
}

.share-tools--card .share-tools__status {
  flex-basis: 100%;
}

@media (max-width: 760px) {
  .share-tools--compact,
  .share-tools--card {
    justify-content: flex-start;
  }

  .share-tools--compact .share-tools__status {
    text-align: left;
  }

  .share-tools__buttons {
    width: 100%;
  }

  .share-btn {
    flex: 1 1 220px;
  }
}

/* ============================================================
   PROJECT DETAIL BLOCKS
============================================================ */
.project-track {
  display: grid;
  gap: .9rem;
  margin: 1.5rem 0 2rem;
}

.project-track__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid #dce5f2;
  background: #fff;
}

.project-track__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  margin: 0;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: rgba(102,199,255,.14);
  color: var(--green-deep);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-track__status--warm {
  background: rgba(102,199,255,.14);
  color: #1678c2;
}

.project-track__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-deep);
  margin: 0 0 .35rem;
  line-height: 1.32;
}

.project-track__desc {
  color: #555;
  line-height: 1.7;
}

.project-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.project-card {
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid #dce5f2;
  background: #f5f8fc;
}

.project-card__eyebrow {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: .5rem;
}

.project-card__title {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.3;
}

.project-card__desc {
  margin-top: .55rem;
  color: #555;
  line-height: 1.7;
}

ul.project-card__list {
  list-style: disc;
  padding-left: 1.15rem;
  margin-top: .8rem;
  display: grid;
  gap: .45rem;
}

ul.project-card__list li {
  list-style: disc;
  color: #4d4d4d;
  line-height: 1.6;
}

.project-card--dark {
  background: var(--green-deep);
  border-color: transparent;
}

.project-card--dark .project-card__eyebrow {
  color: rgba(255,255,255,.58);
}

.project-card--dark .project-card__title {
  color: var(--white);
}

.project-card--dark .project-card__desc,
.project-card--dark ul.project-card__list li {
  color: rgba(255,255,255,.74);
}

.project-body .project-card-grid {
  align-items: stretch;
  gap: 1rem;
}

.project-body .project-card-grid > .project-card {
  position: relative;
  display: block;
  min-height: 100%;
  padding: 1.35rem 1.35rem 1.45rem;
  overflow: hidden;
  border-radius: 20px;
  border: 1.5px solid #dce5f2;
  background: #f7faff;
  box-shadow: 0 8px 26px rgba(7,10,18,.055);
}

.project-body .project-card-grid > .project-card::after {
  content: '';
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(102,199,255,.10);
  pointer-events: none;
}

.project-body .project-card-grid > .project-card .project-card__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 .7rem;
  padding: .28rem .58rem;
  border-radius: 999px;
  background: rgba(102,199,255,.13);
  color: var(--green-mid);
  font-size: .66rem;
  line-height: 1;
}

.project-body .project-card-grid > .project-card .project-card__title {
  color: var(--green-deep);
  font-size: 1.04rem;
  line-height: 1.3;
}

.project-body .project-card-grid > .project-card .project-card__desc {
  position: relative;
  z-index: 1;
  color: #5d6675;
  font-size: .94rem;
  line-height: 1.72;
}

.project-body .project-card-grid > .project-card--dark {
  border-color: transparent;
  background: linear-gradient(135deg, #070a12 0%, #071a35 100%);
  box-shadow: 0 12px 32px rgba(7,10,18,.16);
}

.project-body .project-card-grid > .project-card--dark::after {
  background: rgba(255,255,255,.08);
}

.project-body .project-card-grid > .project-card--dark .project-card__eyebrow {
  background: rgba(255,255,255,.11);
  color: rgba(255,255,255,.70);
}

.project-body .project-card-grid > .project-card--dark .project-card__title {
  color: var(--white);
}

.project-body .project-card-grid > .project-card--dark .project-card__desc,
.project-body .project-card-grid > .project-card--dark ul.project-card__list li {
  color: rgba(255,255,255,.78);
}

.project-contact-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: start;
}
.project-contact-grid > *,
.contacts-grid > * { min-width: 0; }

.contacts-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2rem;
}

.request-type {
  margin-top: 1.25rem;
}

.request-type__legend {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6a6a6a;
  margin-bottom: .75rem;
}

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

.request-type__option {
  position: relative;
  display: block;
  cursor: pointer;
}

.request-type__option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.request-type__option span {
  display: block;
  min-height: 100%;
  padding: .95rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.08);
  background: #f6f8f6;
  color: var(--green-deep);
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.request-type__option:hover span {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.request-type__option input:checked + span {
  background: rgba(102,199,255,.12);
  border-color: rgba(102,199,255,.55);
  box-shadow: inset 0 0 0 1px rgba(102,199,255,.25);
}

.form-success {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: #d8ecff;
  border-radius: 12px;
  color: #1678c2;
  font-weight: 600;
}

@media (max-width: 900px) {
  .project-contact-grid,
  .contacts-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .project-card-grid {
    grid-template-columns: 1fr;
  }

  .project-track__item {
    grid-template-columns: 1fr;
  }

  .request-type__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   LAYOUT
============================================================ */
.section {
  padding: var(--section-py) var(--section-px);
}
.section-inner {
  max-width: var(--max-w); margin: 0 auto;
}
.section--cream   { background: var(--cream); }
.section--dark    { background: var(--green-deep); }
.section--mid     { background: var(--green-mid); }
.section--charcoal{ background: var(--charcoal); }

/* ============================================================
   NAVIGATION
============================================================ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200; height: var(--nav-h);
  transition: background .35s, box-shadow .35s;
}
.site-nav.scrolled {
  background: rgba(5, 6, 8, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(0,0,0,.18);
}
.site-nav__inner {
  max-width: var(--max-w); height: 100%; margin: 0 auto;
  padding: 0 var(--section-px);
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: .75rem; flex-shrink: 0;
  text-decoration: none;
}
.nav-logo__img   { width: 40px; height: 40px; border-radius: 50%; }
.nav-logo__leaf  { font-size: 1.5rem; }
.nav-logo__text  {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 700;
  color: var(--white); line-height: 1.2;
}

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .88rem; font-weight: 500;
  letter-spacing: .025em;
  color: rgba(255,255,255,.82);
  transition: color .2s;
  text-decoration: none;
}
.nav-links a:hover { color: var(--green-light); }
.nav-links a.nav-cta {
  padding: .5rem 1.35rem;
  background: var(--green-bright);
  color: var(--green-deep);
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: background .2s, transform .2s;
}
.nav-links a.nav-cta:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  color: var(--green-deep);
}

.nav-burger {
  display: none; flex-direction: column;
  gap: 5px; padding: 4px;
  cursor: pointer;
}
.nav-burger span {
  display: block; width: 25px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-burger { display: flex; z-index: 201; }
  .nav-links {
    display: none;
    position: fixed; inset: 0;
    background: var(--green-deep);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2rem; z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-links a.nav-cta { font-size: 1.1rem; padding: .75rem 2rem; }
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.55);
  padding-top: 5rem;
}
.site-footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--section-px) 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 900px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

.footer-logo {
  display: inline-flex; align-items: center; gap: .65rem; margin-bottom: .85rem;
}
.footer-logo__text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--white);
}
.footer-brand p {
  font-size: .84rem; line-height: 1.65; max-width: 320px;
}
.footer-requisites-line {
  margin-top: .35rem;
  font-size: .72rem; color: rgba(255,255,255,.32); line-height: 1.55;
}
.footer-bottom__status {
  font-size: .72rem; color: rgba(255,255,255,.28);
}

.site-footer h3 {
  font-size: .75rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white); margin-bottom: 1.2rem;
}
.site-footer ul { display: flex; flex-direction: column; gap: .65rem; }
.site-footer ul a { font-size: .84rem; transition: color .2s; }
.site-footer ul a:hover { color: var(--green-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 1.5rem var(--section-px);
}
.footer-bottom__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: .4rem 1rem;
  font-size: .78rem;
}
.footer-bottom__inner a { transition: color .2s; }
.footer-bottom__inner a:hover { color: var(--green-bright); }

/* ============================================================
   SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }
.reveal-d4 { transition-delay: .48s; }

/* ============================================================
   SHARED SECTION HEADERS (2-col: title left + btn right)
============================================================ */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem;
}
.section-head__left { }

/* ============================================================
   CARDS: PROJECT
============================================================ */
.project-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--green-deep);
  display: block;
}
.project-card__img {
  width: 100%; display: block;
  object-fit: cover;
  transition: transform .55s ease;
  min-height: 260px;
}
.project-card:hover .project-card__img { transform: none; }
.project-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,10,18,.92) 0%, rgba(7,10,18,.08) 65%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.75rem;
  transition: background .3s;
}
.project-card:hover .project-card__overlay {
  background: linear-gradient(to top, rgba(7,10,18,.97) 0%, rgba(7,10,18,.25) 65%);
}
.project-card__tag {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--green-bright); margin-bottom: .45rem;
}
.project-card__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 700; color: var(--white); line-height: 1.3;
}
.project-card__more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .75rem;
  font-size: .78rem; font-weight: 600;
  color: var(--green-bright);
  opacity: 0; transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.project-card__more::after { content: '→'; }
.project-card:hover .project-card__more { opacity: 1; transform: none; }

.projects-grid .project-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1.5px solid rgba(7,10,18,.1);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.projects-grid .project-card__img {
  width: 100%;
  object-fit: cover;
}

.projects-grid .project-card__overlay {
  position: static;
  inset: auto;
  display: block;
  flex: 1 1 auto;
  min-height: 148px;
  padding: 1.15rem 1.2rem 1.2rem;
  background: var(--white);
}

.projects-grid .project-card:hover .project-card__overlay {
  background: #f5f8fc;
}

.projects-grid .project-card__tag {
  color: var(--green-mid);
}

.projects-grid .project-card__title {
  color: var(--green-deep);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 800;
  line-height: 1.28;
}

.projects-grid .project-card__more {
  opacity: 1;
  transform: none;
  color: var(--green-mid);
  margin-top: .85rem;
}

/* Project detail info cards use the same historical class names as the
   visual project cards above, so keep their layout scoped to the detail grid. */
.project-card-grid > .project-card {
  position: static;
  overflow: visible;
  display: block;
  min-height: 0;
  padding: 1.35rem 1.35rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid #dce5f2;
  background: #f5f8fc;
}

.project-card-grid > .project-card .project-card__eyebrow {
  display: block;
  margin-bottom: .5rem;
  color: var(--green-mid);
}

.project-card-grid > .project-card .project-card__title {
  color: var(--green-deep);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.3;
}

.project-card-grid > .project-card .project-card__desc {
  margin-top: .55rem;
  color: #555;
  line-height: 1.7;
}

.project-card-grid > .project-card--dark {
  border-color: transparent;
  background: var(--green-deep);
}

.project-card-grid > .project-card--dark .project-card__eyebrow {
  color: rgba(255,255,255,.58);
}

.project-card-grid > .project-card--dark .project-card__title {
  color: var(--white);
}

.project-card-grid > .project-card--dark .project-card__desc,
.project-card-grid > .project-card--dark ul.project-card__list li {
  color: rgba(255,255,255,.74);
}

/* ============================================================
   CARDS: BLOG
============================================================ */
.blog-card {
  border-radius: var(--radius-md); overflow: hidden;
  border: 1.5px solid var(--sand);
  background: var(--white);
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card__img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; background: var(--sand);
}
.blog-card__body {
  padding: 1.5rem; flex: 1;
  display: flex; flex-direction: column;
}
.blog-card__date {
  font-size: .73rem; color: #999;
  letter-spacing: .04em; margin-bottom: .55rem;
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(.94rem, 1.25vw, 1.02rem); font-weight: 700;
  color: var(--green-deep); line-height: 1.3; flex: 1;
}
.blog-card__link {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1rem;
  font-size: .78rem; font-weight: 600;
  color: var(--green-mid);
  transition: gap .2s;
}
.blog-card__link::after { content: '→'; }
.blog-card__link:hover { gap: .7rem; }

/* ============================================================
   CARDS: TEAM
============================================================ */
.team-card {
  position: relative;
  counter-increment: team-card;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1rem;
  align-items: start;
  text-align: left;
  min-height: 100%;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
  border: 1.5px solid rgba(42,157,244,.13);
  box-shadow: 0 6px 24px rgba(0,0,0,.045);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.team-card::before {
  content: counter(team-card, decimal-leading-zero);
  grid-row: 1 / span 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--green-deep);
  color: var(--green-bright);
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 900;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  border-color: rgba(102,199,255,.45);
}
.team-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 800; color: var(--green-deep);
  line-height: 1.25;
}
.team-card__role {
  font-size: .78rem; color: var(--green-mid);
  margin-top: .28rem; font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.team-card__text {
  margin-top: .65rem;
  font-size: .9rem;
  color: #5f665f;
  line-height: 1.68;
}

/* ============================================================
   IMPACT NUMBERS
============================================================ */
.impact-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 1.75rem;
}
.impact-item__num {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 900;
  color: var(--green-bright); line-height: 1;
}
.impact-item__unit { font-size: 1.1rem; color: var(--green-bright); }
.impact-item__desc {
  margin-top: .65rem;
  font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.5;
}

/* ============================================================
   CONTACT FORM
============================================================ */
.dk-form {
  background: var(--cream); border-radius: var(--radius-lg); padding: 2.5rem;
}
.dk-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .dk-form__row { grid-template-columns: 1fr; } }

.dk-form__group { margin-bottom: 1rem; }
.dk-form__group label {
  display: block; font-size: .78rem; font-weight: 600;
  color: var(--green-deep); letter-spacing: .04em;
  text-transform: uppercase; margin-bottom: .4rem;
}
.dk-form__group input,
.dk-form__group textarea {
  width: 100%; padding: .82rem 1.1rem;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-size: .95rem; color: var(--text);
  outline: none; transition: border-color .2s, box-shadow .2s;
}
.dk-form__group input:focus,
.dk-form__group textarea:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(102,199,255,.15);
}
.dk-form__group textarea { resize: vertical; min-height: 100px; }
.dk-form__submit {
  width: 100%; padding: 1rem;
  margin-top: .25rem;
  background: var(--green-deep); color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 1rem; font-weight: 700;
  transition: background .2s, transform .2s;
}
.dk-form__submit:hover { background: var(--green-mid); transform: translateY(-2px); }
.dk-form__note {
  margin-top: .75rem; text-align: center;
  font-size: .73rem; color: #999; line-height: 1.55;
}
.dk-form__note a { color: var(--green-mid); }

/* ============================================================
   CONTACT DETAILS
============================================================ */
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
}
.contact-detail__icon {
  flex-shrink: 0; width: 44px; height: 44px;
  background: var(--green-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-detail__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: #999;
}
.contact-detail__val {
  font-size: .92rem; color: var(--green-deep); font-weight: 500; margin-top: .15rem;
  overflow-wrap: break-word; word-break: break-word;
}

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: var(--green-deep);
  padding: calc(var(--nav-h) + 4rem) var(--section-px) 5rem;
  position: relative; overflow: hidden;
}

.page-hero--blog {
  background: linear-gradient(135deg, rgba(5,6,8,.72), rgba(5,6,8,.42)), url('/wp-content/uploads/2026/05/3022.webp') center / cover no-repeat;
}

.page-hero--about {
  background: linear-gradient(135deg, rgba(5,6,8,.72), rgba(5,6,8,.42)), url('/wp-content/uploads/2026/05/2148890074.webp') center / cover no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(102,199,255,.12) 0%, transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 55%);
  pointer-events: none;
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.page-hero__eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--green-bright);
  margin-bottom: 1.25rem;
}
.page-hero__eyebrow::before {
  content: ''; display: block; width: 28px; height: 2px; background: var(--green-bright);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  color: var(--white); line-height: 1.08; max-width: 720px;
}
.page-hero h1 em { font-style: normal; color: var(--green-bright); }
.page-hero__sub {
  margin-top: 1.25rem;
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,.68); max-width: 560px; line-height: 1.7;
}

/* ============================================================
   BREADCRUMB
============================================================ */
.breadcrumb {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  font-size: .78rem; color: rgba(255,255,255,.45);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color .2s; }
.breadcrumb a:hover { color: var(--green-bright); }
.breadcrumb__sep { font-size: .65rem; }

.page-hero__breadcrumb,
.article-hero__breadcrumb,
.privacy-hero__back,
.project-hero__back {
  display: flex !important;
  align-items: center !important;
  gap: .55rem !important;
  width: fit-content !important;
  margin-bottom: 1.1rem !important;
  padding: .5rem .72rem !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  background: rgba(255,255,255,.075) !important;
  color: rgba(255,255,255,.74) !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
}

.page-hero__breadcrumb a,
.article-hero__breadcrumb a,
.privacy-hero__back,
.project-hero__back {
  color: rgba(255,255,255,.74) !important;
}

.page-hero__breadcrumb a:hover,
.article-hero__breadcrumb a:hover,
.privacy-hero__back:hover,
.project-hero__back:hover {
  color: var(--green-bright) !important;
}

.page-hero__breadcrumb span,
.article-hero__breadcrumb span {
  color: var(--green-bright) !important;
}

.page-hero__breadcrumb > :not(:last-child)::after,
.article-hero__breadcrumb > :not(:last-child)::after {
  content: '/';
  margin-left: .55rem;
  color: rgba(255,255,255,.32);
}

.privacy-hero__eyebrow,
.projects-hero__eyebrow {
  color: var(--green-bright) !important;
}

.project-hero::after,
.projects-hero::after,
.privacy-hero::after,
.article-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.18);
  pointer-events: none;
  z-index: 0;
}

.project-hero__inner,
.projects-hero__inner,
.privacy-hero__inner,
.article-hero__content {
  position: relative;
  z-index: 1;
}

/* ============================================================
   PAGINATION
============================================================ */
.dk-pagination {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; margin-top: 4rem; flex-wrap: wrap;
}
.dk-pagination a,
.dk-pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 .75rem;
  border-radius: var(--radius-sm);
  font-size: .88rem; font-weight: 600;
  border: 1.5px solid var(--sand);
  transition: background .2s, border-color .2s, color .2s;
}
.dk-pagination a:hover { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }
.dk-pagination .current { background: var(--green-deep); color: var(--white); border-color: var(--green-deep); }

/* ============================================================
   MISC UTILITY
============================================================ */
.text-center { text-align: center; }
.text-green  { color: var(--green-mid); }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   BUSINESS FUTURE PAGE HELPERS
============================================================ */
.blog-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.team-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 2rem;
  counter-reset: team-card;
}

.project-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 4rem) var(--section-px) 4.5rem;
  background-color: var(--green-deep);
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.project-hero__inner {
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.project-hero__kicker {
  width: fit-content;
  margin-bottom: 1rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(102,199,255,.16);
  color: var(--green-bright);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-hero h1 {
  max-width: 880px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.6vw, 4.8rem);
  line-height: 1.04;
  color: var(--white);
}

.project-hero__sub {
  max-width: 760px;
  margin-top: 1.2rem;
  color: rgba(255,255,255,.76);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.72;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.project-main h2 {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  line-height: 1.16;
  color: var(--green-deep);
}

.project-main h2:first-of-type { margin-top: 0; }
.project-main p { margin-top: .9rem; color: #444; line-height: 1.8; }

.project-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 1.25rem);
  display: grid;
  gap: 1rem;
}

.ps-card {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: 0 8px 28px rgba(0,0,0,.06);
}

.ps-card__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 1rem;
}

.ps-card h3 {
  font-family: var(--font-display);
  color: var(--green-deep);
  font-size: 1.25rem;
  line-height: 1.2;
}

.ps-card p {
  margin-top: .65rem;
  color: #555;
  line-height: 1.65;
  font-size: .93rem;
}

.ps-card .btn { margin-top: 1rem; width: 100%; }
.ps-card--dark { background: var(--green-deep); color: var(--white); }
.ps-card--dark .ps-stat + .ps-stat { border-top: 1px solid rgba(255,255,255,.12); margin-top: .85rem; padding-top: .85rem; }
.ps-stat__num { color: var(--green-bright); font-family: var(--font-display); font-weight: 900; font-size: 1.25rem; line-height: 1.25; }
.ps-stat__lbl { color: rgba(255,255,255,.62); font-size: .78rem; margin-top: .2rem; }

.legal-strip {
  background: #f5f7fb;
  padding: clamp(2.5rem, 5vw, 4rem) var(--section-px);
}

.legal-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.legal-item__label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .4rem;
}

.legal-item__val {
  color: var(--green-deep);
  font-weight: 800;
  line-height: 1.45;
}

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .project-layout { grid-template-columns: 1fr; }
  .project-sidebar { position: static; }
  .legal-strip__inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .blog-grid,
  .team-grid,
  .legal-strip__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE HELPERS
============================================================ */
@media (max-width: 768px) {
  :root { --section-py: clamp(2rem, 6vw, 3rem); }
}

/* ============================================================
   COOKIE BANNER
============================================================ */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.cookie-banner.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
}
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 1.2rem;
  border-radius: 20px;
  background: rgba(7,10,18,.96);
  color: var(--white);
  box-shadow: 0 18px 48px rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.cookie-banner__copy {
  max-width: 760px;
}
.cookie-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-bottom: .55rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-bright);
}
.cookie-banner__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: currentColor;
}
.cookie-banner__copy h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
}
.cookie-banner__copy p {
  margin-top: .55rem;
  color: rgba(255,255,255,.78);
  font-size: .94rem;
  line-height: 1.7;
}
.cookie-banner__copy a {
  color: var(--green-bright);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-banner__btn {
  white-space: nowrap;
}
@media (max-width: 820px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
.cookie-banner__actions .cookie-banner__btn {
    flex: 1 1 220px;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   BUSINESS FUSION VISUAL SYSTEM OVERRIDES
============================================================ */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42,157,244,.055), transparent 28%, transparent 72%, rgba(102,199,255,.04)),
    linear-gradient(180deg, rgba(7,10,18,.025), transparent 34%);
}

.section {
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(42,157,244,.045), transparent 20%, transparent 80%, rgba(102,199,255,.035));
  opacity: .48;
}

.section-inner {
  position: relative;
  z-index: 1;
}

.section--cream {
  background:
    linear-gradient(180deg, #f7f9fd 0%, #eef4fb 100%);
}

.section--dark,
.page-hero,
.project-hero,
.projects-hero {
  background-color: #070a12;
}

.section--dark {
  background:
    linear-gradient(135deg, #050608 0%, #07111f 48%, #081a32 100%);
}

.section-label {
  color: #2a9df4;
}

.section-label--light,
.section-title--white em,
.page-hero h1 em,
.project-hero__kicker,
.projects-hero__eyebrow,
.hero h1 em {
  color: #bde8ff !important;
}

.section-title {
  color: #070a12;
}

.section-title em {
  color: #2a9df4;
}

.lead {
  color: #5d6675;
}

.btn,
.share-btn,
.dk-form__submit,
.nav-links a.nav-cta,
.cookie-banner__btn {
  border-radius: 14px;
}

.btn-primary,
.dk-form__submit,
.nav-links a.nav-cta {
  background: #66c7ff;
  color: #050608;
  box-shadow: 0 12px 30px rgba(102,199,255,.22);
}

.btn-primary:hover,
.dk-form__submit:hover,
.nav-links a.nav-cta:hover {
  background: #d8f1ff;
  color: #050608;
}

.btn-dark,
.share-btn--primary {
  background: #070a12;
  color: #fff;
  border-color: #070a12;
}

.btn-dark:hover,
.share-btn--primary:hover {
  background: #2a9df4;
  border-color: #2a9df4;
}

.btn-outline--dark {
  color: #070a12;
}

.btn-outline--dark:hover {
  background: #070a12;
}

.btn-outline--light {
  color: rgba(255,255,255,.84);
  border-color: rgba(255,255,255,.28);
}

.site-nav.scrolled {
  background: rgba(5,6,8,.92);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 36px rgba(0,0,0,.24);
}

.nav-logo__leaf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #66c7ff, #2a9df4);
  color: #fff;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .04em;
  box-shadow: 0 10px 28px rgba(42,157,244,.28);
}

.nav-logo__text,
.footer-logo__text {
  font-family: var(--font-body);
  font-weight: 850;
  letter-spacing: .01em;
}

.nav-links a:hover,
.site-footer ul a:hover,
.footer-bottom__inner a:hover {
  color: #bde8ff;
}

.hero,
.page-hero,
.project-hero,
.projects-hero {
  background-color: #070a12;
}

.hero__bg {
  filter: saturate(.78) contrast(1.08);
}

.hero__stat,
.cookie-banner__inner,
.project-hero__kicker,
.page-hero__breadcrumb,
.article-hero__breadcrumb,
.privacy-hero__back,
.project-hero__back {
  border-radius: 16px !important;
  border-color: rgba(255,255,255,.16) !important;
  background: rgba(255,255,255,.075) !important;
}

.hero__stat-num,
.impact-item__num,
.ps-stat__num,
.registration-proof__value,
.project-card__more,
.projects-grid .project-card__more,
.share-tools__status {
  color: #66c7ff;
}

.info-card,
.project-card-grid > .project-card,
.project-body .project-card-grid > .project-card,
.blog-card,
.team-card,
.ps-card,
.workflow-card,
.proj-card {
  border-radius: 18px;
  border: 1px solid rgba(7,10,18,.09);
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 34px rgba(7,10,18,.065);
}

.info-card:hover,
.project-card-grid > .project-card:hover,
.blog-card:hover,
.team-card:hover,
.workflow-card:hover,
.proj-card:hover {
  border-color: rgba(42,157,244,.28);
  box-shadow: 0 18px 46px rgba(42,157,244,.12);
}

.project-card,
.projects-grid .project-card {
  border-radius: 18px;
  border-color: rgba(7,10,18,.10);
}

.project-card__eyebrow,
.project-body .project-card-grid > .project-card .project-card__eyebrow,
.proj-card__tag,
.projects-grid .project-card__tag,
.team-card__role,
.blog-card__link,
.dk-form__note a,
.contact-detail__val a {
  color: #2a9df4;
}

.project-card__title,
.project-body .project-card-grid > .project-card .project-card__title,
.projects-grid .project-card__title,
.proj-card__title,
.blog-card__title,
.team-card__name,
.workflow-card h3,
.ps-card h3,
.contact-detail__val,
.dk-form__group label,
.legal-item__val {
  color: #070a12;
}

.project-card-grid > .project-card--dark,
.project-body .project-card-grid > .project-card--dark,
.ps-card--dark,
.registration-proof__panel {
  background:
    linear-gradient(135deg, #050608 0%, #07152a 54%, #08234a 100%);
  border-color: rgba(255,255,255,.08);
  box-shadow: 0 18px 46px rgba(7,10,18,.22);
}

.project-card-grid > .project-card--dark .project-card__title,
.project-body .project-card-grid > .project-card--dark .project-card__title,
.ps-card--dark h3 {
  color: #fff;
}

.project-card-grid > .project-card--dark .project-card__eyebrow,
.project-body .project-card-grid > .project-card--dark .project-card__eyebrow {
  color: rgba(107,188,255,.78);
}

.project-track__item {
  border-color: rgba(7,10,18,.09);
  background: rgba(255,255,255,.94);
  border-radius: 16px;
}

.project-track__status,
.request-type__option input:checked + span {
  background: rgba(42,157,244,.11);
  border-color: rgba(42,157,244,.35);
  color: #1678c2;
}

.project-track__status--warm {
  background: rgba(102,199,255,.14);
  color: #1678c2;
}

.team-card::before,
.contact-detail__icon {
  background: linear-gradient(135deg, #070a12, #2a9df4);
  color: #fff;
  border-radius: 12px;
}

.team-card {
  background:
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.dk-form {
  background:
    linear-gradient(180deg, #f7f9fd 0%, #edf4ff 100%);
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 16px 44px rgba(7,10,18,.08);
}

.dk-form__group input,
.dk-form__group textarea {
  border-color: #dce5f2;
  border-radius: 12px;
}

.dk-form__group input:focus,
.dk-form__group textarea:focus {
  border-color: #66c7ff;
  box-shadow: 0 0 0 4px rgba(102,199,255,.16);
}

.request-type__option span,
.share-btn,
.share-tools--card {
  background: #f5f8fc;
  color: #070a12;
  border-color: rgba(7,10,18,.09);
}

.share-btn--secondary:hover {
  background: rgba(102,199,255,.10);
  border-color: rgba(42,157,244,.24);
}

.blog-card__img,
.project-card__img {
  background: #dce5f2;
  filter: saturate(.82) contrast(1.04);
}

.projects-grid .project-card__overlay,
.projects-grid .project-card:hover .project-card__overlay {
  background: #fff;
}

.project-card__overlay {
  background: linear-gradient(to top, rgba(5,6,8,.88), rgba(5,6,8,.10) 68%);
}

.project-card:hover .project-card__overlay {
  background: linear-gradient(to top, rgba(5,6,8,.94), rgba(42,157,244,.18) 70%);
}

.legal-strip {
  background:
    linear-gradient(180deg, #f7f9fd 0%, #eef4fb 100%);
}

.cookie-banner__inner {
  background: rgba(5,6,8,.96) !important;
  box-shadow: 0 20px 56px rgba(0,0,0,.32);
}

.cookie-banner__eyebrow,
.cookie-banner__copy a {
  color: #bde8ff;
}

img,
.blog-card__img,
.project-card__img,
.proj-card__img,
.ps-card__img,
.entry-content img {
  border-radius: 22px;
}

.page-hero__inner {
  max-width: min(1180px, var(--max-w)) !important;
}

.page-hero h1,
.project-hero h1,
.projects-hero h1 {
  max-width: 1120px !important;
  font-size: clamp(2.15rem, 4.4vw, 4.35rem) !important;
}

.page-hero__sub,
.project-hero__sub,
.projects-hero__sub {
  max-width: 820px !important;
}

.section--dark .section-title,
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--charcoal .section-title,
.section--charcoal h1,
.section--charcoal h2,
.section--charcoal h3,
.section--charcoal h4,
.cta-banner .section-title,
.cta-banner h1,
.cta-banner h2,
.cta-banner h3 {
  color: #fff !important;
}

.section--dark .lead,
.section--dark p,
.section--dark li,
.section--charcoal .lead,
.section--charcoal p,
.section--charcoal li,
.cta-banner p,
.cta-banner .lead {
  color: rgba(255,255,255,.78) !important;
}

.section--dark .section-label,
.section--charcoal .section-label,
.cta-banner .section-label {
  color: #bde8ff !important;
}

.section--dark .blog-card p,
.section--dark .blog-card h3,
.section--dark .blog-card .blog-card__title,
.section--dark .blog-card .blog-card__date,
.section--dark .project-card p,
.section--dark .project-card h3,
.section--dark .project-card .project-card__title,
.section--dark .project-card .project-card__desc,
.section--dark .project-card .project-card__tag {
  color: revert !important;
}

.team-card {
  grid-template-columns: 1fr !important;
  padding: 1.45rem !important;
}

.team-card::before {
  display: none !important;
}

.team-card::after {
  content: '';
  position: absolute;
  left: 1.45rem;
  right: 1.45rem;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #66c7ff, rgba(102,199,255,0));
}

.team-card__role {
  width: fit-content;
  margin-top: .55rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(102,199,255,.12);
}

.blog-card__link {
  width: fit-content;
  margin-top: 1.15rem;
  padding: .68rem .9rem;
  border-radius: 12px;
  background: #070a12;
  color: #fff !important;
  font-weight: 800;
  line-height: 1;
}

.blog-card__link:hover {
  gap: .55rem;
  background: #1678c2;
}

.blog-card__link::after {
  color: inherit;
}

.project-contact-grid {
  grid-template-columns: minmax(0,.88fr) minmax(520px,1.12fr) !important;
}

.project-contact-grid .dk-form {
  width: 100%;
  max-width: none !important;
}

.project-contact-grid .section-title {
  max-width: 880px;
  font-size: clamp(1.85rem, 3.4vw, 2.85rem);
}

.project-contact-grid .lead {
  max-width: 760px;
}

.nav-logo__leaf {
  display: none !important;
}

.nav-logo__text,
.footer-logo__text {
  font-size: 1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.footer-logo {
  gap: .65rem;
}

.nav-logo__img,
.footer-logo__img {
  width: 42px !important;
  height: 42px !important;
  flex: 0 0 42px;
  border-radius: 0 !important;
  object-fit: cover;
  background: transparent !important;
  box-shadow: none !important;
}

.legal-proof {
  grid-template-columns: minmax(320px,.9fr) minmax(0,1.1fr) !important;
}

.legal-proof__grid {
  gap: 1rem !important;
}

.legal-proof__card {
  display: flex;
  min-height: 108px !important;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 1.05rem !important;
  border-radius: 18px !important;
}

.legal-proof__card:first-child {
  grid-column: 1 / -1;
}

.legal-proof__label {
  font-size: .66rem !important;
  font-weight: 750 !important;
  letter-spacing: .06em !important;
  color: #687386 !important;
}

.legal-proof__value {
  color: #070a12 !important;
  font-family: var(--font-body) !important;
  font-size: clamp(.95rem, 1vw, 1.06rem) !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

.hero__visual::after {
  background: linear-gradient(180deg, rgba(5,6,8,.10), rgba(5,6,8,.42)) !important;
}

.hero__stat {
  background: #ffffff !important;
  border: 1px solid rgba(7,10,18,.10) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
  backdrop-filter: none !important;
}

.hero__stat-num {
  color: #1678c2 !important;
}

.hero__stat-lbl {
  color: #3f4756 !important;
  font-weight: 650;
}

.about-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.about-overview > div:first-child {
  max-width: 1120px;
}

.about-overview .section-title,
.about-overview .lead {
  max-width: 1120px !important;
}

.about-overview .info-grid {
  grid-template-columns: repeat(3, minmax(0,1fr));
  margin-top: .5rem;
}

.about-overview .info-card {
  min-height: 100%;
  border-radius: 20px;
}

.about-overview .info-card:nth-child(1) {
  background: #07152a;
  border-color: rgba(255,255,255,.10);
}

.about-overview .info-card:nth-child(1) h3,
.about-overview .info-card:nth-child(1) p {
  color: #fff !important;
}

.about-overview .info-card:nth-child(2) {
  background: #e7f5ff;
  border-color: rgba(42,157,244,.18);
}

.about-overview .info-card:nth-child(3) {
  background: #f7f9fd;
  border-color: rgba(7,10,18,.09);
}

#registration-proof.section--cream {
  background: #f6f8fc;
}

.legal-proof {
  align-items: stretch !important;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(7,10,18,.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 54px rgba(7,10,18,.07);
}

.legal-proof__intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #07152a 0%, #082646 100%) !important;
}

.legal-proof__grid {
  align-content: stretch;
}

.legal-proof__card {
  background: #f7f9fd !important;
  box-shadow: none !important;
}

.legal-proof__card:first-child {
  grid-column: auto;
}

.legal-proof__card:nth-child(5),
.legal-proof__card:nth-child(6) {
  grid-column: span 2;
}

.projects-grid .project-card {
  border-radius: 24px !important;
}

.projects-grid .project-card__img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  border-radius: 22px 22px 0 0 !important;
}

.projects-grid .project-card__overlay {
  min-height: 170px;
  padding: 1.25rem 1.3rem 1.35rem;
}

.projects-grid .project-card__more,
.project-card__more {
  opacity: 1 !important;
  transform: none !important;
  width: fit-content;
  margin-top: 1rem;
  padding: .68rem .9rem;
  border-radius: 12px;
  background: #07152a;
  color: #fff !important;
  font-weight: 800;
  line-height: 1;
}

.projects-grid .project-card:hover .project-card__more,
.project-card:hover .project-card__more {
  background: #1678c2;
}

.contact-detail__icon {
  position: relative;
  background: #f6f9ff !important;
  border: 1px solid rgba(7,10,18,.10);
  color: #1678c2 !important;
  border-radius: 14px !important;
  font-size: 0 !important;
  box-shadow: none !important;
}

.contact-detail__icon::before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  background: currentColor;
  -webkit-mask: var(--contact-icon) center / contain no-repeat;
  mask: var(--contact-icon) center / contain no-repeat;
}

.contact-detail:nth-child(1) .contact-detail__icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E");
}

.contact-detail:nth-child(2) .contact-detail__icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm8 9 8-5.2V6l-8 5.2L4 6v1.8L12 13Z'/%3E%3C/svg%3E");
}

.contact-detail:nth-child(3) .contact-detail__icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6.6 10.8c1.5 3 3.9 5.4 6.6 6.6l2.2-2.2a1 1 0 0 1 1-.25c1.1.36 2.25.55 3.45.55a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1C10.55 21 3 13.45 3 4a1 1 0 0 1 1-1h3.55a1 1 0 0 1 1 1c0 1.2.19 2.35.55 3.45a1 1 0 0 1-.25 1L6.6 10.8Z'/%3E%3C/svg%3E");
}

.contact-detail:nth-child(4) .contact-detail__icon {
  --contact-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='black' d='M6 2h8l5 5v15H6a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2Zm7 1.8V8h4.2L13 3.8ZM8 12v2h8v-2H8Zm0 4v2h6v-2H8Z'/%3E%3C/svg%3E");
}

.btn {
  min-height: 44px;
  padding: .82rem 1.25rem;
  border-width: 1.5px;
}

.btn-outline--light {
  background: rgba(255,255,255,.06);
}

.info-card,
.workflow-card,
.team-card,
.blog-card,
.project-card,
.proj-card,
.legal-proof__card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.info-card:hover,
.workflow-card:hover,
.team-card:hover,
.blog-card:hover,
.project-card:hover,
.proj-card:hover,
.legal-proof__card:hover {
  transform: translateY(-4px);
}

/* Final readability and project-card fixes */
.section-title em,
.page-hero h1 em,
.hero h1 em {
  font-style: normal !important;
}

.page-hero {
  background:
    linear-gradient(135deg, #050608 0%, #071016 52%, #08202b 100%);
}

.page-hero--blog {
  background: linear-gradient(135deg, rgba(5,6,8,.72), rgba(5,6,8,.42)), url('/wp-content/uploads/2026/05/3022.webp') center / cover no-repeat !important;
}

.page-hero--about {
  background: linear-gradient(135deg, rgba(5,6,8,.72), rgba(5,6,8,.42)), url('/wp-content/uploads/2026/05/2148890074.webp') center / cover no-repeat !important;
}

.project-hero::after,
.projects-hero::after,
.privacy-hero::after,
.article-hero::after {
  background: rgba(0,0,0,.30);
}

.project-card:hover .project-card__img,
.proj-card:hover .proj-card__img,
.blog-card:hover .blog-card__img,
.ps-card:hover .ps-card__img {
  transform: none !important;
}

.projects-grid .project-card__img {
  height: 260px;
  min-height: 260px;
  aspect-ratio: auto;
  object-fit: cover;
}

.proj-card__img {
  min-height: 280px;
  object-fit: cover;
}

.project-card-grid > .project-card--dark,
.project-body .project-card-grid > .project-card--dark,
.ps-card--dark,
.registration-proof__panel {
  color: rgba(255,255,255,.78);
}

.project-card-grid > .project-card--dark .project-card__desc,
.project-card-grid > .project-card--dark ul.project-card__list li,
.project-body .project-card-grid > .project-card--dark .project-card__desc,
.project-body .project-card-grid > .project-card--dark ul.project-card__list li,
.ps-card--dark p,
.registration-proof__panel p,
.registration-proof__panel .lead {
  color: rgba(255,255,255,.78) !important;
}

.project-card-grid > .project-card--dark .project-card__title,
.project-body .project-card-grid > .project-card--dark .project-card__title,
.ps-card--dark h3,
.registration-proof__panel h2,
.registration-proof__value {
  color: #fff !important;
}

.project-card-grid > .project-card--dark .project-card__eyebrow,
.project-body .project-card-grid > .project-card--dark .project-card__eyebrow {
  color: #bde8ff !important;
}

.hero__stat,
.page-hero__breadcrumb,
.project-hero__back,
.project-hero__kicker {
  background: rgba(255,255,255,.09) !important;
}

.hero__sub,
.page-hero__sub,
.project-hero__sub,
.projects-hero__sub {
  color: rgba(255,255,255,.82);
}

.registration-proof {
  align-items: center !important;
}

.registration-proof > .info-grid {
  align-self: center;
  align-content: center;
  gap: .85rem !important;
}

.registration-proof .info-card {
  padding: 1.05rem 1.15rem !important;
  min-height: 0 !important;
  border-radius: 16px;
}

.registration-proof .info-card h3 {
  font-size: .98rem;
  line-height: 1.25;
}

.registration-proof .info-card p {
  margin-top: .45rem;
  font-size: .88rem;
  line-height: 1.55;
}

.registration-proof__panel {
  padding: clamp(1.45rem, 2.4vw, 2rem) !important;
}

.registration-proof__panel .section-label {
  margin-bottom: .75rem;
}

.registration-proof__panel h2 {
  font-size: clamp(1.65rem, 3vw, 2.45rem) !important;
}

.registration-proof__panel .lead {
  margin-top: .9rem;
  font-size: .98rem;
}

.registration-proof__facts {
  gap: .6rem !important;
  margin-top: 1.1rem !important;
}

.registration-proof__fact {
  padding: .78rem .85rem !important;
  border-radius: 14px !important;
}

@media (max-width: 980px) {
  .project-contact-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 700px) {
  .projects-grid .project-card__img,
  .proj-card__img {
    height: 230px;
    min-height: 230px;
  }
}

/* Last visual cleanup for the Business Fusion theme */
.nav-logo__img,
.footer-logo__img {
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero__stat {
  background: #fff !important;
  border: 1px solid rgba(7,10,18,.10) !important;
  box-shadow: 0 14px 34px rgba(0,0,0,.18) !important;
  backdrop-filter: none !important;
}

.hero__stat-num {
  color: #1678c2 !important;
}

.hero__stat-lbl {
  color: #3f4756 !important;
}

.projects-grid .project-card__img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  border-radius: 22px 22px 0 0 !important;
}

.projects-grid .project-card__more,
.project-card__more {
  opacity: 1 !important;
  transform: none !important;
}

.hero__visual {
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  background: transparent !important;
  box-shadow: none !important;
}

.hero__visual::after {
  display: none !important;
}

.hero__visual img {
  display: none !important;
}

.hero__stats {
  position: static !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: .9rem !important;
}

.hero__stat {
  min-height: 112px;
  padding: 1.15rem 1.25rem !important;
  border-radius: 20px !important;
}

.hero__layout {
  grid-template-columns: 1fr !important;
}

.hero__content {
  max-width: 1180px !important;
}

.hero h1 {
  width: 100% !important;
  max-width: 1180px !important;
}

.home-facts {
  position: relative;
  z-index: 3;
  margin-top: 0;
  padding: 1.1rem var(--section-px) 1.25rem;
  background: #07152a;
}

.home-facts__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 190px));
  justify-content: center;
  gap: .75rem;
  max-width: 720px !important;
}

.home-fact {
  min-height: 72px;
  padding: .75rem .85rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 10px 22px rgba(0,0,0,.16);
}

.home-fact__num {
  color: #1678c2;
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 900;
  line-height: 1;
}

.home-fact__label {
  margin-top: .35rem;
  color: #3f4756;
  font-size: .74rem;
  font-weight: 750;
}

.page-hero--blog {
  background: linear-gradient(135deg, rgba(5,6,8,.84), rgba(5,6,8,.58)), url('/wp-content/uploads/2026/05/3022.webp') center / cover no-repeat !important;
}

.page-hero--about {
  background: linear-gradient(135deg, rgba(5,6,8,.84), rgba(5,6,8,.58)), url('/wp-content/uploads/2026/05/2148890074.webp') center / cover no-repeat !important;
}

.section--dark {
  background: linear-gradient(135deg, #050608 0%, #07152a 58%, #082646 100%) !important;
}

#registration-proof.section--cream {
  background: linear-gradient(180deg, #f1f7ff 0%, #ffffff 100%) !important;
}

#projects {
  background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%) !important;
}

#workflow.section--cream {
  background: linear-gradient(180deg, #f7fbff 0%, #eef4ff 100%) !important;
}

#team {
  background: linear-gradient(180deg, #ffffff 0%, #f3fbf7 100%) !important;
}

#contacts {
  background: linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%) !important;
}

#workflow {
  padding-top: clamp(3rem, 6vw, 4.5rem) !important;
  padding-bottom: clamp(3rem, 6vw, 4.5rem) !important;
}

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

/* Final hero/card fixes */
.page-hero h1,
.project-hero h1,
.projects-hero h1 {
  width: 100% !important;
  max-width: 1180px !important;
}

.page-hero__sub,
.project-hero__sub,
.projects-hero__sub {
  max-width: 820px !important;
}

.projects-hero::after,
.project-hero::after,
.privacy-hero::after,
.article-hero::after {
  background: rgba(0,0,0,.16) !important;
}

.proj-card {
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  border-radius: 24px !important;
}

.proj-card__img {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  border-radius: 24px 24px 0 0 !important;
}

.blog-card__link,
.proj-card .blog-card__link,
.projects-grid .project-card__more,
.project-card__more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: fit-content !important;
  min-height: 42px !important;
  margin-top: 1rem !important;
  padding: .72rem 1rem !important;
  border-radius: 14px !important;
  background: #66c7ff !important;
  color: #07152a !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  box-shadow: 0 10px 22px rgba(42,157,244,.18) !important;
}

.blog-card__link:hover,
.proj-card:hover .blog-card__link,
.projects-grid .project-card:hover .project-card__more,
.project-card:hover .project-card__more {
  background: #bde8ff !important;
  color: #07152a !important;
  transform: translateY(-1px) !important;
}

@media (max-width: 700px) {
  .proj-card__img {
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 16 / 9 !important;
  }
}

/* Homepage content expansion */
.section-head__text {
  max-width: 540px;
  margin: 0;
}

.section--audience {
  background:
    radial-gradient(circle at 12% 18%, rgba(102,199,255,.28), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(189,232,255,.26), transparent 26%),
    linear-gradient(135deg, #f6fbff 0%, #edf7ff 48%, #f7fbff 100%) !important;
}

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

.audience-card {
  min-height: 245px;
  padding: 1.35rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 18px 42px rgba(7,10,18,.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: rgba(102,199,255,.55);
  box-shadow: 0 24px 54px rgba(7,10,18,.12);
}

.audience-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #e6f6ff;
  color: #1678c2;
  font-weight: 900;
}

.audience-card h3 {
  margin-top: 1.05rem;
  color: #07152a;
  font-size: 1.16rem;
  line-height: 1.22;
}

.audience-card p {
  margin-top: .72rem;
  color: #4d5664;
  line-height: 1.65;
}

.audience-card--blue {
  background: linear-gradient(135deg, #dbf2ff 0%, #f7fcff 100%);
}

.audience-card--dark {
  background: linear-gradient(135deg, #07152a 0%, #082646 100%);
  color: #fff;
}

.audience-card--dark span {
  background: rgba(255,255,255,.12);
  color: #bde8ff;
}

.audience-card--dark h3,
.audience-card--dark p {
  color: #fff;
}

.audience-card--dark p {
  opacity: .78;
}

.section--formats {
  background:
    linear-gradient(90deg, rgba(102,199,255,.14) 1px, transparent 1px),
    linear-gradient(180deg, #fff 0%, #f1f8ff 100%) !important;
  background-size: 72px 100%, auto !important;
}

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

.format-card {
  padding: 1.45rem;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 16px 38px rgba(7,10,18,.06);
  transition: transform .22s ease, box-shadow .22s ease;
}

.format-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(7,10,18,.11);
}

.format-card h3 {
  color: #07152a;
  font-size: 1.18rem;
}

.format-card p {
  margin-top: .65rem;
  color: #4d5664;
  line-height: 1.68;
}

.format-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 1.1rem;
  padding: .72rem 1rem;
  border-radius: 14px;
  background: #66c7ff;
  color: #07152a;
  font-weight: 850;
  line-height: 1;
}

.format-card a:hover {
  background: #bde8ff;
  color: #07152a;
}

.section--support-map {
  background:
    radial-gradient(circle at 18% 20%, rgba(102,199,255,.26), transparent 30%),
    linear-gradient(135deg, #050608 0%, #07152a 54%, #082646 100%) !important;
  color: #fff;
}

.support-map {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.support-map .section-title,
.support-map .lead {
  color: #fff;
}

.support-map .lead {
  opacity: .78;
}

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

.support-map__grid div {
  min-height: 150px;
  padding: 1.15rem;
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.support-map__grid strong {
  display: block;
  color: #bde8ff;
  font-size: 1.05rem;
}

.support-map__grid span {
  display: block;
  margin-top: .55rem;
  color: rgba(255,255,255,.76);
  line-height: 1.6;
}

.registry-document {
  margin-top: 2rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 26px;
  background: linear-gradient(180deg, #f7fbff 0%, #fff 100%);
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 18px 44px rgba(7,10,18,.08);
}

.registry-document__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.registry-document__head h3 {
  margin-top: .35rem;
  color: #07152a;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

.registry-document__frame {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
  border-radius: 18px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7,10,18,.08);
}

.section--form-invite {
  background:
    radial-gradient(circle at 12% 20%, rgba(102,199,255,.22), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(189,232,255,.2), transparent 24%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%) !important;
  color: #07152a;
}

.section--work-signals {
  background:
    radial-gradient(circle at 80% 18%, rgba(102,199,255,.18), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f3f9ff 100%) !important;
}

.work-signals-board {
  display: grid !important;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr) !important;
  gap: 1rem !important;
  align-items: stretch !important;
  padding: clamp(1rem, 2vw, 1.35rem) !important;
  border-radius: 30px !important;
  background: #fff !important;
  border: 1px solid rgba(7,10,18,.08) !important;
  box-shadow: 0 22px 60px rgba(7,10,18,.08) !important;
}

.work-signals-board__intro {
  padding: clamp(1.35rem, 3vw, 2.1rem) !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, #07152a 0%, #082646 100%) !important;
  color: #fff !important;
}

.work-signals-board__intro .section-label {
  color: #bde8ff !important;
}

.work-signals-board__intro .section-title {
  color: #fff !important;
  font-size: clamp(1.7rem, 3vw, 2.55rem) !important;
  line-height: 1.08 !important;
}

.work-signals-board__intro .lead {
  margin-top: 1rem !important;
  color: rgba(255,255,255,.76) !important;
  line-height: 1.7 !important;
}

.work-signals-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1rem !important;
  margin: 0 !important;
}

.work-signal-card {
  min-height: 0 !important;
  padding: 1.15rem !important;
  border-radius: 22px !important;
  background: #f7fbff !important;
  border: 1px solid rgba(7,10,18,.08) !important;
  box-shadow: none !important;
}

.work-signal-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: #e4f5ff !important;
  color: #1678c2 !important;
  font-weight: 900;
}

.work-signal-card h3 {
  margin-top: 1rem;
  color: #07152a !important;
  font-size: 1.08rem !important;
}

.work-signal-card p {
  margin-top: .65rem;
  color: #4d5664 !important;
  line-height: 1.62 !important;
}

.form-invite {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .74fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2.2rem);
  border-radius: 30px;
  background: #fff;
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 24px 70px rgba(7,10,18,.1);
}

.form-invite .section-label--light {
  color: #1678c2 !important;
}

.form-invite h2 {
  margin-top: .45rem;
  color: #07152a;
  font-size: clamp(1.65rem, 3.2vw, 2.75rem);
  line-height: 1.08;
}

.form-invite p {
  margin-top: .75rem;
  max-width: 700px;
  color: #4d5664;
  line-height: 1.7;
}

.form-invite__panel {
  padding: 1.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #07152a 0%, #082646 100%);
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 16px 36px rgba(7,10,18,.14);
}

.form-invite__panel-title {
  color: #bde8ff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.form-invite__panel ul {
  display: grid;
  gap: .55rem;
  margin: .85rem 0 0;
  padding: 0;
  list-style: none;
}

.form-invite__panel li {
  position: relative;
  padding-left: 1.1rem;
  color: rgba(255,255,255,.84);
  line-height: 1.45;
  font-size: .92rem;
}

.form-invite__panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62em;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: #66c7ff;
}

.form-invite__reasons {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  padding-top: .2rem;
}

.form-invite__reasons span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: .45rem .72rem;
  border-radius: 14px;
  background: #edf8ff;
  border: 1px solid rgba(22,120,194,.14);
  color: #1678c2;
  font-size: .82rem;
  font-weight: 800;
}

.form-invite__button {
  margin-top: 1.35rem;
}

.project-main .section--form-invite,
.entry-content ~ .section--form-invite {
  margin: 2.5rem 0;
  padding: 0 !important;
  border-radius: 28px;
  overflow: hidden;
}

.project-main .section--form-invite .section-inner,
.entry-content ~ .section--form-invite .section-inner {
  padding: 0 !important;
}

.project-main .form-invite,
.entry-content ~ .section--form-invite .form-invite {
  grid-template-columns: 1fr;
  border-radius: 28px;
}

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

  .support-map {
    grid-template-columns: 1fr;
  }

  .work-signals-board {
    grid-template-columns: 1fr !important;
  }

  .work-signals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

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

@media (max-width: 700px) {
  .audience-grid,
  .format-grid,
  .support-map__grid,
  .work-signals-grid {
    grid-template-columns: 1fr !important;
  }

  .audience-card {
    min-height: 0;
  }

  .registry-document__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .registry-document__frame {
    min-height: 520px;
  }
}

/* Hardened CTA component: intentionally separate from older form-invite rules */
.section--bf-cta {
  background:
    radial-gradient(circle at 14% 18%, rgba(102,199,255,.22), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #edf6ff 100%) !important;
  color: #07152a !important;
}

.bf-cta {
  display: grid !important;
  grid-template-columns: minmax(520px, 1fr) minmax(340px, 430px) !important;
  grid-template-areas:
    "copy panel"
    "chips panel" !important;
  gap: clamp(1rem, 2.5vw, 2rem) !important;
  align-items: stretch !important;
  width: 100% !important;
  padding: clamp(1.35rem, 3vw, 2.25rem) !important;
  border-radius: 30px !important;
  background: #fff !important;
  border: 1px solid rgba(7,10,18,.08) !important;
  box-shadow: 0 26px 72px rgba(7,10,18,.1) !important;
}

.bf-cta__copy {
  grid-area: copy !important;
  min-width: 0 !important;
}

.bf-cta__label {
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
  color: #1678c2 !important;
  font-size: .76rem !important;
  font-weight: 900 !important;
  letter-spacing: .11em !important;
  text-transform: uppercase !important;
}

.bf-cta__label::before {
  content: '' !important;
  width: 32px !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: #66c7ff !important;
}

.bf-cta h2 {
  max-width: 920px !important;
  margin: .8rem 0 0 !important;
  color: #07152a !important;
  font-size: clamp(2rem, 4vw, 3.6rem) !important;
  line-height: 1.03 !important;
  letter-spacing: 0 !important;
}

.bf-cta p {
  max-width: 760px !important;
  margin: 1rem 0 0 !important;
  color: #4d5664 !important;
  font-size: 1.02rem !important;
  line-height: 1.72 !important;
}

.bf-cta__button {
  margin-top: 1.5rem !important;
}

.bf-cta__panel {
  grid-area: panel !important;
  min-width: 0 !important;
  padding: 1.3rem !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, #07152a 0%, #082646 100%) !important;
  border: 1px solid rgba(7,10,18,.1) !important;
  box-shadow: 0 18px 42px rgba(7,10,18,.16) !important;
}

.bf-cta__panel-title {
  color: #bde8ff !important;
  font-size: .78rem !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.bf-cta__panel ul {
  display: grid !important;
  gap: .75rem !important;
  margin: 1rem 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.bf-cta__panel li {
  position: relative !important;
  padding-left: 1.2rem !important;
  color: rgba(255,255,255,.86) !important;
  line-height: 1.48 !important;
}

.bf-cta__panel li::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: .62em !important;
  width: .44rem !important;
  height: .44rem !important;
  border-radius: 50% !important;
  background: #66c7ff !important;
}

.bf-cta__chips {
  grid-area: chips !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: .55rem !important;
  align-content: end !important;
}

.bf-cta__chips span {
  display: inline-flex !important;
  align-items: center !important;
  min-height: 38px !important;
  padding: .45rem .75rem !important;
  border-radius: 14px !important;
  background: #edf8ff !important;
  border: 1px solid rgba(22,120,194,.14) !important;
  color: #1678c2 !important;
  font-size: .82rem !important;
  font-weight: 850 !important;
}

.project-main .section--bf-cta,
.entry-content ~ .section--bf-cta {
  margin: 2.5rem 0 !important;
  padding: 0 !important;
  border-radius: 30px !important;
  overflow: hidden !important;
}

.project-main .section--bf-cta .section-inner,
.entry-content ~ .section--bf-cta .section-inner {
  padding: 0 !important;
}

.project-main .bf-cta,
.entry-content ~ .section--bf-cta .bf-cta {
  grid-template-columns: 1fr !important;
  grid-template-areas:
    "copy"
    "panel"
    "chips" !important;
}

@media (max-width: 980px) {
  .bf-cta {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "panel"
      "chips" !important;
  }
}

@media (max-width: 700px) {
  .bf-cta {
    padding: 1rem !important;
    border-radius: 24px !important;
  }

  .bf-cta h2 {
    font-size: clamp(1.65rem, 9vw, 2.35rem) !important;
  }
}

/* Context and article refinements */
.section--context {
  background:
    radial-gradient(circle at 8% 18%, rgba(102,199,255,.16), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #edf6ff 100%);
}

.context-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: clamp(1rem, 2.4vw, 1.8rem);
  padding: clamp(1.4rem, 3vw, 2.35rem);
  border-radius: 30px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 24px 70px rgba(7,10,18,.08);
}

.context-panel__intro {
  min-width: 0;
}

.context-panel__intro .section-title {
  max-width: 980px;
  font-size: clamp(2rem, 4vw, 3.25rem);
}

.context-panel__source {
  margin-top: 1.1rem;
  color: #6c7480;
  font-size: .9rem;
  line-height: 1.6;
}

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

.context-stat {
  min-height: 150px;
  padding: 1.05rem;
  border-radius: 20px;
  background: #07152a;
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 42px rgba(7,10,18,.14);
}

.context-stat strong {
  display: block;
  color: #66c7ff;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.context-stat span {
  display: block;
  margin-top: .7rem;
  color: rgba(255,255,255,.78);
  font-size: .92rem;
  line-height: 1.5;
}

.context-panel__notes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.context-note {
  padding: 1.1rem;
  border-radius: 20px;
  background: #f4f9ff;
  border: 1px solid rgba(22,120,194,.12);
}

.context-note h3 {
  color: #07152a;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.22;
}

.context-note p {
  margin-top: .65rem;
  color: #53606d;
  line-height: 1.65;
}

.single-article .page-hero h1 {
  max-width: 1120px;
}

.single-article .page-hero__sub {
  max-width: 760px;
}

.article-section {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .68fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: start;
}

.article-main-card,
.article-side-card,
.article-action {
  border-radius: 28px;
  border: 1px solid rgba(7,10,18,.08);
  box-shadow: 0 18px 54px rgba(7,10,18,.08);
}

.article-main-card {
  min-width: 0;
  padding: clamp(1.1rem, 2.5vw, 2rem);
  background: #fff;
}

.article-featured {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 1.6rem;
}

.article-copy {
  color: #1f2937;
  font-size: 1.08rem;
  line-height: 1.82;
}

.article-copy > * + * {
  margin-top: 1.05rem;
}

.article-copy h2,
.article-copy h3,
.article-copy h4 {
  margin-top: 2rem;
  color: #07152a;
  font-family: var(--font-display);
  line-height: 1.16;
}

.article-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.article-copy h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.article-copy ul,
.article-copy ol {
  padding-left: 1.25rem;
}

.article-copy li + li {
  margin-top: .45rem;
}

.article-share-row {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(7,10,18,.08);
}

.article-sidebar {
  display: grid;
  gap: 1rem;
}

.article-side-card {
  padding: 1.25rem;
  background: #fff;
}

.article-side-card--dark {
  background: linear-gradient(135deg, #07152a 0%, #082646 100%);
  color: #fff;
}

.article-side-card h2,
.article-side-card h3 {
  color: inherit;
  font-family: var(--font-display);
  line-height: 1.18;
}

.article-side-card h2 {
  margin-top: .7rem;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
}

.article-side-card p {
  margin-top: .85rem;
  color: rgba(255,255,255,.76);
  line-height: 1.65;
}

.article-side-card:not(.article-side-card--dark) p,
.article-side-card:not(.article-side-card--dark) li {
  color: #53606d;
}

.article-side-card ul {
  margin-top: .9rem;
  padding-left: 1.1rem;
}

.article-side-card li + li {
  margin-top: .55rem;
}

.article-action-section {
  background: #07152a;
}

.article-action {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr);
  gap: clamp(1rem, 2.8vw, 2rem);
  align-items: center;
  padding: clamp(1.35rem, 3vw, 2.4rem);
  background:
    radial-gradient(circle at 12% 0%, rgba(102,199,255,.2), transparent 28%),
    linear-gradient(135deg, #fff 0%, #f1f8ff 100%);
}

.article-action h2 {
  max-width: 780px;
  color: #07152a;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.article-action p {
  max-width: 700px;
  margin: 1rem 0 1.4rem;
  color: #4d5664;
  font-size: 1.05rem;
  line-height: 1.72;
}

.article-action__items {
  display: grid;
  gap: .75rem;
}

.article-action__items div {
  padding: 1rem;
  border-radius: 18px;
  background: #07152a;
  color: #fff;
}

.article-action__items strong,
.article-action__items span {
  display: block;
}

.article-action__items strong {
  color: #66c7ff;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.article-action__items span {
  margin-top: .35rem;
  color: rgba(255,255,255,.76);
  line-height: 1.52;
}

@media (max-width: 1040px) {
  .context-panel,
  .article-layout,
  .article-action {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .context-panel,
  .article-main-card,
  .article-action {
    border-radius: 22px;
  }

  .context-panel__stats,
  .context-panel__notes {
    grid-template-columns: 1fr;
  }

  .context-stat {
    min-height: 0;
  }

  .article-featured {
    border-radius: 18px;
  }
}

/* Global compact spacing pass */
.section {
  padding-top: clamp(3rem, 5vw, 5rem) !important;
  padding-bottom: clamp(3rem, 5vw, 5rem) !important;
}

.section--context,
.section--bf-cta,
.section--work-signals,
#workflow,
#support-map,
#team,
#contacts,
#registration-proof {
  padding-top: clamp(2.4rem, 4vw, 3.8rem) !important;
  padding-bottom: clamp(2.4rem, 4vw, 3.8rem) !important;
}

.page-hero,
.project-hero,
.projects-hero,
.privacy-hero,
.article-hero {
  padding-top: calc(var(--nav-h) + clamp(2.4rem, 4vw, 3.6rem)) !important;
  padding-bottom: clamp(2.6rem, 4.5vw, 4rem) !important;
}

.hero {
  min-height: min(760px, 88vh) !important;
  padding-top: calc(var(--nav-h) + clamp(2rem, 4vw, 3.5rem)) !important;
  padding-bottom: clamp(2.2rem, 4vw, 3.5rem) !important;
}

.project-body .section,
.single-article .section {
  padding-top: clamp(2rem, 3.5vw, 3.2rem) !important;
  padding-bottom: clamp(2rem, 3.5vw, 3.2rem) !important;
}

.legal-strip,
.home-facts {
  padding-top: .9rem !important;
  padding-bottom: .9rem !important;
}

/* Mobile navigation and home-page hard fixes */
@media (max-width: 900px) {
  .site-nav {
    background: rgba(5,6,8,.96) !important;
    box-shadow: 0 8px 28px rgba(0,0,0,.22) !important;
  }

  .site-nav__inner {
    padding-left: clamp(1rem,4vw,1.35rem) !important;
    padding-right: clamp(1rem,4vw,1.35rem) !important;
  }

  .nav-logo {
    min-width: 0 !important;
  }

  .nav-logo__img {
    width: 36px !important;
    height: 36px !important;
    flex: 0 0 36px !important;
  }

  .nav-logo__text {
    font-size: .94rem !important;
    line-height: 1.05 !important;
  }

  .nav-burger {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 46px !important;
    height: 46px !important;
    flex: 0 0 46px !important;
    gap: 5px !important;
    padding: 0 !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    background: rgba(255,255,255,.10) !important;
    z-index: 1002 !important;
  }

  .nav-burger span {
    width: 22px !important;
    height: 2px !important;
    background: #fff !important;
    opacity: 1 !important;
  }

  .nav-links {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    min-height: 100dvh !important;
    padding: calc(var(--nav-h) + 1.5rem) 1.25rem 2rem !important;
    background: rgba(5,6,8,.98) !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: .75rem !important;
    z-index: 1001 !important;
    overflow-y: auto !important;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links li {
    width: 100% !important;
  }

  .nav-links a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    min-height: 52px !important;
    padding: .9rem 1rem !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.07) !important;
    color: #fff !important;
    font-size: 1.05rem !important;
    font-weight: 800 !important;
  }

  .nav-links a.nav-cta {
    justify-content: center !important;
    margin-top: .5rem !important;
    background: #66c7ff !important;
    color: #07152a !important;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden !important;
  }

  .section-inner,
  .hero__layout,
  .page-hero__inner,
  .project-hero__inner,
  .projects-hero__inner {
    max-width: 100% !important;
  }

  .legal-proof,
  .legal-proof__grid,
  .legal-proof__card,
  .registration-proof,
  .registration-proof__panel,
  .registration-proof__facts,
  .registration-proof__fact {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-wrap: anywhere !important;
  }
}

/* Project page content and form fixes */
.project-body,
.project-layout,
.project-main,
.project-sidebar,
.project-contact-grid,
.project-contact-grid > *,
.project-main .section--bf-cta,
.project-main .section--bf-cta * {
  min-width: 0 !important;
}

.project-layout {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px) !important;
  gap: clamp(1.25rem, 2.4vw, 2rem) !important;
}

.project-info-panel {
  margin: 1.7rem 0 2rem !important;
  padding: clamp(1.2rem, 2.2vw, 1.7rem) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 94% 0%, rgba(102,199,255,.16), transparent 34%),
    #ffffff !important;
  border: 1px solid rgba(7,10,18,.08) !important;
  box-shadow: 0 18px 52px rgba(7,10,18,.075) !important;
}

.project-info-panel--soft {
  background:
    radial-gradient(circle at 0% 0%, rgba(102,199,255,.18), transparent 36%),
    linear-gradient(135deg, #eef8ff 0%, #ffffff 100%) !important;
}

.project-info-panel .section-label {
  margin-bottom: .75rem !important;
}

.project-info-panel h2 {
  max-width: 980px !important;
  margin-top: 0 !important;
}

.project-info-panel p {
  max-width: 980px !important;
}

.project-info-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: .85rem !important;
  margin-top: 1.15rem !important;
}

.project-info-item {
  padding: 1rem !important;
  border-radius: 18px !important;
  background: rgba(255,255,255,.82) !important;
  border: 1px solid rgba(7,10,18,.07) !important;
}

.project-info-item h3 {
  margin: 0 !important;
  color: #07152a !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.28 !important;
  font-weight: 850 !important;
}

.project-info-item p {
  margin-top: .55rem !important;
  color: #556071 !important;
  font-size: .94rem !important;
  line-height: 1.62 !important;
}

.project-check-list {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: .75rem !important;
  margin: 1.15rem 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.project-check-list li {
  position: relative !important;
  margin: 0 !important;
  padding: .9rem 1rem .9rem 2.4rem !important;
  border-radius: 18px !important;
  background: #fff !important;
  border: 1px solid rgba(22,120,194,.13) !important;
  color: #263242 !important;
  line-height: 1.55 !important;
}

.project-check-list li::before {
  content: "" !important;
  position: absolute !important;
  left: 1rem !important;
  top: 1.18rem !important;
  width: .58rem !important;
  height: .58rem !important;
  border-radius: 999px !important;
  background: #66c7ff !important;
  box-shadow: 0 0 0 4px rgba(102,199,255,.18) !important;
}

.project-main .section--bf-cta {
  width: 100% !important;
  margin: 1.6rem 0 2rem !important;
  padding: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

.project-main .section--bf-cta .section-inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
}

.project-main .bf-cta {
  max-width: 100% !important;
  grid-template-columns: minmax(0, .98fr) minmax(280px, .72fr) !important;
  grid-template-areas:
    "copy panel"
    "chips chips" !important;
  gap: 1rem !important;
  padding: clamp(1.2rem, 2.2vw, 1.65rem) !important;
}

.project-main .bf-cta h2 {
  max-width: 820px !important;
  font-size: clamp(1.65rem, 3vw, 2.35rem) !important;
}

.project-contact-grid {
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr) !important;
  gap: clamp(1rem, 2.2vw, 1.8rem) !important;
  align-items: start !important;
  overflow: hidden !important;
}

.project-contact-grid .section-title {
  max-width: 100% !important;
  font-size: clamp(1.8rem, 3vw, 2.65rem) !important;
}

.project-contact-grid .lead {
  max-width: 100% !important;
}

.project-contact-grid .dk-form {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

@media (max-width: 1180px) {
  .project-layout,
  .project-contact-grid {
    grid-template-columns: 1fr !important;
  }

  .project-sidebar {
    position: static !important;
  }
}

@media (max-width: 820px) {
  .project-info-grid,
  .project-check-list {
    grid-template-columns: 1fr !important;
  }

  .project-main .bf-cta {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "copy"
      "panel"
      "chips" !important;
  }
}
