/* ============================================================
   CONTACT PAGE HERO — mobile-first
============================================================ */
#page-hero {
  position: relative;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, rgba(0,255,65,0.06) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.9) 100%);
  padding-top: var(--nav-h);
}

#page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  box-shadow: 0 0 12px rgba(0,255,65,0.7);
  pointer-events: none;
  opacity: 0.7;
}

#hero-three-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(80px, 12vh, 120px) clamp(16px, 4vw, 40px) clamp(48px, 7vh, 80px);
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

.hero-eyebrow {
  font-family: var(--font-code, var(--font-mono));
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  letter-spacing: 0.42em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.9;
  text-shadow: 0 0 12px rgba(0,255,65,0.55);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  line-height: 1.05;
  text-shadow: 0 0 48px rgba(0,255,65,0.18);
}

.hero-title span {
  background: var(--grad-text-sweep);
  background-size: 300% 100%;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: current-flow 9s linear infinite;
  filter: drop-shadow(0 0 18px rgba(0,255,65,0.45));
}

.hero-subtitle {
  font-family: var(--font-code, var(--font-mono));
  font-size: clamp(0.65rem, 2vw, 0.86rem);
  letter-spacing: 0.22em;
  color: var(--text-secondary);
  margin-top: 18px;
  opacity: 0.8;
}

/* Circuit corner brackets — hide on small screens */
.hero-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  pointer-events: none;
  z-index: 3;
  display: none;
}

@media (min-width: 640px) {
  .hero-corner {
    display: block;
  }
}

.hero-corner::before,
.hero-corner::after {
  content: '';
  position: absolute;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
}

.hero-corner::before { width: 2px; height: 100%; }
.hero-corner::after  { width: 100%; height: 2px; }

.hero-corner.tl { top: 24px; left: 24px; }
.hero-corner.tl::before { top: 0; left: 0; }
.hero-corner.tl::after  { top: 0; left: 0; }

.hero-corner.tr { top: 24px; right: 24px; }
.hero-corner.tr::before { top: 0; right: 0; left: auto; }
.hero-corner.tr::after  { top: 0; right: 0; left: auto; }

.hero-corner.bl { bottom: 24px; left: 24px; }
.hero-corner.bl::before { bottom: 0; top: auto; left: 0; }
.hero-corner.bl::after  { bottom: 0; top: auto; left: 0; }

.hero-corner.br { bottom: 24px; right: 24px; }
.hero-corner.br::before { bottom: 0; top: auto; right: 0; left: auto; }
.hero-corner.br::after  { bottom: 0; top: auto; right: 0; left: auto; }

/* ============================================================
   CONTACT SECTION — mobile-first
============================================================ */
#contact-section {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 6vh, 72px) clamp(16px, 4vw, 40px) clamp(72px, 10vh, 120px);
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.65);
}

/* -------- CARDS VIEW — 1 col base, 3 col at 640px+ -------- */
#contact-cards-view {
  display: block;
}

/* Base: single column */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(0,255,65,0.05) 0%, rgba(0,10,5,0.75) 100%);
  border: 1px solid rgba(0,255,65,0.22);
  padding: clamp(28px, 4vw, 40px) clamp(20px, 3vw, 28px) clamp(20px, 3vw, 28px);
  position: relative;
  cursor: pointer;
  /* No backdrop-filter on cards — three full-size blur layers visible at
     load time was a measurable first-paint stall. The card already has a
     gradient + shadow that read as glass without it. */
  box-shadow: inset 0 0 20px rgba(0,255,65,0.04);
  transition: transform 0.35s var(--ease-electric),
              box-shadow 0.35s var(--ease-electric),
              border-color 0.35s var(--ease-electric),
              background 0.35s var(--ease-electric);
  overflow: hidden;
}

/* Diagonal voltage sheen (full-inset decorative overlay — uses a layered
   gradient so it does not collide with the ::before/::after HUD corner
   brackets defined in main.css) */
.contact-card {
  background-image:
    linear-gradient(135deg, rgba(0,255,65,0.06) 0%, transparent 55%),
    linear-gradient(180deg, rgba(0,255,65,0.05) 0%, rgba(0,10,5,0.75) 100%);
}

