/* ═══════════════════════════════════════════════════════
   QuickSit — Contact Page
   Premium editorial layout with gold/amber palette
   ═══════════════════════════════════════════════════════ */

/* ── @property for animated gradients ── */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --aurora-hue {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ── Aurora Background ── */
.ct-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ct-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0;
  will-change: transform, opacity;
  animation:
    aurora-drift 20s ease-in-out infinite alternate,
    aurora-appear 2s ease-out forwards;
}

.ct-aurora__blob--1 {
  width: clamp(400px, 60vw, 900px);
  aspect-ratio: 1;
  background: hsl(42 62% 62% / 0.18);
  top: -25%;
  left: -15%;
  animation-duration: 20s, 2s;
  animation-delay: 0.2s, 0.2s;
}

.ct-aurora__blob--2 {
  width: clamp(350px, 50vw, 750px);
  aspect-ratio: 1;
  background: hsl(30 70% 50% / 0.15);
  bottom: -25%;
  right: -15%;
  animation-duration: 26s, 2s;
  animation-delay: 0.6s, 0.6s;
}

.ct-aurora__blob--3 {
  width: clamp(250px, 35vw, 500px);
  aspect-ratio: 1;
  background: hsl(48 60% 55% / 0.1);
  top: 35%;
  left: 40%;
  animation-duration: 30s, 2s;
  animation-delay: 1s, 1s;
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  33% {
    transform: translate(60px, -50px) scale(1.12) rotate(40deg);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.92) rotate(100deg);
  }
  100% {
    transform: translate(50px, 20px) scale(1.08) rotate(160deg);
  }
}

@keyframes aurora-appear {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Noise texture overlay */
.ct-aurora::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-repeat: repeat;
  opacity: 0.5;
  pointer-events: none;
}

/* ── Canvas Particles ── */
.ct-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: ct-fade-in 1.5s ease-out 0.5s forwards;
}

@keyframes ct-fade-in {
  to {
    opacity: 1;
  }
}

/* ── Page Wrapper ── */
.ct-page {
  position: relative;
  z-index: 2;
  min-height: 100vh;
}

/* ── Hero Section ── */
.ct-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: left;
}

.ct-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--g-space-2);
  font-family: var(--g-font-ui);
  font-size: var(--g-text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d9b364;
  margin-bottom: var(--g-space-6);
}

.ct-hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: linear-gradient(135deg, #d9b364, #b8944a);
}

.ct-hero__title {
  font-family: var(--g-font-head);
  font-size: var(--g-text-5xl);
  font-weight: 700;
  line-height: 1.1;
  color: var(--g-color-text);
  max-width: 700px;
  margin-bottom: var(--g-space-6);
}

.ct-hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, #d9b364, #e8c97a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ct-hero__subtitle {
  font-family: var(--g-font-ui);
  font-size: var(--g-text-lg);
  color: var(--g-color-text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ── Trust Bar ── */
.ct-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--g-space-4) var(--g-space-6);
  margin-top: var(--g-space-8);
  padding-top: var(--g-space-6);
  border-top: 1px solid hsl(220 10% 18% / 0.3);
}

.ct-trust__item {
  display: flex;
  align-items: center;
  gap: var(--g-space-2);
  font-family: var(--g-font-ui);
  font-size: var(--g-text-xs);
  color: var(--g-color-text-dim);
  white-space: nowrap;
}

.ct-trust__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #d9b364;
}

/* ── Person Block (sidebar) ── */
.ct-person {
  display: flex;
  align-items: center;
  gap: var(--g-space-3);
  padding: var(--g-space-4);
  background: hsl(42 62% 62% / 0.04);
  border: 1px solid hsl(42 62% 62% / 0.08);
  border-radius: var(--g-radius-md);
  margin-bottom: var(--g-space-5);
}

.ct-person__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--g-gray-200);
  border: 1px solid rgba(217, 179, 100, 0.3);
  display: grid;
  place-items: center;
  font-family: var(--g-font-ui);
  font-weight: 700;
  font-size: var(--g-text-base);
  color: #fff;
}

.ct-person__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ct-person__name {
  font-family: var(--g-font-ui);
  font-size: var(--g-text-sm);
  font-weight: 600;
  color: var(--g-color-text);
}

.ct-person__role {
  font-family: var(--g-font-ui);
  font-size: var(--g-text-xs);
  color: var(--g-color-text-dim);
}

