*,
*::before,
*::after {
  box-sizing: border-box;
}
main,
footer,
aside {
  display: block;
  width: 100%;
}
/* Reset block */
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
p,
blockquote,
figure,
form,
fieldset,
input,
legend,
pre,
abbr,
button {
  margin: 0;
  padding: 0;
}
/* Lists */
ul,
ol,
li,
dl,
dt,
dd {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

:root {
  --header-h: 84px;

  --margin-y: 20px;

  --pad-x-min: 0.5rem;
  --pad-x: 20px;

  --font-heading:
    "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;

  --fs-900: clamp(2.25rem, 2.2vw + 1.4rem, 4.25rem);
  --fs-800: clamp(1.85rem, 1.3vw + 1.2rem, 2.75rem);
  --fs-700: clamp(1.5rem, 0.9vw + 1.1rem, 2.1rem);
  --fs-600: 1.25rem;
  --fs-500: 1.06rem;
  --fs-400: 1rem;
  --fs-300: 0.925rem;
  --fs-200: 0.85rem;

  --lh-tight: 1.08;
  --lh-snug: 1.28;
  --lh-body: 1.6;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --letter-tight: -0.02em;
  --letter-normal: 0.01em;

  --radius-xs: 9px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 999px;
}
body {
  font-family:
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  background: var(--rc-bg);
  color: var(--rc-text);
}

.rc-flash {
  position: relative;
  z-index: 20;
  max-width: min(760px, calc(100% - 40px));
  margin: 1rem auto;
}

.rc-flash__inner {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: 0.875rem;
  border-radius: 16px;
  padding: 0.875rem 1rem;
  font: 500 0.95rem/1.5 Inter, sans-serif;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.rc-flash__mark {
  display: inline-flex;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
}

.rc-flash__copy {
  display: grid;
  gap: 0.125rem;
}

.rc-flash__title {
  color: #101827;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.25;
}

.rc-flash__message {
  color: #445064;
  font-size: 0.9rem;
  line-height: 1.45;
}

.rc-flash__inner--success {
  background: #f7fffb;
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.rc-flash__inner--success .rc-flash__mark {
  background: #16b885;
  color: #fff;
}

.rc-flash__inner--error {
  background: #fff8f6;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.rc-flash__inner--error .rc-flash__mark {
  background: #c83f32;
  color: #fff;
}

.rc-flash__inner--info {
  background: #f7fbff;
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.rc-flash__inner--info .rc-flash__mark {
  background: #2d76c4;
  color: #fff;
}

@media (max-width: 640px) {
  .rc-flash {
    max-width: calc(100% - 28px);
    margin: 0.75rem auto;
  }

  .rc-flash__inner {
    grid-template-columns: 2rem 1fr;
    gap: 0.75rem;
    padding: 0.8rem;
  }

  .rc-flash__mark {
    width: 2rem;
    height: 2rem;
  }
}

/* =========================================================
  Typography
========================================================= */
h6,
h5,
h4,
h3,
h2,
h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: black;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.5rem;
  }
}

h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3 {
    font-size: 1.75rem;
  }
}

h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  font-size: var(--fs-400, 0.9rem);
}
/* =========================================================
   Accessibility utilities (needed for Skip link)
========================================================= */

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sr-only:focus,
.sr-only:active {
  position: fixed !important;
  top: 14px;
  left: 14px;
  width: auto !important;
  height: auto !important;
  padding: 12px 14px !important;
  margin: 0 !important;
  background: var(--surface-solid) !important;
  color: var(--text) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-soft) !important;
  clip: auto !important;
  white-space: normal !important;
  z-index: 9999 !important;
  outline: none !important;
}

/* Focus styles */
:where(a, button, input, textarea, select):focus-visible {
  outline: none;
  box-shadow: var(--focus);
  border-radius: 12px;
}

a {
  color: inherit;
}