@media (hover: hover) {
  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow:
      var(--glow-m),
      0 18px 60px rgba(0, 255, 65, 0.14),
      inset 0 1px 0 rgba(0, 255, 65, 0.55);
    border-color: var(--cyan);
    background-image:
      linear-gradient(135deg, rgba(0,255,65,0.12) 0%, transparent 65%),
      linear-gradient(180deg, rgba(0,255,65,0.08) 0%, rgba(0,10,5,0.85) 100%);
  }

  /* Animated data-flow trace across the top edge — uses a 1px-tall
     overlay positioned via inset; only transform/opacity animate so
     this stays on the compositor. */
  .contact-card .contact-card-trace,
  .contact-card::before,
  .contact-card::after {
    /* placeholder rule kept stable for ordering */
  }
}

/* Data-flow line on top edge of contact card — added via background-image
   so it does not collide with the existing ::before / ::after HUD corners.
   Animates on hover with a single horizontal sweep. */
.contact-card {
  background-repeat: no-repeat;
  background-size:
    100% 1px,
    100% 100%,
    100% 100%;
  background-position:
    -100% 0,
    0 0,
    0 0;
}

@media (hover: hover) {
  .contact-card:hover {
    background-image:
      linear-gradient(90deg,
        transparent 0%,
        rgba(0, 255, 65, 0.95) 40%,
        #5cffa0 50%,
        rgba(0, 255, 65, 0.95) 60%,
        transparent 100%),
      linear-gradient(135deg, rgba(0,255,65,0.12) 0%, transparent 65%),
      linear-gradient(180deg, rgba(0,255,65,0.08) 0%, rgba(0,10,5,0.85) 100%);
    background-size:
      300% 1px,
      100% 100%,
      100% 100%;
    background-position:
      -300% 0,
      0 0,
      0 0;
    animation: contact-card-trace 1.4s var(--ease-electric) both;
  }
}

@keyframes contact-card-trace {
  0%   { background-position: -300% 0, 0 0, 0 0; }
  100% { background-position:  300% 0, 0 0, 0 0; }
}

.contact-card:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.card-icon {
  font-size: 2.1rem;
  color: var(--cyan);
  text-shadow: 0 0 16px rgba(0,255,65,0.75), 0 0 30px rgba(0,255,170,0.35);
  margin-bottom: 18px;
  display: block;
  line-height: 1;
  animation: voltage-flicker 8s ease-in-out infinite;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 2vw, 1.02rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.card-body {
  font-family: var(--font-body-modern, var(--font-body));
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex: 1 1 auto;
}

.card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-code, var(--font-mono));
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  color: var(--cyan);
  background:
    linear-gradient(180deg, rgba(0,255,65,0.05) 0%, rgba(0,0,0,0.55) 100%);
  border: 1px solid rgba(0,255,65,0.35);
  padding: 0 18px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s var(--ease-electric),
              box-shadow 0.3s var(--ease-electric),
              border-color 0.3s var(--ease-electric),
              color 0.3s var(--ease-electric),
              letter-spacing 0.3s var(--ease-electric);
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin-top: auto;
  text-transform: uppercase;
  box-sizing: border-box;
  flex-shrink: 0;
}

.card-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-electric);
  background-size: 220% 100%;
  opacity: 0;
  transition: opacity 0.3s var(--ease-electric);
  z-index: -1;
  animation: current-flow 3.6s linear infinite;
}

.card-cta:hover {
  color: #031a0a;
  border-color: var(--lime);
  letter-spacing: 0.26em;
  box-shadow: var(--glow-m);
  background: transparent;
}

.card-cta:hover::before { opacity: 1; }

.card-cta:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* -------- FORM VIEWS (shared) -------- */
.form-view {
  display: none;
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,255,65,0.06) 0%, rgba(0,10,5,0.85) 100%);
  border: 1px solid rgba(0,255,65,0.28);
  /* No backdrop-filter — the gradient already provides enough contrast,
     and dropping the blur shaves ~50ms off form-open paint cost. */
  padding: clamp(28px, 4vw, 44px) clamp(18px, 4vw, 42px);
  box-shadow: inset 0 0 40px rgba(0,255,65,0.04), 0 20px 60px rgba(0,0,0,0.5);
}

.form-view::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--cyan) 50%, transparent 100%);
  box-shadow: 0 0 8px var(--cyan);
  opacity: 0.6;
  pointer-events: none;
}

.form-view.active {
  display: block;
}

