/* Contact Page - refined information architecture and UX styling */
.cux-contact {
  --cux-bg: #f2f6fb;
  --cux-surface: #ffffff;
  --cux-ink: #1d2a3b;
  --cux-muted: #566174;
  --cux-border: #dce6f3;
  --cux-brand: #4b3276;
  --cux-brand-strong: #352155;
  --cux-brand-soft: #ece7f8;
  --cux-accent: #ee934e;
  --cux-shadow-sm: 0 8px 20px rgba(16, 28, 48, 0.08);
  --cux-shadow-md: 0 14px 34px rgba(16, 28, 48, 0.12);
  --cux-radius-sm: 12px;
  --cux-radius-md: 18px;
  --cux-radius-lg: 24px;
  --cux-wrap: min(1180px, calc(100% - 2rem));

  color: var(--cux-ink);
  background: linear-gradient(180deg, #f9fcff 0%, var(--cux-bg) 280px, var(--cux-bg) 100%);
  font-family: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  overflow-x: clip;
}

.cux-contact *,
.cux-contact *::before,
.cux-contact *::after {
  box-sizing: border-box;
}

.cux-wrap {
  width: var(--cux-wrap);
  margin-inline: auto;
}


.cux-contact a {
  color: inherit;
}

.cux-skip-link {
  position: absolute;
  top: -48px;
  left: 0;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 0 0 var(--cux-radius-sm) 0;
  color: #fff;
  background: var(--cux-brand-strong);
  text-decoration: none;
  transition: top 0.2s ease;
}

.cux-skip-link:focus {
  top: 0;
}

.cux-hero {
  padding: 2.3rem 0 2.2rem;
  background:
    radial-gradient(circle at 10% 0%, rgba(81, 48, 133, 0.16), transparent 34%),
    radial-gradient(circle at 92% 14%, rgba(238, 147, 78, 0.2), transparent 33%),
    linear-gradient(160deg, #f6f9ff 0%, #eff4fc 58%, #f8fbff 100%);
  border-bottom: 1px solid rgba(74, 50, 118, 0.08);
}

.cux-hero__grid {
  display: grid;
  gap: 1rem;
}

.cux-hero__main,
.cux-hero__panel {
  padding: 1.2rem;
  border: 1px solid var(--cux-border);
  border-radius: var(--cux-radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--cux-shadow-sm);
}

.cux-eyebrow,
.cux-form-card__eyebrow,
.cux-proof__eyebrow {
  display: inline-block;
  padding: 0.34rem 0.66rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cux-brand-strong);
  background: var(--cux-brand-soft);
}

.cux-title {
  margin-top: 0.72rem;
  max-width: 22ch;
  font-size: clamp(1.8rem, 5.8vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.024em;
}

.cux-lead {
  margin-top: 0.9rem;
  max-width: 66ch;
  font-size: 1.02rem;
  color: var(--cux-muted);
}

.cux-hero__actions {
  margin-top: 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.68rem;
  margin-bottom: 1.05rem;
}

.cux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--cux-radius-sm);
  font-size: 0.96rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.cux-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--cux-brand), #6645a0);
  box-shadow: 0 10px 20px rgba(75, 50, 118, 0.25);
}

.cux-btn--primary:hover,
.cux-btn--primary:focus-visible {
  transform: translateY(-1px);
}

.cux-btn--soft {
  color: var(--cux-brand-strong);
  background: #fff;
  border-color: rgba(75, 50, 118, 0.24);
}

.cux-btn--soft:hover,
.cux-btn--soft:focus-visible {
  border-color: var(--cux-brand);
}

.cux-reassure-list,
.cux-method-list,
.cux-check-list,
.cux-steps-mini {
  list-style: none;
  padding: 0;
}

.cux-reassure-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.cux-reassure-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.56rem;
  color: #2c3a4c;
  font-size: 0.94rem;
}

.cux-icon-circle {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--cux-brand), #6e4bac);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
}

.cux-hero__panel h2 {
  font-size: 1.2rem;
  line-height: 1.25;
}

.cux-steps-mini {
  margin-top: 0.86rem;
  display: grid;
  gap: 0.6rem;
}

.cux-steps-mini li {
  padding: 0.78rem 0.82rem;
  border: 1px solid #e7edf7;
  border-radius: var(--cux-radius-sm);
  background: #fbfdff;
}

.cux-steps-mini strong {
  display: block;
  margin-bottom: 0.16rem;
  color: var(--cux-brand);
  font-size: 0.84rem;
}

.cux-steps-mini span {
  display: block;
  font-size: 0.9rem;
  color: var(--cux-muted);
  line-height: 1.5;
}

