:root {
  --navy: #071426;
  --navy-2: #0d2038;
  --navy-3: #132b49;
  --gold: #c8a24a;
  --gold-strong: #f0c45c;
  --gold-soft: #f2dc96;
  --electric-blue: #36d7ff;
  --electric-blue-soft: rgba(54, 215, 255, 0.18);
  --white: #ffffff;
  --mist: #f5f7f9;
  --line: #dce2e8;
  --ink: #122033;
  --muted: #5d6b7c;
  --shadow: 0 22px 60px rgba(7, 20, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 82px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: rgba(7, 20, 38, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(70px, 6.2vw, 96px);
  height: auto;
  object-fit: contain;
}

.ai-badge {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  border: 1px solid rgba(54, 215, 255, 0.68);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(54, 215, 255, 0.24), rgba(200, 162, 74, 0.15));
  box-shadow: 0 0 22px rgba(54, 215, 255, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold-soft);
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-strong), var(--electric-blue));
  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero-media,
.hero-overlay,
.hero-data-lines {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 78% 34%, rgba(54, 215, 255, 0.2), transparent 23%),
    linear-gradient(90deg, rgba(7, 20, 38, 0.98) 0%, rgba(7, 20, 38, 0.86) 42%, rgba(7, 20, 38, 0.36) 100%),
    linear-gradient(0deg, rgba(7, 20, 38, 0.9) 0%, rgba(7, 20, 38, 0) 42%);
}

.hero-data-lines {
  z-index: 1;
  opacity: 0.18;
  background:
    linear-gradient(115deg, transparent 0 41%, rgba(54, 215, 255, 0.18) 41.2%, transparent 41.8% 100%),
    linear-gradient(65deg, transparent 0 56%, rgba(240, 196, 92, 0.16) 56.2%, transparent 56.8% 100%),
    radial-gradient(circle at 72% 48%, rgba(54, 215, 255, 0.18) 0 1px, transparent 2px);
  background-size: 520px 520px, 620px 620px, 46px 46px;
  animation: dataDrift 28s linear infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: clamp(158px, 18vh, 214px) 0 clamp(104px, 13vh, 148px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 840px;
  margin: 0;
  font-size: clamp(3.35rem, 6.5vw, 6.7rem);
  line-height: 0.99;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 770px;
  margin: 28px 0 0;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  font-weight: 700;
  line-height: 1.18;
}

.hero-subheadline {
  max-width: 720px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 46px;
}

.hero-connector {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-connector span {
  color: var(--gold-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 800;
  box-shadow: 0 0 0 rgba(54, 215, 255, 0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--navy);
  background: var(--gold-soft);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f6e3aa;
  box-shadow: 0 16px 36px rgba(240, 196, 92, 0.18);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(54, 215, 255, 0.38);
  background: rgba(54, 215, 255, 0.08);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(54, 215, 255, 0.66);
  background: rgba(54, 215, 255, 0.13);
  box-shadow: 0 16px 36px rgba(54, 215, 255, 0.12);
}

.section {
  padding: clamp(72px, 9vw, 118px) 0;
}

.section-light {
  background: var(--mist);
}

.section-white {
  background: var(--white);
}

.section-navy {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(54, 215, 255, 0.14), transparent 28%),
    linear-gradient(135deg, var(--navy), var(--navy-2));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-navy h2,
.contact-section h2 {
  color: var(--white);
}

.section-copy {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  line-height: 1.78;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 44px;
}

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

.service-card,
.audience-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-card {
  min-height: 178px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(7, 20, 38, 0.06);
}

.service-card span {
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 800;
}

h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.12rem;
  line-height: 1.36;
}

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

.audience-card {
  min-height: 224px;
  padding: 28px;
  border-color: rgba(54, 215, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
}

.audience-card h3 {
  color: var(--gold-soft);
}

.audience-card p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.75;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow li {
  position: relative;
  min-height: 118px;
  padding: 22px 18px 20px;
  color: var(--navy);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(7, 20, 38, 0.05);
  counter-increment: workflow;
}

.js .reveal-card,
.js .reveal-step {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 680ms ease, transform 680ms ease, border-color 180ms ease, box-shadow 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal-card.is-visible,
.js .reveal-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  border-color: rgba(200, 162, 74, 0.42);
  box-shadow: 0 20px 44px rgba(7, 20, 38, 0.1);
}

.workflow li::before {
  content: counter(workflow, decimal-leading-zero);
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.8rem;
}

.check-list {
  display: grid;
  gap: 15px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0 0 0 32px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--gold);
}

.contact-section {
  padding: clamp(72px, 9vw, 112px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 74% 18%, rgba(54, 215, 255, 0.16), transparent 27%),
    linear-gradient(135deg, rgba(7, 20, 38, 0.98), rgba(13, 32, 56, 0.96)),
    radial-gradient(circle at 82% 20%, rgba(200, 162, 74, 0.34), transparent 28%);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(32px, 7vw, 96px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 30px;
  font-style: normal;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 216, 163, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.contact-card strong {
  color: var(--white);
  font-size: 1.35rem;
}

.contact-card a {
  width: fit-content;
  margin-top: 10px;
  color: var(--gold-soft);
  font-weight: 800;
  overflow-wrap: anywhere;
  transition: color 180ms ease;
}

.contact-card a:hover,
.contact-card a:focus-visible {
  color: var(--white);
}

.site-footer {
  padding: 22px clamp(20px, 4vw, 64px);
  color: rgba(255, 255, 255, 0.68);
  background: #040d18;
  font-size: 0.92rem;
}


@media (max-width: 1100px) {
  .language-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 78% 34%, rgba(54, 215, 255, 0.16), transparent 26%),
      linear-gradient(90deg, rgba(7, 20, 38, 0.98) 0%, rgba(7, 20, 38, 0.88) 62%, rgba(7, 20, 38, 0.58) 100%),
      linear-gradient(0deg, rgba(7, 20, 38, 0.92) 0%, rgba(7, 20, 38, 0) 44%);
  }

  .split,
  .contact-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 16px 20px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 76px;
  }

  .ai-badge {
    width: 26px;
    height: 26px;
    font-size: 0.64rem;
  }

  .hero-inner {
    padding: 136px 0 82px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 3.6rem);
  }

  .button {
    width: 100%;
  }

  .service-grid,
  .audience-grid,
  .workflow {
    grid-template-columns: 1fr;
  }

  .service-card,
  .audience-card,
  .workflow li {
    min-height: auto;
  }

  .contact-card {
    padding: 24px;
  }
}