.form-back-btn {
  background: none;
  border: 1px solid rgba(0,255,65,0.2);
  font-family: var(--font-code, var(--font-mono));
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 10px 16px;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-electric),
              border-color 0.3s var(--ease-electric),
              box-shadow 0.3s var(--ease-electric),
              background 0.3s var(--ease-electric);
  min-height: 40px;
}

.form-back-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  background: rgba(0,255,65,0.06);
  box-shadow: var(--glow-s);
}

.form-back-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.form-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.form-header-icon {
  font-size: 1.8rem;
  color: var(--cyan);
  text-shadow: 0 0 14px rgba(0,255,65,0.55);
  line-height: 1;
}

.form-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.9rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-primary);
}

.form-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan) 0%, rgba(0,255,65,0.15) 50%, transparent 100%);
  box-shadow: 0 0 8px rgba(0,255,65,0.22);
  margin: 20px 0 32px;
  position: relative;
}

.form-divider::after {
  content: '';
  position: absolute;
  left: 0;
  top: -2px;
  width: 6px;
  height: 5px;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
}

/* -------- FORM FIELDS — 1 col base, 2 col at 768px+ -------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.label-required {
  color: var(--cyan);
  font-size: 0.85em;
  margin-left: 2px;
}

.label-optional {
  color: var(--text-muted);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  margin-left: 4px;
  text-transform: none;
}

.form-input,
.form-textarea {
  background:
    linear-gradient(180deg, rgba(0,255,65,0.04) 0%, rgba(0,0,0,0.55) 100%);
  border: 1px solid rgba(0,255,65,0.28);
  color: var(--text-primary);
  font-family: var(--font-body-modern, var(--font-body));
  font-size: clamp(0.88rem, 2vw, 0.96rem);
  padding: 12px 14px;
  outline: none;
  /* No backdrop-filter on individual inputs — it forces a separate
     compositor layer per element and tanks first paint when there are
     dozens of inputs. The parent .form-view already provides the blur. */
  transition: border-color 0.3s var(--ease-electric),
              box-shadow 0.3s var(--ease-electric),
              background 0.3s var(--ease-electric);
  width: 100%;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
  min-height: 44px;
  border-radius: 2px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
  font-family: var(--font-body-modern, var(--font-body));
  font-size: 0.9rem;
}

.form-input:hover,
.form-textarea:hover {
  border-color: rgba(0,255,65,0.55);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--cyan);
  background: linear-gradient(180deg, rgba(0,255,65,0.08) 0%, rgba(0,0,0,0.72) 100%);
  box-shadow:
    0 0 0 3px rgba(0,255,65,0.18),
    0 0 22px rgba(0,255,65,0.22),
    inset 0 0 14px rgba(0,255,65,0.07);
}

.form-input:focus-visible,
.form-textarea:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.form-input.is-invalid,
.form-textarea.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 1px rgba(255,51,85,0.28);
}

.form-error {
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  color: var(--danger);
  display: none;
  margin-top: 2px;
}

.form-error.visible {
  display: block;
}

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

/* -------- PROFILE LINKS -------- */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.link-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.link-input-row .form-input {
  flex: 1;
}

.link-remove-btn {
  background: none;
  border: 1px solid rgba(255,51,85,0.35);
  color: var(--danger);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 10px 10px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
  line-height: 1;
  /* 44px touch target */
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.link-remove-btn:hover {
  background: rgba(255,51,85,0.1);
  border-color: var(--danger);
}

.link-remove-btn:focus-visible {
  outline: 2px solid var(--danger);
  outline-offset: 3px;
}

.add-link-btn {
  background: none;
  border: 1px dashed rgba(0,255,65,0.3);
  color: var(--text-secondary);
  font-family: var(--font-code, var(--font-mono));
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 16px;
  cursor: pointer;
  transition: color 0.3s var(--ease-electric),
              border-color 0.3s var(--ease-electric),
              background 0.3s var(--ease-electric),
              box-shadow 0.3s var(--ease-electric);
  margin-top: 4px;
  width: 100%;
  min-height: 44px;
}

.add-link-btn:hover {
  color: var(--cyan);
  border-color: var(--cyan);
  border-style: solid;
  background: rgba(0,255,65,0.06);
  box-shadow: var(--glow-s);
}

.add-link-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* -------- TURNSTILE — prevent horizontal overflow -------- */
.cf-turnstile {
  max-width: 100%;
  overflow: hidden;
}

/* -------- SUBMIT BUTTON — electric transmit -------- */
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    linear-gradient(180deg, rgba(0,255,65,0.10) 0%, rgba(0,0,0,0.55) 100%),
    rgba(0,12,6,0.85);
  color: var(--cyan);
  border: 1px solid rgba(0,255,65,0.5);
  font-family: var(--font-code, var(--font-mono));
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 16px 44px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-shadow: 0 0 10px rgba(0,255,65,0.45);
  -webkit-clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
          clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  transition: color 0.3s var(--ease-electric),
              background 0.3s var(--ease-electric),
              box-shadow 0.3s var(--ease-electric),
              transform 0.3s var(--ease-electric),
              letter-spacing 0.3s var(--ease-electric);
  box-shadow: var(--glow-s), inset 0 0 18px rgba(0,255,65,0.08);
  margin-top: 8px;
  width: 100%;
  min-height: 48px;
  box-sizing: border-box;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--grad-electric);
  background-size: 220% 100%;
  opacity: 0;
  transition: opacity 0.3s var(--ease-electric);
  animation: current-flow 3.6s linear infinite;
}