/* ── Contact Layout ── */
.ct-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--g-space-10);
  padding-bottom: clamp(3rem, 8vw, 6rem);
}

@media (min-width: 900px) {
  .ct-layout {
    grid-template-columns: 1.3fr 0.7fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
  }
}

/* ── Form Card with 3D Tilt ── */
.ct-form-card {
  position: relative;
  background: hsl(220 15% 7% / 0.8);
  border: 1px solid hsl(220 10% 20% / 0.4);
  border-radius: var(--g-radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
  will-change: transform;
}

/* Shine that follows cursor */
.ct-form-card__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    700px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    hsl(42 62% 62% / 0.06),
    transparent 40%
  );
}

.ct-form-card:hover .ct-form-card__shine {
  opacity: 1;
}

/* ── Form Fields with Floating Labels ── */
.ct-field {
  position: relative;
  margin-bottom: var(--g-space-6);
}

.ct-field__input,
.ct-field__textarea,
.ct-field__select {
  width: 100%;
  padding: 1.4rem 1rem 0.6rem;
  font-family: var(--g-font-ui);
  font-size: var(--g-text-base);
  color: var(--g-color-text);
  background: hsl(220 15% 8% / 0.6);
  border: 1px solid hsl(220 10% 22% / 0.5);
  border-radius: var(--g-radius-md);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  caret-color: #d9b364;
  -webkit-appearance: none;
  appearance: none;
}

.ct-field__input:hover,
.ct-field__textarea:hover,
.ct-field__select:hover {
  border-color: hsl(220 10% 30% / 0.6);
  background: hsl(220 15% 9% / 0.7);
}

.ct-field__input:focus,
.ct-field__textarea:focus,
.ct-field__select:focus {
  border-color: #d9b364;
  background: hsl(42 62% 62% / 0.03);
  box-shadow:
    0 0 0 1px hsl(42 62% 62% / 0.2),
    0 0 24px hsl(42 62% 62% / 0.08),
    0 0 48px hsl(30 70% 50% / 0.04);
}

.ct-field__textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.6;
}

.ct-field__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  color-scheme: dark;
}

.ct-field__select option {
  background: #1a1a1f;
  color: #fff;
}

/* Floating label */
.ct-field__label {
  position: absolute;
  left: 1rem;
  top: 1rem;
  color: hsl(220 10% 50%);
  font-family: var(--g-font-ui);
  font-size: var(--g-text-base);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
}

.ct-field__input:focus ~ .ct-field__label,
.ct-field__input:not(:placeholder-shown) ~ .ct-field__label,
.ct-field__textarea:focus ~ .ct-field__label,
.ct-field__textarea:not(:placeholder-shown) ~ .ct-field__label,
.ct-field__select:focus ~ .ct-field__label,
.ct-field__select:not([data-empty]) ~ .ct-field__label {
  transform: translateY(-0.55rem) scale(0.72);
  color: #d9b364;
  font-weight: 500;
}

/* Animated gradient border */
.ct-field__border {
  position: absolute;
  inset: 0;
  border-radius: var(--g-radius-md);
  padding: 1px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: conic-gradient(
    from var(--border-angle, 0deg),
    transparent 30%,
    #d9b364 48%,
    #b8944a 52%,
    transparent 70%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.ct-field__input:focus ~ .ct-field__border,
.ct-field__textarea:focus ~ .ct-field__border,
.ct-field__select:focus ~ .ct-field__border {
  opacity: 1;
  animation: rotate-border 4s linear infinite;
}

@keyframes rotate-border {
  to {
    --border-angle: 360deg;
  }
}

/* Field completed check */
.ct-field__check {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%) scale(0);
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: hsl(145 63% 50%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.ct-field__check.is-valid {
  transform: translateY(-50%) scale(1);
  opacity: 1;
}

/* Error state */
.ct-field__input[aria-invalid='true'],
.ct-field__textarea[aria-invalid='true'] {
  border-color: hsl(0 80% 60%);
}

.ct-field__error {
  color: hsl(0 80% 65%);
  font-size: var(--g-text-xs);
  margin-top: var(--g-space-1);
  font-family: var(--g-font-ui);
}

/* ── Privacy Checkbox ── */
.ct-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--g-space-3);
  margin: var(--g-space-8) 0;
}

.ct-checkbox__input {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #d9b364;
  cursor: pointer;
}

.ct-checkbox__text {
  font-family: var(--g-font-ui);
  font-size: var(--g-text-sm);
  color: var(--g-color-text-dim);
  line-height: 1.5;
}

.ct-checkbox__text a {
  color: #d9b364;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: hsl(42 62% 62% / 0.3);
  transition: text-decoration-color 0.2s ease;
}

.ct-checkbox__text a:hover {
  text-decoration-color: #d9b364;
}

/* ── Magnetic Submit Button ── */
.ct-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
  padding: var(--g-space-4) var(--g-space-8);
  font-family: var(--g-font-ui);
  font-size: var(--g-text-base);
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #d9b364, #b8944a);
  border: none;
  border-radius: var(--g-radius-full);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.2s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.3s ease;
  will-change: transform;
}