@keyframes dataDrift {
  0% {
    background-position: 0 0, 0 0, 0 0;
  }

  100% {
    background-position: 520px 0, -620px 0, 92px 46px;
  }
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: translateY(14px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-hero {
  animation: heroFade 900ms ease both 120ms;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .js .reveal-card,
  .js .reveal-step {
    opacity: 1;
    transform: none;
  }
}

/* Expanded corporate AI site */
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: clamp(38px, 7vw, 96px);
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 20px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.82;
}

.compact-copy {
  max-width: 790px;
  margin-top: 22px;
}

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

.language-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 20, 38, .05);
}

.language-grid strong,
.language-grid span {
  display: block;
}

.language-grid strong {
  color: var(--navy);
  font-size: 1.22rem;
}

.language-grid span {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.language-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.language-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--gold);
}

.language-icon-letter {
  font-size: 2.55rem;
  line-height: 1;
  font-weight: 500;
  font-family: Georgia, "Times New Roman", serif;
}

.language-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flamenco-icon .fan {
  stroke-width: 1.8;
}

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

.capability-cards .audience-card {
  min-height: 246px;
}

.insight-section {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 22%, rgba(54, 215, 255, .12), transparent 30%),
    linear-gradient(135deg, #071426, #0d2038);
}

.insight-section h2 { color: var(--white); }
.insight-section .section-copy { color: rgba(255,255,255,.72); }

.insight-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
}

.insight-link {
  display: grid;
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(240,196,92,.34);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  transition: transform 180ms ease, background 180ms ease;
}

.insight-link:hover,
.insight-link:focus-visible {
  transform: translateY(-3px);
  background: rgba(255,255,255,.08);
}