.rc-accordion-item--raised[open] {
  box-shadow:
    rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
    rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.rc-eyebrow {
  display: block;
}
.hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.img-fluid {
  display: block;
  max-width: 100%;
  height: auto;
}

.rc-darkbg {
  background-color: #000;
  color: #f8f9fa;
}
/* OUTER: apply to the section element so its surface stays contained */
.rc-outer {
  width: 100%;
  max-width: 2560px;
  margin-inline: auto;
}

/* =========================================================
   Sticky Footer Layout
========================================================= */
.sticky-footer-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.sticky-footer-layout main {
  flex: 1;
}
.rc-container {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
  padding: 0 var(--pad-x);
}

.rc-kicker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  opacity: 0.78;
  margin: 0 0 10px;
}
.rc-eyebrow {
  font-size: 0.85rem;
  opacity: 0.72;
  margin: 0 0 8px;
}
.rc-h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.05;
  margin: 0 0 12px;
}
.rc-h2 {
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  margin: 0 0 2rem;
}
.rc-h3 {
  font-size: 1.15rem;
  margin: 0 0 8px;
}
.rc-h3--dark {
  color: #ffffff;
}
.rc-lead {
  font-size: 1.1rem;
  max-width: 70ch;
  opacity: 0.9;
  margin: 0 0 16px;
}
.rc-bullets--dashed li {
  padding-left: 0.5rem;
  line-height: 2;
  margin-bottom: 1rem;
  border-bottom: 0.5px dashed rgba(0, 0, 0, 0.2);
}
.rc-p {
  margin: 0;
  max-width: 75ch;
  opacity: 0.86;
}
.rc-muted {
  opacity: 0.72;
}
.rc-link {
  text-decoration: none;
  font-weight: 900;
}
.rc-link:hover {
  text-decoration: underline;
}

.rc-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 10px;
}

.rc-link-row__title {
  margin-bottom: 0;
  flex: 1 1 auto;
}

.rc-link-row__anchor {
  text-decoration: none;
}

.rc-link-row__anchor:hover {
  text-decoration: none;
}

.rc-link-row__chevron {
  flex: 0 0 auto;
  color: var(--rc-green);
  font-size: 0;
  font-weight: 950;
  display: grid;
  place-items: center;
  text-align: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

.rc-link-row__chevron::before {
  content: "›";
  font-size: 1.7rem;
  line-height: 1;
  transform: translateX(1px);
}

.rc-link-row__chevron-link {
  text-decoration: none;
}

.rc-link-row__chevron-link:hover {
  text-decoration: none;
}
.rc-hr {
  border-top: 0.5px dashed rgba(0, 0, 0, 0.2);
  margin-top: 5rem;
}
.rc-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.rc-form {
  display: grid;
  gap: 0.75rem;
}

.rc-form input,
.rc-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
}

.rc-form input {
  min-height: 48px;
}

.rc-form textarea {
  resize: vertical;
}

.rc-form input:focus,
.rc-form textarea:focus {
  outline: 2px solid rgba(34, 197, 94, 0.26);
  border-color: rgba(34, 197, 94, 0.55);
}

.rc-row--pills {
  margin-top: 8px;
}
.rc-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--rc-border);
  background: rgba(0, 0, 0, 0.02);
  font-size: 0.85rem;
  opacity: 0.85;
}

.rc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: var(--rc-btn-min-height);
  padding: var(--rc-btn-padding-y) var(--rc-btn-padding-x);
  border-radius: var(--rc-btn-radius);
  border: 1px solid transparent;
  background: var(--rc-color-brand-500);
  color: var(--rc-color-text-inverse);
  font-size: var(--rc-btn-font-size);
  font-weight: var(--rc-btn-font-weight);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}
