/* DotNetiSoft — brand colors from logo */
:root {
  --navy: #000c30;
  --navy-deep: #000824;
  --navy-mid: #00183c;
  --blue: #006ce4;
  --blue-mid: #0078e4;
  --blue-bright: #0084f0;
  --blue-light: #0090f0;
  --blue-glow: rgba(0, 132, 240, 0.35);
  --ink: #000c30;
  --muted: #4a5a78;
  --line: rgba(0, 12, 48, 0.1);
  --surface: #f4f7fc;
  --surface-2: #e8eef8;
  --white: #ffffff;
  --radius: 4px;
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  padding: 2px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-name .dot,
.brand-name .soft {
  color: var(--navy);
}

.brand-name .neti {
  color: var(--blue-bright);
}

.site-header:not(.is-scrolled) .brand-name .dot,
.site-header:not(.is-scrolled) .brand-name .soft {
  color: var(--white);
}

.site-header:not(.is-scrolled) .brand-name .neti {
  color: #7ec8ff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}

.nav a:hover {
  opacity: 1;
}

.site-header:not(.is-scrolled) .nav a {
  color: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .nav a {
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius);
  background: var(--blue);
  color: var(--white) !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  transition: background 0.2s, transform 0.2s var(--ease) !important;
}

.nav-cta:hover {
  background: var(--blue-bright);
  transform: translateY(-1px);
}

.site-header:not(.is-scrolled) .nav-cta {
  background: var(--white);
  color: var(--navy) !important;
}

.site-header:not(.is-scrolled) .nav-cta:hover {
  background: #e8f3ff;
}

.menu-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 0.3s var(--ease), opacity 0.3s, background 0.3s;
}

.site-header.is-scrolled .menu-toggle span,
.site-header.nav-open .menu-toggle span {
  background: var(--navy);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(0, 144, 240, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(0, 84, 192, 0.4), transparent 50%),
    linear-gradient(155deg, #00183c 0%, #000c30 42%, #000824 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  animation: gridDrift 28s linear infinite;
  pointer-events: none;
}

@keyframes gridDrift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(48px);
  }
}

.hero-pixels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-pixels span {
  position: absolute;
  width: var(--s, 10px);
  height: var(--s, 10px);
  background: var(--c, var(--blue-light));
  opacity: 0.55;
  animation: pixelFloat var(--d, 8s) var(--ease) infinite alternate;
  animation-delay: var(--delay, 0s);
}

@keyframes pixelFloat {
  from {
    transform: translate(0, 0);
    opacity: 0.35;
  }
  to {
    transform: translate(var(--tx, 12px), var(--ty, -18px));
    opacity: 0.75;
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2.5rem));
  margin: 0 auto;
  padding: calc(var(--header-h) + 3rem) 0 4.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy {
  max-width: 34rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.15s forwards;
}

.hero-brand .neti {
  color: #7ec8ff;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.85rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.3s forwards;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 28rem;
  margin-bottom: 2rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.42s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.55s forwards;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.45rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--blue-bright);
  color: var(--white);
}

.btn-primary:hover {
  background: #1a9aff;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--blue);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: riseIn 1s var(--ease) 0.35s forwards;
}

.hero-visual-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(440px, 100%);
  aspect-ratio: 1;
  padding: 1.75rem;
  background:
    radial-gradient(circle at 50% 40%, #ffffff 0%, #f0f6ff 58%, #d7e8ff 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 28px 60px rgba(0, 24, 60, 0.45),
    0 0 80px rgba(0, 132, 240, 0.28);
  animation: logoGlow 4.5s ease-in-out 1.2s infinite;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(0, 108, 228, 0.12);
  pointer-events: none;
}

.hero-visual img {
  width: 100%;
  position: relative;
  z-index: 1;
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.2),
      0 28px 60px rgba(0, 24, 60, 0.45),
      0 0 70px rgba(0, 132, 240, 0.22);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.28),
      0 32px 70px rgba(0, 24, 60, 0.5),
      0 0 100px rgba(0, 144, 240, 0.4);
  }
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 72px;
  color: var(--white);
  z-index: 3;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ——— Sections ——— */
.section {
  padding: 5.5rem 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.section-lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 38rem;
  margin-bottom: 2.75rem;
}

.section-head {
  margin-bottom: 2.75rem;
}

.section--surface {
  background: var(--surface);
}