.insight-link span {
  color: var(--gold-strong);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.insight-link strong {
  color: var(--white);
  font-size: 1.28rem;
}

.contact-copy {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1.04rem;
  line-height: 1.72;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid a {
  color: var(--gold-soft);
  font-weight: 700;
}

@media (max-width: 900px) {
  .about-layout,
  .insight-layout { grid-template-columns: 1fr; }
  .language-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .capability-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .language-grid,
  .capability-cards { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; }
}

/* Hero visual — face, floating letters and bottom capability bar */
.hero {
  min-height: 100vh;
  padding-bottom: 170px;
  background: #061225;
}

.hero-media {
  z-index: 0;
  left: auto;
  width: min(68vw, 1050px);
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(.9) brightness(.92);
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, #061225 0%, rgba(6,18,37,.99) 25%, rgba(6,18,37,.93) 44%, rgba(6,18,37,.50) 64%, rgba(6,18,37,.08) 100%),
    linear-gradient(0deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.22) 25%, transparent 48%);
}

.hero-inner {
  padding-top: clamp(150px, 17vh, 205px);
  padding-bottom: 120px;
}

.hero-inner h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 5.7vw, 6rem);
}

.hero-lede,
.hero-subheadline {
  max-width: 620px;
}

.hero-capabilities {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 80px 0 24px;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(1,6,12,.68) 34%, #01050a 72%, #01050a 100%);
}

.hero-capabilities-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
}

.capability-item {
  min-height: 112px;
  display: grid;
  justify-items: center;
  align-content: end;
  gap: 10px;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.16);
}

.capability-item:last-child { border-right: 0; }

.capability-item svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--gold-strong);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(240,196,92,.12));
}

.capability-item span {
  color: rgba(255,255,255,.96);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: .01em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .hero { padding-bottom: 150px; }
  .hero-media { width: 82vw; opacity: .78; }
  .hero-capabilities-inner { grid-template-columns: repeat(5, minmax(110px,1fr)); overflow-x: auto; }
  .capability-item { padding: 0 12px; }
}

@media (max-width: 620px) {
  .hero { min-height: 980px; padding-bottom: 250px; }
  .hero-media { width: 110vw; right: -45vw; opacity: .6; }
  .hero-overlay { background: linear-gradient(90deg, rgba(6,18,37,.99), rgba(6,18,37,.84)); }
  .hero-capabilities { padding-top: 56px; }
  .hero-capabilities-inner { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 0; overflow: visible; }
  .capability-item { min-height: 86px; border-right: 0; }
  .capability-item:last-child { grid-column: 1 / -1; }
}

/* Language selector added for bilingual site */
.language-switch { white-space: nowrap; font-weight: 700; }

/* Project inquiry form */
.contact-inner-form {
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  align-items: start;
}
.contact-card-compact {
  margin-top: 28px;
  max-width: 390px;
}
.project-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(234, 216, 163, 0.28);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  box-shadow: var(--shadow);
}
.project-form label { display: grid; gap: 8px; }
.project-form label span { color: var(--navy); font-weight: 750; }
.project-form input, .project-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 5px;
  padding: 13px 14px;
  color: var(--white);
  background: rgba(4,13,24,.58);
  font: inherit;
  outline: none;
}
.project-form textarea { resize: vertical; min-height: 132px; line-height: 1.55; }
.project-form input:focus, .project-form textarea:focus {
  border-color: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(234,216,163,.12);
}
.project-form .form-full, .project-form .form-note { grid-column: 1 / -1; }
.project-form .form-submit { width: 100%; min-height: 52px; border: 0; cursor: pointer; }
.project-form .form-note { margin: -4px 0 0; color: rgba(7,20,38,.68); font-size: .88rem; line-height: 1.5; }
[dir="rtl"] .project-form { direction: rtl; text-align: right; }
[dir="rtl"] .project-form input, [dir="rtl"] .project-form textarea { text-align: right; }
@media (max-width: 900px) {
  .contact-inner-form { grid-template-columns: 1fr; }
  .project-form { grid-template-columns: 1fr; padding: 22px; }
  .project-form .form-full, .project-form .form-note { grid-column: 1; }
}

/* FINAL FORM COLOR OVERRIDE — approved light client-entry area */
.project-form {
  background: #f6e3aa !important;
  border-color: rgba(7,20,38,.14) !important;
}
.project-form input,
.project-form textarea,
.project-form select {
  background: #ffffff !important;
  color: #071426 !important;
  border: 1px solid rgba(7,20,38,.24) !important;
  -webkit-text-fill-color: #071426 !important;
  color-scheme: light !important;
}
.project-form input::placeholder,
.project-form textarea::placeholder {
  color: rgba(7,20,38,.52) !important;
  opacity: 1;
}
.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
  background: #ffffff !important;
  color: #071426 !important;
  border-color: #c8a24a !important;
  box-shadow: 0 0 0 3px rgba(200,162,74,.16) !important;
}