.rc-btn:hover {
  background: var(--rc-color-brand-700);
  transform: translateY(-2px);
  box-shadow: var(--rc-shadow-button-hover);
}
.rc-btn:active {
  transform: translateY(0);
  box-shadow: var(--rc-shadow-button-active);
}
.rc-btn:focus-visible {
  box-shadow: var(--rc-focus-ring);
}
.rc-btn--primary {
  background: var(--rc-color-brand-500);
  color: var(--rc-color-text-inverse);
  border-color: var(--rc-color-brand-300);
}
.rc-btn--primary:hover {
  background: var(--rc-color-brand-700);
}
.rc-btn--ghost {
  background: var(--rc-color-surface);
  color: var(--rc-color-text-strong);
  border-color: var(--rc-color-border);
}
.rc-btn--ghost:hover {
  background: var(--rc-color-brand-100);
  border-color: var(--rc-color-brand-300);
  color: var(--rc-color-brand-700);
}
.rc-btn--full {
  width: 100%;
  border-radius: var(--radius-md);
  padding: var(--rc-btn-padding-y) var(--rc-btn-padding-x);
}

.rc-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-bottom: var(--margin-y);
}
.rc-section-gap,
.rc-section--last-gap {
  margin-bottom: 10rem;
}

.rc-section__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-top: 12px;
  margin-bottom: 14px;
}

/* Web Design category gradient surface */
.rc-web-design-gradient {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.rc-web-design-gradient::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      800px 500px at 20% 30%,
      rgba(56, 189, 248, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 85% 70%,
      rgba(139, 92, 246, 0.28),
      transparent 65%
    ),
    linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #1e1b4b 100%);
  filter: blur(40px) saturate(1.15);
  transform: translate3d(0, 0, 0);
  animation: rcChecklistGradientMove 18s ease-in-out infinite alternate;
}

.rc-web-design-gradient > * {
  position: relative;
  z-index: 1;
}

.rc-web-design-gradient .rc-kicker,
.rc-web-design-gradient .rc-h1,
.rc-web-design-gradient .rc-lead,
.rc-web-design-gradient .rc-p,
.rc-web-design-gradient .rc-h3,
.rc-web-design-gradient .rc-fine {
  color: #fff;
}

.rc-web-design-gradient .rc-pill {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.rc-hero--mvp {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 100%;
  display: flex;
}

.rc-hero--mvp::before {
  content: "";
  position: absolute;
  inset: -12%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      900px 520px at 18% 28%,
      rgba(34, 197, 94, 0.28),
      transparent 62%
    ),
    radial-gradient(
      860px 520px at 82% 32%,
      rgba(56, 189, 248, 0.32),
      transparent 60%
    ),
    radial-gradient(
      1100px 700px at 52% 82%,
      rgba(168, 85, 247, 0.22),
      transparent 62%
    ),
    linear-gradient(
      135deg,
      rgba(2, 6, 23, 1) 0%,
      rgba(15, 23, 42, 1) 45%,
      rgba(10, 10, 40, 1) 100%
    );
  filter: blur(55px) saturate(1.18);
  transform: translate3d(0, 0, 0);
  animation: rcMvpHeroMove 16s ease-in-out infinite alternate;
}

.rc-hero--mvp .rc-container {
  position: relative;
  z-index: 1;
  min-height: 100%;
  height: 100%;
}

.rc-hero--mvp .rc-kicker,
.rc-hero--mvp .rc-h1,
.rc-hero--mvp .rc-lead,
.rc-hero--mvp .rc-p,
.rc-hero--mvp .rc-h3,
.rc-hero--mvp .rc-fine {
  color: #fff;
}

.rc-hero--mvp .rc-pill {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
}

.rc-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.1rem;
}

.rc-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.82rem;
}

.rc-article {
  min-height: auto;
  align-items: stretch;
}

.rc-prose {
  display: grid;
  gap: 1rem;
}

.rc-prose h2 {
  margin: 1.1rem 0 0.35rem;
}

.rc-prose h3 {
  margin: 0.9rem 0 0.25rem;
}

.rc-prose ul {
  margin: 0 0 0 1.1rem;
  padding: 0;
}

.rc-prose li {
  margin-bottom: 0.45rem;
}

.rc-callout {
  margin-top: 1.6rem;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius);
  background: #fff;
  padding: 1rem;
}

.rc-callout__grid {
  display: grid;
  gap: 1rem;
}