.ct-submit:hover {
  box-shadow:
    0 8px 30px hsl(42 62% 62% / 0.25),
    0 0 50px hsl(30 70% 50% / 0.1);
}

.ct-submit:active {
  transform: scale(0.97) !important;
}

.ct-submit__text {
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}

/* Loading state */
.ct-submit.is-loading {
  width: 56px;
  min-width: 56px;
  border-radius: 50%;
  pointer-events: none;
  color: transparent;
  transition:
    width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    min-width 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease;
  margin: 0 auto;
}

.ct-submit.is-loading .ct-submit__text {
  opacity: 0;
}

.ct-submit.is-loading::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 3px solid hsl(0 0% 100% / 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ct-spin 0.65s linear infinite;
}

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

/* Success state */
.ct-submit.is-success {
  width: 56px;
  min-width: 56px;
  border-radius: 50%;
  pointer-events: none;
  color: transparent;
  background: hsl(145 63% 42%);
  transition:
    width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    min-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-radius 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s ease;
  margin: 0 auto;
}

.ct-submit.is-success .ct-submit__text {
  opacity: 0;
}

.ct-submit.is-success::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 11px;
  height: 20px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -60%) rotate(45deg) scale(0);
  animation: ct-checkmark 0.4s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes ct-checkmark {
  to {
    transform: translate(-50%, -60%) rotate(45deg) scale(1);
  }
}

.ct-submit.is-success::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: hsl(145 63% 42% / 0.35);
  animation: ct-ripple 0.8s ease-out;
}

@keyframes ct-ripple {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(2.8);
    opacity: 0;
  }
}

/* Error state */
.ct-submit.is-error {
  background: hsl(0 72% 51%);
  animation: ct-shake 0.5s ease-in-out;
}

@keyframes ct-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-6px);
  }
  40% {
    transform: translateX(6px);
  }
  60% {
    transform: translateX(-4px);
  }
  80% {
    transform: translateX(3px);
  }
}

/* ── Info Sidebar ── */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--g-space-8);
}

.ct-sidebar__block {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: hsl(220 15% 7% / 0.6);
  border: 1px solid hsl(220 10% 18% / 0.4);
  border-radius: var(--g-radius-lg);
}

.ct-sidebar__heading {
  font-family: var(--g-font-head);
  font-size: var(--g-text-xl);
  color: var(--g-color-text);
  margin-bottom: var(--g-space-6);
  line-height: 1.3;
}

/* Feature list */
.ct-features {
  display: flex;
  flex-direction: column;
  gap: var(--g-space-4);
}

.ct-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--g-space-3);
}

.ct-feature__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: hsl(42 62% 62% / 0.1);
  color: #d9b364;
  font-size: 13px;
  margin-top: 1px;
}

.ct-feature__text {
  font-family: var(--g-font-ui);
  font-size: var(--g-text-sm);
  color: var(--g-color-text-muted);
  line-height: 1.5;
}

/* Direct contact links */
.ct-direct {
  display: flex;
  flex-direction: column;
  gap: var(--g-space-3);
}

.ct-direct__link {
  display: flex;
  align-items: center;
  gap: var(--g-space-3);
  padding: var(--g-space-3);
  border-radius: var(--g-radius-md);
  color: var(--g-color-text-muted);
  font-family: var(--g-font-ui);
  font-size: var(--g-text-sm);
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.ct-direct__link:hover {
  color: var(--g-color-text);
  background: hsl(42 62% 62% / 0.04);
  border-color: hsl(42 62% 62% / 0.1);
  transform: translateX(4px);
}

.ct-direct__link-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: hsl(220 15% 12%);
  font-size: 16px;
}