.submit-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.22) 50%, transparent 100%);
  transform: translateX(-120%) skewX(-18deg);
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 640px) {
  .submit-btn {
    width: auto;
    min-width: 240px;
    display: inline-flex;
  }
}

.submit-btn:hover {
  color: #031a0a;
  border-color: var(--lime);
  letter-spacing: 0.36em;
  box-shadow: var(--glow-l), inset 0 0 0 1px rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover::after  { animation: holo-shimmer 0.9s var(--ease-electric) both; }

.submit-btn:active {
  transform: translateY(0);
  box-shadow: var(--glow-m);
}

.submit-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.submit-btn.loading {
  pointer-events: none;
  opacity: 0.85;
}

.btn-text {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-loading {
  display: none;
  align-items: center;
  gap: 10px;
}

.submit-btn.loading .btn-text    { display: none; }
.submit-btn.loading .btn-loading { display: flex; }

/* CSS spinner */
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(5,5,5,0.3);
  border-top-color: #050505;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  flex-shrink: 0;
}

.form-actions {
  grid-column: 1 / -1;
  padding-top: 8px;
}

/* -------- SUCCESS STATE -------- */
.success-state {
  display: none;
  text-align: center;
  padding: clamp(40px, 6vh, 60px) clamp(20px, 4vw, 40px);
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.success-state.visible {
  display: flex;
}

.success-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 28px rgba(0,255,65,0.42), inset 0 0 18px rgba(0,255,65,0.05);
  animation: success-pulse 2s ease-in-out infinite;
}

.success-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--cyan);
}

.success-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0,255,65,0.5);
}

.success-body {
  font-family: var(--font-body);
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: var(--text-secondary);
  max-width: 420px;
  line-height: 1.7;
}

.success-return-btn {
  background: linear-gradient(180deg, rgba(0,255,65,0.06) 0%, rgba(0,0,0,0.55) 100%);
  border: 1px solid rgba(0,255,65,0.45);
  color: var(--cyan);
  font-family: var(--font-code, var(--font-mono));
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 14px 32px;
  cursor: pointer;
  margin-top: 8px;
  transition: color 0.3s var(--ease-electric),
              background 0.3s var(--ease-electric),
              border-color 0.3s var(--ease-electric),
              box-shadow 0.3s var(--ease-electric);
  min-height: 44px;
  box-shadow: var(--glow-s);
}

.success-return-btn:hover {
  color: #031a0a;
  background: var(--cyan);
  border-color: var(--lime);
  box-shadow: var(--glow-m);
}

.success-return-btn:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes success-pulse {
  0%, 100% { box-shadow: 0 0 24px rgba(0,255,65,0.4), inset 0 0 16px rgba(0,255,65,0.05); }
  50%       { box-shadow: 0 0 44px rgba(0,255,65,0.7), inset 0 0 24px rgba(0,255,65,0.12); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================================
   REDUCED MOTION
============================================================ */
@media (prefers-reduced-motion: reduce) {
  .contact-card,
  .submit-btn,
  .form-input,
  .form-textarea,
  .card-cta {
    transition: none !important;
  }

  .contact-card,
  .contact-card:hover {
    animation: none !important;
  }

  .submit-btn:hover {
    transform: none;
  }

  .success-icon {
    animation: none;
  }

  .spinner {
    animation: none;
    border: 2px solid #050505;
  }
}