.rc-ctaBlock__content {
  margin-right: 0;
}

.rc-callout--dark {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.22);
}

.rc-callout--dark .rc-kicker,
.rc-callout--dark .rc-h2,
.rc-callout--dark .rc-p,
.rc-callout--dark .rc-fine,
.rc-callout--dark a {
  color: #fff;
}

.rc-callout--dark a.rc-btn--ghost {
  color: #333333;
}

.rc-ctaBlock .rc-row {
  margin-top: 1rem;
}

.rc-form__row {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

.rc-input,
.rc-select,
.rc-textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
}

.rc-input,
.rc-select {
  min-height: 48px;
}

.rc-textarea {
  min-height: 120px;
  resize: vertical;
}

.rc-input:focus,
.rc-select:focus,
.rc-textarea:focus {
  outline: 2px solid rgba(34, 197, 94, 0.26);
  border-color: rgba(34, 197, 94, 0.55);
}

.rc-web-design-topic-link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(148, 163, 184, 0.4);
  background: rgba(15, 23, 42, 0.72);
}

.rc-web-design-topic-link::before {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      800px 500px at 20% 30%,
      rgba(56, 189, 248, 0.35),
      transparent 60%
    ),
    radial-gradient(
      900px 600px at 85% 70%,
      rgba(139, 92, 246, 0.28),
      transparent 65%
    ),
    linear-gradient(135deg, #0f172a 0%, #1e293b 45%, #1e1b4b 100%);
  filter: blur(40px) saturate(1.15);
  transform: translate3d(0, 0, 0);
  animation: rcChecklistGradientMove 18s ease-in-out infinite alternate;
}

.rc-web-design-topic-link > * {
  position: relative;
  z-index: 1;
}

.rc-web-design-topic-link .rc-kicker,
.rc-web-design-topic-link .rc-h3,
.rc-web-design-topic-link .rc-p,
.rc-web-design-topic-link .rc-fine {
  color: #fff;
}

.rc-web-design-cta__media {
  justify-self: center;
}

.rc-web-design-cta__image {
  display: block;
  width: 100%;
  max-width: 299px;
  height: auto;
  border-radius: var(--rc-radius);
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
}

.rc-web-design-cta .rc-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
  align-items: center;
  width: 100%;
  padding-block: 3rem;
}

.rc-web-design-cta__content {
  width: fit-content;
  max-width: 100%;
}

.rc-web-design-cta__content .rc-p {
  text-align: justify;
}

.rc-web-design-cta .rc-row {
  margin-top: 1.5rem;
}

@media (max-width: 980px) {
  .rc-web-design-cta .rc-container {
    display: flex;
    justify-content: center;
  }

  .rc-web-design-cta .rc-card {
    gap: 3rem;
  }

  .rc-web-design-cta__content {
    justify-self: center;
  }
}

@media (min-width: 981px) {
  .rc-web-design-cta .rc-card {
    display: flex;
    justify-content: space-around;
  }

  .rc-web-design-cta__media {
    flex: 0 0 299px;
    display: flex;
    justify-content: center;
  }

  .rc-web-design-cta__content {
    justify-self: auto;
  }
}

@keyframes rcChecklistGradientMove {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(3%, 2%, 0) scale(1.1);
  }
}

