:root {
  --bg: #040914;
  --bg-2: #071120;
  --bg-3: #0a1629;
  --paper: #0d1727;
  --paper-2: #132033;
  --paper-3: #1a2a40;
  --ink: #eef3fb;
  --ink-soft: #aab8cb;
  --text-soft: #dfe7f4;
  --muted: #7f8ba0;
  --muted-inverse: rgba(223, 231, 244, 0.72);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.12);
  --brand: #cad9f3;
  --brand-strong: #d6e4fb;
  --brand-deep: #22324c;
  --success: #75d8a8;
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 30px 70px rgba(0, 0, 0, 0.26);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1380px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  color: var(--text-soft);
  line-height: 1.68;
  background:
    linear-gradient(90deg, rgba(67, 99, 149, 0.09) 0%, transparent 14%, transparent 86%, rgba(67, 99, 149, 0.06) 100%),
    linear-gradient(180deg, #02070f 0%, #060d18 32%, #071120 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background: linear-gradient(90deg,
    rgba(255, 255, 255, 0.015) 0%,
    rgba(255, 255, 255, 0.0) 8%,
    rgba(102, 141, 205, 0.03) 20%,
    rgba(255, 255, 255, 0.0) 34%,
    rgba(255, 255, 255, 0.015) 50%,
    rgba(255, 255, 255, 0.0) 66%,
    rgba(102, 141, 205, 0.03) 80%,
    rgba(255, 255, 255, 0.0) 100%);
}