/* Privacy note */
.ct-privacy-note {
  font-family: var(--g-font-ui);
  font-size: var(--g-text-xs);
  color: var(--g-color-text-dim);
  line-height: 1.6;
  padding-top: var(--g-space-4);
  border-top: 1px solid hsl(220 10% 18% / 0.3);
}

/* ── Success overlay ── */
.ct-success-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  background: hsl(220 15% 5% / 0.85);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

.ct-success-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.ct-success-overlay__content {
  text-align: center;
  padding: var(--g-space-8);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.ct-success-overlay.is-visible .ct-success-overlay__content {
  transform: scale(1) translateY(0);
}

.ct-success-overlay__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--g-space-6);
  border-radius: 50%;
  background: hsl(145 63% 42%);
  display: grid;
  place-items: center;
  font-size: 32px;
  color: #fff;
}

.ct-success-overlay__title {
  font-family: var(--g-font-head);
  font-size: var(--g-text-3xl);
  color: var(--g-color-text);
  margin-bottom: var(--g-space-3);
}

.ct-success-overlay__text {
  font-family: var(--g-font-ui);
  font-size: var(--g-text-base);
  color: var(--g-color-text-muted);
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Page Load Entrance Animation ── */
.ct-hero__eyebrow,
.ct-hero__title,
.ct-hero__subtitle,
.ct-trust,
.ct-form-card,
.ct-sidebar__block {
  opacity: 0;
  transform: translateY(40px);
  animation: ct-entrance 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.ct-hero__eyebrow {
  animation-delay: 0.3s;
}
.ct-hero__title {
  animation-delay: 0.5s;
}
.ct-hero__subtitle {
  animation-delay: 0.7s;
}
.ct-trust {
  animation-delay: 0.85s;
}
.ct-form-card {
  animation-delay: 1s;
  transform: translateY(50px) scale(0.97);
}
.ct-sidebar__block:nth-child(1) {
  animation-delay: 1.2s;
}
.ct-sidebar__block:nth-child(2) {
  animation-delay: 1.4s;
}

@keyframes ct-entrance {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ── Staggered Reveal (scroll-triggered, for below-fold) ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal='left'] {
  transform: translateX(-30px);
}

[data-reveal='left'].is-visible {
  transform: translateX(0);
}

[data-reveal='scale'] {
  transform: scale(0.95);
}

[data-reveal='scale'].is-visible {
  transform: scale(1);
}

/* ── Responsive ── */
@media (max-width: 899px) {
  .ct-hero {
    text-align: center;
    padding: var(--g-space-6) 0 var(--g-space-4);
  }

  .ct-hero__title {
    font-size: var(--g-text-3xl);
  }

  .ct-hero__subtitle {
    font-size: var(--g-text-sm);
  }

  .ct-hero__title,
  .ct-hero__subtitle {
    max-width: 100%;
  }

  .ct-hero__eyebrow {
    justify-content: center;
  }

  .ct-trust {
    gap: var(--g-space-3);
  }

  .ct-sidebar {
    order: 1;
  }

  .ct-layout {
    gap: var(--g-space-6);
  }
}

@media (max-width: 480px) {
  .ct-form-card {
    padding: var(--g-space-4);
    border-radius: var(--g-radius-lg);
  }

  .ct-field__input,
  .ct-field__textarea,
  .ct-field__select {
    padding: 1.2rem 0.85rem 0.5rem;
    font-size: var(--g-text-sm);
  }

  .ct-field__label {
    left: 0.85rem;
    top: 0.85rem;
    font-size: var(--g-text-sm);
  }
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .ct-aurora__blob {
    animation: aurora-appear 0.5s ease-out forwards;
  }

  .ct-canvas {
    display: none;
  }

  .ct-hero__eyebrow,
  .ct-hero__title,
  .ct-hero__subtitle,
  .ct-trust,
  .ct-form-card,
  .ct-sidebar__block {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ct-field__border {
    display: none;
  }

  .ct-submit,
  .ct-submit__text {
    transition: none !important;
  }

  .ct-submit.is-loading,
  .ct-submit.is-success {
    transition: none;
  }

  .ct-success-overlay,
  .ct-success-overlay__content {
    transition: none;
  }
}