@keyframes rcMvpHeroMove {
  0% {
    transform: translate3d(-3%, -2%, 0) scale(1.04);
  }
  100% {
    transform: translate3d(3%, 2%, 0) scale(1.1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .rc-web-design-gradient::before,
  .rc-web-design-topic-link::before,
  .rc-hero--mvp::before {
    animation: none;
  }
}

/* @media (max-width: 980px) {
  .rc-section {
    padding: 44px 0;
  }
} */

/* Form enhancement hooks */
.is-invalid :invalid.is-touched {
  outline: 2px solid rgba(255, 99, 99, 0.5);
  border-color: rgba(255, 99, 99, 0.5);
}

button.is-loading {
  opacity: 0.85;
  cursor: progress;
}

/* HEADER + FOOTER: full-bleed backgrounds by default */
.rc-header,
.rc-footer {
  width: 100%;
}
/* INNER: content max 1260 */
.rc-inner,
.rc-wrap {
  width: 100%;
  max-width: 1260px;
  margin-inline: auto;
}

.rc-wrap.rc-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

/* Your desktop section size rule */
.rc-box {
  min-height: 590px;
  display: flex;
  align-items: center;
}

/* Tall section */
.rc-box--tall,
.rc-box-tall {
  min-height: 1180px;
}

/* Mobile */
@media (max-width: 980px) {
  /* .rc-outer {
    padding-inline: 20px;
  } */
  .rc-wrap.rc-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .rc-box,
  .rc-box--tall,
  .rc-box-tall {
    /* min-height: auto; */
    /* padding-block: 64px; */
    align-items: stretch;
  }
  .rc-web-design-gradient .rc-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .rc-hero--mvp .rc-container {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .rc-form__row {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 961px) {
  .rc-section.rc-box.rc-hero--mvp > .rc-outer,
  .rc-section.rc-box.rc-hero--mvp > .rc-outer .rc-container {
    min-height: 590px;
  }

  .rc-section.rc-box.rc-hero--mvp > .rc-outer .rc-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .rc-callout__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 1rem;
  }

  .rc-form__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (min-width: 960px) {
  .rc-ctaBlock__content {
    margin-right: 2rem;
  }
}

@media (min-width: 1260px) {
  .rc-ctaBlock__content {
    margin-right: 3rem;
  }
}

/* Back to Top */
.back-to-top-wrapper {
  position: relative;
}

#back-to-top-btn {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background-color: var(--rc-green);
  color: #f8f9fa;
  position: fixed;
  bottom: 20px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    background-color 0.2s ease;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  z-index: 1000;
}

#back-to-top-btn:hover {
  background-color: #1db889;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

#back-to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   FAQ Accordion (reusable)
-------------------------------------------------------------------------- */

.rc-faq-list {
  margin-top: 0;
}

.rc-faq-item {
  border-bottom: 1px solid #d5d7dc;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.rc-faq-item summary {
  min-height: 72px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  list-style: none;
}

.rc-faq-item summary::-webkit-details-marker {
  display: none;
}

.rc-faq-item summary > span:first-child {
  color: #11141a;
  font-size: 14pt;
  font-weight: 600;
  line-height: 1.25;
}

.rc-faq-plus {
  margin-left: auto;
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 1.25rem;
  color: #ffffff;
  background: #3fb554;
  border-radius: 999px;
  position: relative;
  display: grid;
  place-items: center;
}

.rc-faq-plus::before,
.rc-faq-plus::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.6rem;
  line-height: 1;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.rc-faq-plus::before {
  content: "\f067";
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.rc-faq-plus::after {
  content: "\f00d";
  opacity: 0;
  transform: rotate(90deg) scale(0.85);
}

.rc-faq-item[open] .rc-faq-plus::before {
  opacity: 0;
  transform: rotate(-90deg) scale(0.85);
}

.rc-faq-item[open] .rc-faq-plus::after {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.rc-faq-panel {
  height: 0;
  opacity: 0;
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: #f8fafc;
  border-radius: 0 0 12px 12px;
  transform: translateY(-6px);
  will-change: height, opacity, transform;
  transition:
    height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.34s ease,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-faq-item[open] .rc-faq-panel {
  opacity: 1;
  transform: translateY(0);
}

.rc-faq-panel-inner {
  padding: 0 1rem 0;
  transform: translateY(-10px);
  transition:
    padding 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.rc-faq-item[open] .rc-faq-panel-inner {
  padding: 0.5rem 1rem 1.5rem;
  transform: translateY(0);
}

.rc-faq-panel p {
  margin: 0 0 0.75rem;
  color: #2f333d;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.rc-faq-panel p:last-child {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  .rc-faq-panel,
  .rc-faq-panel-inner,
  .rc-faq-plus {
    transition: none;
  }
}