.cux-hero__panel-note {
  margin-top: 0.76rem;
  padding: 0.62rem 0.74rem;
  border-radius: 0 10px 10px 0;
  border-left: 3px solid var(--cux-accent);
  background: #fff7f1;
  color: #4f5f72;
  font-size: 0.86rem;
}

.cux-quick-nav {
  margin-top: -0.95rem;
  position: relative;
  z-index: 8;
}

.cux-quick-nav__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.52rem;
  padding: 0.66rem;
  border: 1px solid #d9e3f2;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: var(--cux-shadow-sm);
}

.cux-chip-link {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.76rem;
  border: 1px solid transparent;
  border-radius: 12px;
  color: #43516a;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  background: #f3f7fd;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cux-chip-link:hover,
.cux-chip-link:focus-visible {
  border-color: #c8d7ee;
  background: #ffffff;
}

.cux-chip-link.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--cux-brand), #6745a2);
  border-color: transparent;
  box-shadow: 0 8px 16px rgba(75, 50, 118, 0.24);
}

.cux-proof {
  padding: 1.45rem 0 0.8rem;
}

.cux-proof__eyebrow {
  margin-bottom: 0.7rem;
}

.cux-proof__grid {
  display: grid;
  gap: 0.66rem;
}

.cux-proof-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon value"
    "icon label";
  column-gap: 0.75rem;
  align-items: center;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--cux-radius-md);
  color: #fff;
  background: linear-gradient(135deg, #4d3278 0%, #65469c 58%, #7757b0 100%);
  box-shadow: var(--cux-shadow-sm);
}

.cux-proof-card__icon {
  grid-area: icon;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.16);
}

.cux-proof-card__value {
  grid-area: value;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.cux-proof-card__label {
  grid-area: label;
  font-size: 0.92rem;
  opacity: 0.93;
}

.cux-main,
.cux-process,
.cux-faq {
  padding: 2rem 0;
}

.cux-main__grid,
.cux-process__grid {
  display: grid;
  gap: 1rem;
}

.cux-form-card,
.cux-side-card,
.cux-process-card,
.cux-faq-item {
  border: 1px solid var(--cux-border);
  border-radius: var(--cux-radius-lg);
  background: var(--cux-surface);
  box-shadow: var(--cux-shadow-sm);
}

.cux-form-card,
.cux-side-card,
.cux-process-card {
  padding: 1.1rem;
}

.cux-form-card__eyebrow {
  margin-bottom: 0.46rem;
}

.cux-section-title {
  font-size: clamp(1.5rem, 4.6vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
}

.cux-section-lead {
  margin-top: 0.66rem;
  color: var(--cux-muted);
  font-size: 0.98rem;
}

.cux-form-wrap {
  margin-top: 1rem;
}

.cux-form-wrap .elementor-template {
  width: 100%;
}

.cux-form-wrap .elementor-form-fields-wrapper {
  gap: 0.65rem;
}

.cux-form-wrap .elementor-field-group {
  margin-bottom: 0.5rem;
}

.cux-form-wrap input,
.cux-form-wrap textarea,
.cux-form-wrap select,
.cux-form-wrap .elementor-field {
  width: 100%;
  min-height: 46px;
  padding: 0.72rem 0.82rem;
  border: 1px solid #ccd7e8;
  border-radius: 11px;
  background: #fff;
  color: #223246;
  font-size: 0.95rem;
}

.cux-form-wrap textarea {
  min-height: 128px;
}

.cux-form-wrap input:focus,
.cux-form-wrap textarea:focus,
.cux-form-wrap select:focus,
.cux-form-wrap .elementor-field:focus {
  outline: none;
  border-color: #7351ae;
  box-shadow: 0 0 0 3px rgba(115, 81, 174, 0.15);
}

.cux-form-wrap button,
.cux-form-wrap .elementor-button {
  min-height: 46px;
  padding: 0.76rem 1rem;
  border: 0;
  border-radius: 11px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--cux-brand), #64449f);
  cursor: pointer;
}

.cux-form-wrap button:hover,
.cux-form-wrap .elementor-button:hover {
  filter: brightness(1.05);
}

.cux-form-wrap .grecaptcha-badge {
  transform: scale(0.95);
  transform-origin: left center;
}

.cux-form-fallback {
  padding: 0.95rem;
  border: 1px dashed #cfdced;
  border-radius: 11px;
  background: #f8fbff;
}

.cux-form-fallback p {
  color: #44556b;
  font-size: 0.93rem;
}

.cux-form-fallback a,
.cux-form-card__hint a {
  color: var(--cux-brand);
  font-weight: 600;
}

.cux-form-card__hint {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #4a5a70;
}

.cux-side {
  display: grid;
  gap: 0.92rem;
  align-content: start;
}

.cux-side-card h3 {
  margin-bottom: 0.64rem;
  font-size: 1.08rem;
  line-height: 1.3;
}

.cux-side-card--muted {
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.cux-method-list {
  display: grid;
  gap: 0.58rem;
}

.cux-method-list__item a {
  display: flex;
  align-items: flex-start;
  gap: 0.66rem;
  padding: 0.78rem;
  border: 1px solid #dce5f2;
  border-radius: var(--cux-radius-sm);
  text-decoration: none;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cux-method-list__item a:hover,
.cux-method-list__item a:focus-visible {
  transform: translateY(-1px);
  border-color: #beaedf;
  box-shadow: var(--cux-shadow-sm);
}

.cux-method-list__item--primary a {
  border-color: #c8b8e8;
  background: #fbf9ff;
}

.cux-method-list__icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  border-radius: 999px;
  color: var(--cux-brand);
  background: #eee8f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cux-method-list strong {
  display: block;
  font-size: 0.93rem;
  color: #213148;
}

.cux-method-list small {
  display: block;
  margin-top: 0.14rem;
  color: #5a677d;
  font-size: 0.84rem;
}

.cux-check-list {
  display: grid;
  gap: 0.48rem;
}

.cux-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.46rem;
  color: #43526a;
  font-size: 0.9rem;
}

.cux-check-list i {
  margin-top: 0.24rem;
  color: #2f8f5a;
}

.cux-process {
  padding-top: 1rem;
}

.cux-process__grid {
  margin-top: 0.95rem;
}

.cux-process-card {
  position: relative;
}

.cux-process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--cux-brand), #7f5fbb);
}