body::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 84px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(175, 197, 231, 0.38), transparent);
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
strong { font-weight: 800; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.shell {
  width: min(var(--container), calc(100% - 42px));
  margin: 0 auto;
}

.site-top {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(3, 8, 16, 0.74);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.site-top__row {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #eef3fb;
}

.brand-mark span:last-child {
  min-width: 0;
  max-width: min(34vw, 390px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-mark__badge {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(202, 217, 243, 0.09);
  border: 1px solid rgba(202, 217, 243, 0.22);
  color: #e6eefb;
  font-size: 0.76rem;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(232, 239, 249, 0.72);
}

.site-nav a:not(.cta-btn)::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: rgba(202, 217, 243, 0.56);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #f5f9ff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #edf3fb;
}

.cta-btn,
.ghost-btn,
.inline-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  font-weight: 800;
}

.cta-btn,
.ghost-btn {
  min-height: 70px;
  padding: 0 28px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.cta-btn {
  background: #c8d8f2;
  color: #1b2a44 !important;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 12px 28px rgba(84, 113, 163, 0.14);
  border-radius: 2px;
  white-space: nowrap;
}

.ghost-btn {
  color: #edf3fb;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 2px;
}

.hero-main .ghost-btn,
.page-hero > :first-child .ghost-btn,
.band-panel .ghost-btn,
.story-card .ghost-btn,
.panel .ghost-btn,
.contact-card .ghost-btn,
.legal-card .ghost-btn {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.cta-btn:hover,
.ghost-btn:hover,
.inline-link:hover {
  transform: translateY(-2px);
}

main { padding: 28px 0 18px; }
.section-block { padding: 26px 0; }
.page-frame--hero { margin-top: 8px; }

.hero-shell,
.page-hero,
.band-panel,
.mosaic-grid,
.grid-2,
.cards-3,
.service-grid,
.metric-grid,
.outcome-grid,
.info-strip,
.site-foot__grid,
.contact-grid,
.contact-list,
.contact-brief,
.service-rail,
.process-list,
.number-list,
.legal-grid,
.stack-list {
  display: grid;
  gap: 22px;
}

.hero-shell {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  align-items: start;
}

.hero-main,
.band-panel,
.story-card,
.panel,
.contact-card,
.legal-card,
.service-card,
.page-hero > :first-child {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--paper-3), var(--paper));
  color: var(--ink);
  border: 1px solid rgba(160, 186, 230, 0.14);
  box-shadow: var(--shadow-card);
}

.hero-main::before,
.band-panel::before,
.story-card::before,
.panel::before,
.contact-card::before,
.legal-card::before,
.service-card::before,
.page-hero > :first-child::before {
  content: '';
  position: absolute;
  left: 30px;
  right: 30px;
  top: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(170, 193, 231, 0.32), rgba(255, 255, 255, 0.04));
}

.feature-card--dark,
.cta-slab,
.quote-card,
.page-hero__aside,
.info-strip,
.foot-panel,
.hero-visual-card,
.stat-card,
.site-foot__box {
  position: relative;
  overflow: hidden;
  color: #edf3fb;
  background: linear-gradient(180deg, rgba(8, 16, 31, 0.97), rgba(4, 10, 21, 0.98));
  border: 1px solid rgba(160, 186, 230, 0.12);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.feature-card--dark::before,
.cta-slab::before,
.quote-card::before,
.page-hero__aside::before,
.info-strip::before,
.foot-panel::before,
.hero-visual-card::before,
.stat-card::before,
.site-foot__box::before {
  content: '';
  position: absolute;
  left: 24px;
  right: 24px;
  top: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(170, 193, 231, 0.3), rgba(255, 255, 255, 0.04));
}

.hero-main {
  padding: 52px 52px 36px;
  border-radius: var(--radius-xl);
  min-height: 860px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-main h1 {
  font-size: 40px;  
  margin: 30px 0 24px;
}

.hero-main p {
  max-width: 44ch;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.hero-side {
  display: grid;
  gap: 24px;
}

.hero-visual-card {
  padding: 24px;
  border-radius: 32px;
}

.hero-visual-card img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.overlay-note {
  position: static;
  margin-top: 18px;
  padding: 18px 20px 0;
  max-width: none;
  color: var(--muted-inverse);
}

.hero-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.stat-card {
  min-height: 220px;
  padding: 30px;
  border-radius: 26px;
}

.stat-card strong {
  display: block;
  margin-top: 18px;
  font-size: 32px;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.stat-card p {
  margin-top: 14px;
  color: var(--muted-inverse);
}

.eyebrow,
.stat-label,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 800;
}

.eyebrow,
.stat-label {
  color: #abc0e4;
}

.kicker {
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: #dfe9f8;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-line span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.trust-line strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.6rem;
}

.page-hero {
  grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
  align-items: stretch;
}

.page-hero > :first-child {
  padding: 42px 42px 36px;
  border-radius: var(--radius-xl);
}

.page-hero__title,
.section-head h2,
.section-title,
.story-card h2,
.panel h2,
.contact-card h2,
.cta-slab h2,
.legal-card h1 {
  font-size: 40px;
}

.page-hero__title { 
  margin: 18px 0 16px;
}

.page-hero__aside {
  padding: 36px 34px;
  border-radius: 28px;
}

.band-panel,
.story-card,
.panel,
.contact-card,
.legal-card,
.service-card,
.feature-card--dark,
.cta-slab,
.quote-card,
.foot-panel {
  padding: 32px;
  border-radius: 30px;
}

.band-panel {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.mosaic-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.grid-2,
.contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards-3,
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.metric-grid,
.outcome-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.info-strip { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.site-foot__grid { grid-template-columns: 1.2fr 0.8fr 1fr 1fr; }
.contact-list,
.contact-brief,
.service-rail,
.process-list,
.number-list,
.legal-grid,
.stack-list { gap: 14px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.section-head p {
  max-width: 54ch;
  color: rgba(223, 231, 244, 0.72);
}

.number-list__item,
.process-list__item,
.service-rail__item,
.contact-list__item {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 20px 0 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.number-list__item::before,
.process-list__item::before,
.service-rail__item::before,
.contact-list__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 24px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #b8c9e6;
  box-shadow: 0 0 0 5px rgba(184, 201, 230, 0.14);
}

.number-list__item strong,
.process-list__item strong,
.service-rail__item strong,
.contact-list__item h3,
.site-foot__box strong,
.info-strip__cell strong {
  font-size: 1.62rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1;
  letter-spacing: -0.035em;
}

.contact-list__item h3 { margin: 0; }

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 0;
  color: #b7c7e5;
  font-size: 0.74rem;
}

.feature-card,
.service-card {
  min-height: 100%;
}

.feature-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: rgba(202, 217, 243, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dbe7f8;
  font-weight: 800;
}

.feature-card h3,
.service-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.feature-card--dark [style*="var(--muted)"],
.cta-slab [style*="var(--muted)"],
.quote-card [style*="var(--muted)"],
.page-hero__aside [style*="var(--muted)"],
.info-strip [style*="var(--muted)"],
.hero-visual-card [style*="var(--muted)"],
.feature-card--dark .check-list li,
.quote-card p,
.cta-slab p {
  color: var(--muted-inverse) !important;
}

.feature-card--dark .ghost-btn,
.cta-slab .ghost-btn,
.quote-card .ghost-btn,
.page-hero__aside .ghost-btn,
.info-strip .ghost-btn {
  color: #eef4fb;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.info-strip {
  padding: 28px;
  border-radius: 30px;
}

.info-strip__cell {
  padding-right: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.info-strip__cell:last-child {
  padding-right: 0;
  border-right: 0;
}

.quote-card blockquote {
  margin: 0;
  font-size: 28px;
  line-height: 0.98;
}

.quote-card blockquote::before {
  content: '“';
  display: block;
  color: rgba(202, 217, 243, 0.72);
  font-size: 4rem;
  line-height: 0.7;
}

.quote-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.quote-person__avatar {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 18px;
  font: inherit;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(170, 193, 231, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
}

#form-status {
  margin-top: 4px;
  color: var(--success);
  font-weight: 700;
}

.legal-card h1 { margin-bottom: 18px; }
.legal-card h2 {
  margin: 28px 0 12px;
  font-size: 2.1rem;
}

.legal-card p,
.legal-card li,
.contact-card p,
.story-card p,
.panel p,
.service-card p,
.feature-card p {
  color: var(--ink-soft);
}

.site-foot { padding: 28px 0 34px; }

.foot-panel {
  padding: 28px;
  border-radius: 34px;
}

.site-foot__box {
  padding: 24px;
  border-radius: 24px;
}

.site-foot__box p,
.site-foot__box li,
.site-foot__box a {
  color: rgba(223, 231, 244, 0.72);
}

.site-foot__box ul {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.site-foot__box li {
  position: relative;
  padding-left: 16px;
}

.site-foot__box li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: rgba(202, 217, 243, 0.82);
}

.subfooter {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(210, 220, 233, 0.62);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 20px 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(8, 16, 31, 0.98);
  color: var(--ink);
  border: 1px solid rgba(160, 186, 230, 0.14);
  border-radius: 22px;
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
}

.cookie-banner p {
  margin: 0;
  color: var(--ink-soft);
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-banner .ghost-btn {
  min-height: 54px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.12);
}

.cookie-banner .cta-btn {
  min-height: 54px;
}

.is-hidden { display: none !important; }

.inline-link {
  padding: 0;
  color: #b8c9e6;
  text-transform: none;
  letter-spacing: 0;
}

@media (max-width: 1220px) {
  .hero-shell,
  .page-hero,
  .band-panel,
  .mosaic-grid,
  .grid-2,
  .contact-grid,
  .site-foot__grid {
    grid-template-columns: 1fr;
  }

  .cards-3,
  .service-grid,
  .metric-grid,
  .outcome-grid,
  .info-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-main {
    min-height: auto;
  }

  .hero-main h1,
  .page-hero__title {
    max-width: none;
  }
}

@media (max-width: 960px) {
  .site-top__row {
    min-height: 78px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    padding: 18px;
    background: rgba(5, 11, 22, 0.98);
    border: 1px solid rgba(160, 186, 230, 0.12);
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.34);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav a:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav a:not(.cta-btn)::after {
    display: none;
  }

  .site-nav .cta-btn {
    margin-top: 12px;
    min-height: 58px;
  }

  .hero-main,
  .band-panel,
  .story-card,
  .panel,
  .contact-card,
  .legal-card,
  .service-card,
  .feature-card--dark,
  .cta-slab,
  .quote-card,
  .foot-panel,
  .page-hero > :first-child,
  .page-hero__aside,
  .stat-card {
    padding: 24px;
  }

  .hero-visual-card {
    padding: 18px;
  }

  .hero-visual-card img {
    height: 430px;
  }

  .hero-facts,
  .cards-3,
  .service-grid,
  .metric-grid,
  .outcome-grid,
  .info-strip,
  .site-foot__grid {
    grid-template-columns: 1fr;
  }

  .trust-line {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(var(--container), calc(100% - 24px));
  }

  body::after {
    top: 72px;
  }

  main {
    padding-top: 18px;
  }

  .section-block {
    padding: 18px 0;
  }

  .brand-mark {
    font-size: 0.72rem;
    letter-spacing: 0.13em;
  }

  .brand-mark span:last-child {
    max-width: 48vw;
  }

  .brand-mark__badge {
    width: 40px;
    height: 40px;
  }

  .hero-main h1 {
    font-size: clamp(3.2rem, 17vw, 5.3rem);
  }

  .page-hero__title,
  .section-head h2,
  .section-title,
  .story-card h2,
  .panel h2,
  .contact-card h2,
  .cta-slab h2,
  .legal-card h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .quote-card blockquote {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

  .kicker {
    padding: 12px 16px;
    font-size: 0.68rem;
  }

  .hero-main,
  .page-hero > :first-child {
    padding-top: 34px;
  }

  .hero-visual-card img {
    height: 300px;
  }

  .cta-btn,
  .ghost-btn {
    width: 100%;
    min-height: 60px;
  }

  .subfooter {
    flex-direction: column;
  }
}


.hero-main p,
.page-hero > :first-child p,
.story-card p,
.panel p,
.contact-card p,
.legal-card p,
.legal-card li,
.service-card p,
.feature-card p,
.contact-form label,
.cookie-banner p {
  color: var(--ink-soft);
}

.feature-card h3,
.service-card h3,
.number-list__item strong,
.process-list__item strong,
.service-rail__item strong,
.contact-list__item h3,
.trust-line strong {
  color: var(--ink);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form select::placeholder {
  color: rgba(238, 243, 251, 0.48);
}

.cookie-banner .ghost-btn {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
}

.cookie-banner .cta-btn {
  box-shadow: none;
}
