:root {
  --scc-ink: #111827;
  --scc-muted: #5b6472;
  --scc-line: rgba(17, 24, 39, 0.12);
  --scc-blue: #204ce5;
  --scc-blue-dark: #102a8f;
  --scc-gold: #f4b740;
  --scc-cream: #fff8ea;
  --scc-card: rgba(255, 255, 255, 0.86);
  --scc-shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(circle at top left, rgba(244, 183, 64, 0.18), transparent 34rem),
    radial-gradient(circle at 85% 20%, rgba(32, 76, 229, 0.14), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #ffffff 42%, #f7f9ff 100%);
}

.site-header {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.main-navigation .main-nav ul li a,
.gbp-button--primary,
.gbp-button--secondary,
.gbp-button--tertiary,
.scc-step-button {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.gbp-button--primary:hover,
.gbp-button--secondary:hover,
.gbp-button--tertiary:hover,
.scc-step-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(32, 76, 229, 0.22);
}

.gb-element-4349d0fb,
.gbp-section,
.gbp-section__header,
.dynamic-content-template,
.post,
.page {
  position: relative;
}

.gb-element-4349d0fb::after {
  content: "";
  position: absolute;
  inset: 8% 5% auto auto;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(244, 183, 64, 0.36), transparent 68%);
  pointer-events: none;
  animation: scc-float 7s ease-in-out infinite;
}

.gbp-section__inner,
.gb-element-d8157abe > div,
.gb-element-f918915d > div,
.gb-element-9b3d474b > div,
.gb-loop-item,
.dynamic-entry-content {
  animation: scc-rise 620ms ease both;
}

.gb-element-d8157abe > div:nth-child(2),
.gb-element-f918915d > div:nth-child(2),
.gb-loop-item:nth-child(2) { animation-delay: 80ms; }
.gb-element-d8157abe > div:nth-child(3),
.gb-element-f918915d > div:nth-child(3),
.gb-loop-item:nth-child(3) { animation-delay: 140ms; }
.gb-element-d8157abe > div:nth-child(4),
.gb-loop-item:nth-child(4) { animation-delay: 200ms; }

.gb-element-d8157abe > div,
.gb-element-f918915d > div,
.gb-element-9b3d474b > div,
.gb-loop-item,
.dynamic-entry-content,
.scc-step-card {
  border: 1px solid var(--scc-line);
  box-shadow: var(--scc-shadow);
}

.gb-loop-item,
.dynamic-entry-content,
.scc-step-card {
  background: var(--scc-card);
  border-radius: 22px;
}

.gb-loop-item {
  overflow: hidden;
}

.gb-loop-item img,
.gb-media-ddd0bc69,
.gb-media-a76e1611,
.gb-media-f9474357,
.gb-media-34c44db5,
.gb-media-927bd17d {
  transition: transform 500ms ease, filter 500ms ease;
}

.gb-loop-item:hover img,
.gb-media-ddd0bc69:hover,
.gb-media-a76e1611:hover,
.gb-media-f9474357:hover,
.gb-media-34c44db5:hover,
.gb-media-927bd17d:hover {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.03);
}

.gb-text-652957bd,
.gb-text-8e180625,
.gb-text-6a4829c3,
.gb-text-98efdd50 {
  text-wrap: balance;
}

.scc-step-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.scc-step-eyebrow {
  color: var(--scc-blue);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}

.scc-progress {
  height: 8px;
  background: rgba(32, 76, 229, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin: 1rem 0 1.25rem;
}

.scc-progress span {
  display: block;
  height: 100%;
  width: 33%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--scc-blue), var(--scc-gold));
  transition: width 240ms ease;
}

.scc-step {
  display: none;
}

.scc-step.is-active {
  display: block;
  animation: scc-rise 260ms ease both;
}

.scc-options {
  display: grid;
  gap: .8rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 1rem 0;
}

.scc-option input {
  position: absolute;
  opacity: 0;
}

.scc-option span {
  display: block;
  min-height: 52px;
  padding: .9rem 1rem;
  border: 1px solid var(--scc-line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.scc-option input:checked + span {
  border-color: var(--scc-blue);
  box-shadow: 0 0 0 4px rgba(32, 76, 229, .12);
}

.scc-field {
  display: grid;
  gap: .45rem;
  margin: .9rem 0;
}

.scc-field label {
  font-weight: 700;
  color: var(--scc-ink);
}

.scc-field input,
.scc-field textarea {
  min-height: 48px;
  border: 1px solid var(--scc-line);
  border-radius: 14px;
  padding: .85rem 1rem;
  font: inherit;
  background: #fff;
}

.scc-field textarea {
  min-height: 120px;
  resize: vertical;
}

.scc-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1rem;
}

.scc-step-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: .85rem 1.15rem;
  font-weight: 800;
  cursor: pointer;
}

.scc-step-button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--scc-blue), var(--scc-blue-dark));
}

.scc-step-button.secondary {
  color: var(--scc-blue-dark);
  background: rgba(32, 76, 229, 0.09);
}

.scc-form-note,
.scc-error {
  color: var(--scc-muted);
  font-size: .95rem;
}

.scc-error {
  display: none;
  color: #9f1239;
  font-weight: 700;
}

.scc-error.is-visible {
  display: block;
}

.scc-gf-fallback {
  display: none !important;
}

@keyframes scc-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scc-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 14px, 0) scale(1.06); }
}

@media (max-width: 767px) {
  .scc-form-actions {
    flex-direction: column;
  }

  .scc-step-button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