.cux-process-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: 0.25rem;
  border-radius: 999px;
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--cux-brand), #6f4eb0);
}

.cux-process-card h3 {
  margin-top: 0.56rem;
  font-size: 1.03rem;
}

.cux-process-card p {
  margin-top: 0.42rem;
  color: var(--cux-muted);
  font-size: 0.92rem;
  line-height: 1.56;
}

.cux-faq {
  padding-top: 1.15rem;
  padding-bottom: 2.2rem;
}

.cux-faq__wrap {
  max-width: 920px;
}

.cux-faq-list {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.7rem;
}

.cux-faq-item {
  overflow: clip;
}

.cux-faq-trigger {
  width: 100%;
  padding: 1.02rem;
  border: 0;
  text-align: left;
  color: #1f3047;
  font-size: 0.98rem;
  font-weight: 600;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.cux-faq-trigger::after {
  content: "+";
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: var(--cux-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  line-height: 1;
}

.cux-faq-trigger[aria-expanded="true"]::after {
  content: "-";
  background: var(--cux-accent);
}

.cux-faq-panel {
  padding: 0 1.02rem 1rem;
}

.cux-faq-panel p {
  color: var(--cux-muted);
  font-size: 0.92rem;
}

[data-cux-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.cux-contact :focus-visible {
  outline: 3px solid rgba(238, 147, 78, 0.58);
  outline-offset: 2px;
}

@media (min-width: 700px) {
  .cux-hero__actions {
    flex-direction: row;
  }

  .cux-quick-nav {
    margin-top: -1.05rem;
  }

  .cux-quick-nav__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    padding: 0.52rem;
    border-radius: 999px;
    background: #fff;
  }

  .cux-chip-link {
    width: auto;
    min-height: 38px;
    padding: 0.42rem 0.88rem;
    border-radius: 999px;
  }

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

  .cux-proof-card {
    grid-template-columns: auto;
    grid-template-areas:
      "icon"
      "value"
      "label";
    justify-items: start;
    row-gap: 0.38rem;
  }

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

@media (min-width: 960px) {
  .cux-hero {
    padding-top: 2.75rem;
    padding-bottom: 2.55rem;
  }

  .cux-hero__grid {
    grid-template-columns: 1.72fr 1fr;
    gap: 1rem;
  }

  .cux-main__grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
  }

  .cux-side {
    position: sticky;
    top: 108px;
  }

  .cux-chip-link {
    min-width: 128px;
  }

  .cux-hero__main,
  .cux-hero__panel,
  .cux-form-card,
  .cux-side-card,
  .cux-process-card,
  .cux-faq-item {
    padding: 1.28rem;
  }
}

@media (min-width: 1200px) {
  .cux-main,
  .cux-process,
  .cux-faq {
    padding-top: 2.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-cux-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cux-btn,
  .cux-chip-link,
  .cux-method-list__item a {
    transition: none;
  }
}