.section--navy {
  background:
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(0, 132, 240, 0.25), transparent 50%),
    linear-gradient(160deg, var(--navy-mid), var(--navy-deep));
  color: var(--white);
}

.section--navy .section-label {
  color: #7ec8ff;
}

.section--navy .section-title {
  color: var(--white);
  max-width: 22ch;
}

.section--navy .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

/* ——— Services ——— */
.services-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 4.5rem 1fr auto;
  gap: 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.service-row.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  padding-top: 0.2rem;
}

.service-row h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.service-row p {
  color: var(--muted);
  max-width: 42rem;
}

.service-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  white-space: nowrap;
  padding-top: 0.35rem;
}

/* ——— Approach ——— */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}

.approach-step {
  position: relative;
  padding-top: 0.25rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.approach-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.approach-step::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue));
  margin-bottom: 1.25rem;
}

.approach-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.approach-step p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
}

/* ——— Available packages & apps ——— */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.catalog-item {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding: 2rem 1.75rem 2rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.catalog-item + .catalog-item {
  padding-left: 1.75rem;
  border-left: 1px solid var(--line);
}

.catalog-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.catalog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.catalog-type {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.catalog-status {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

.catalog-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.catalog-item p {
  color: var(--muted);
  font-size: 0.98rem;
  flex-grow: 1;
}

.catalog-points {
  display: grid;
  gap: 0.4rem;
  margin: -0.15rem 0 0.15rem;
}

.catalog-points li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.catalog-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--blue);
}

.catalog-status.is-available {
  color: var(--blue);
}

.catalog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
  margin-top: 0.35rem;
  transition: color 0.2s, gap 0.2s var(--ease);
}

.catalog-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}

.catalog-link:hover {
  color: var(--navy);
}

.catalog-link:hover::after {
  transform: translateX(3px);
}

/* ——— Our work ——— */
.work-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.work-item {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.work-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-index {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.04em;
  padding-top: 0.35rem;
}

.work-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.15rem;
  margin-bottom: 0.55rem;
}

.work-industry,
.work-kind {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-industry {
  color: var(--blue);
}

.work-kind {
  color: var(--muted);
}

.work-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.work-body p {
  color: var(--muted);
  max-width: 42rem;
}

/* ——— CTA band ——— */
.cta-band {
  padding: 4.5rem 0;
  background:
    linear-gradient(120deg, rgba(0, 108, 228, 0.12), transparent 40%),
    var(--surface);
  border-block: 1px solid var(--line);
}

.cta-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  max-width: 20ch;
  line-height: 1.2;
}

.cta-band p {
  color: var(--muted);
  margin-top: 0.4rem;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}

.contact-item h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.35rem;
}

.contact-item p,
.contact-item a {
  font-size: 1.05rem;
  color: var(--navy);
}

.contact-item a:hover {
  color: var(--blue);
}

.contact-form {
  display: grid;
  gap: 1.1rem;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--navy);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--navy);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 108, 228, 0.15);
  background: var(--white);
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-success {
  display: none;
  padding: 1rem 1.15rem;
  background: rgba(0, 108, 228, 0.08);
  border-left: 3px solid var(--blue);
  color: var(--navy);
  font-weight: 600;
}

.form-success.is-shown {
  display: block;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 1rem;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
}

.footer-brand p {
  max-width: 26rem;
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-col h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7ec8ff;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}

.footer-tagline {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(126, 200, 255, 0.75);
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-bottom: 3.5rem;
    text-align: center;
  }

  .hero-copy {
    max-width: none;
    order: 2;
  }

  .hero-visual {
    order: 1;
  }

  .hero-visual-frame {
    width: min(280px, 70vw);
    margin-inline: auto;
    padding: 1.1rem;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .approach-grid,
  .catalog-grid,
  .contact-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .catalog-item,
  .catalog-item + .catalog-item {
    padding: 1.75rem 0;
    border-left: 0;
  }

  .service-row,
  .work-item {
    grid-template-columns: 3rem 1fr;
  }

  .service-tag {
    grid-column: 2;
    padding-top: 0;
  }

  .section-title {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 0 0 auto;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: calc(var(--header-h) + 0.5rem) 1.25rem 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 12px 40px rgba(0, 12, 48, 0.12);
  }

  .nav.is-open {
    transform: translateY(0);
  }

  .nav a {
    color: var(--navy) !important;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    opacity: 1;
  }

  .nav-cta {
    margin-top: 1rem;
    justify-content: center;
    background: var(--blue) !important;
    color: var(--white) !important;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}
