@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0400-04FF;
}

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

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  background: #fff;
  color: #07121a;
  -webkit-font-smoothing: antialiased;
}

:root {
  --rcb-accent: #00c5ba;
  --rcb-red: #d22b2b;
  --rcb-bg: rgba(255, 255, 255, 0.75);
  --rcb-border: rgba(10, 15, 25, 0.08);
  --rcb-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 2px 10px rgba(0, 0, 0, 0.06);
  --rcb-radius: 18px;
  --rcb-overlay: rgba(7, 12, 20, 0.55);
}

.rcb-hero {
  margin-top: 66px;
  position: relative;
  background: #9132ab;
  padding: 48px 28px;
  min-height: 460px;
  display: flex;
  align-items: flex-start;
  border-radius: 20px;
  overflow: hidden;
}

.rcb-content {
  max-width: 760px;
  z-index: 5;
}

.rcb-heading {
  margin: 0 0 26px;
  color: #fff;
  font-size: 38px;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.rcb-subheading-extra {
  margin: 6px 0 0;
  color: #fff;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 500;
}

.rcb-cta {
  display: inline-block;
  background: #fff;
  color: var(--rcb-red);
  padding: 14px 28px;
  border-radius: 30px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
  margin-top: 20px;
  transition: filter 0.15s ease, transform 0.1s ease, background-color 0.15s ease;
}

.rcb-cta:hover {
  filter: brightness(0.96);
}

.rcb-cta:active {
  filter: brightness(0.92);
  transform: translateY(1px);
}

.rcb-card-wrap {
  position: absolute;
  right: 8px;
  bottom: -1px;
  left: auto;
  top: auto;
  transform: none;
  pointer-events: none;
  z-index: 2;
}

.rcb-card {
  display: block;
  width: clamp(200px, 25vw, 350px);
  height: auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

::selection {
  background: rgba(0, 197, 186, 0.22);
  color: inherit;
}

button,
[role="button"],
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.rcb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  padding: 20px;
  background:
    radial-gradient(1200px 800px at 50% 40%, rgba(7, 12, 20, 0.12), transparent 60%),
    rgba(7, 12, 20, 0.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  align-items: center;
  justify-content: center;
  animation: rcb-fade 0.22s ease both;
}

.rcb-overlay.rcb-open {
  display: flex;
}

@keyframes rcb-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes rcb-pop {
  from {
    transform: translateY(8px) scale(0.985);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.rcb-modal {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border: 1px solid var(--rcb-border);
  border-radius: var(--rcb-radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 24px 24px 26px;
  position: relative;
  animation: rcb-pop 0.22s ease both;
  backdrop-filter: none;
}

.rcb-modal[hidden] {
  display: none;
}

.rcb-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rcb-modal h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.rcb-subtitle {
  margin: 0 0 16px;
  color: #5a6673;
  font-size: 15px;
  line-height: 1.5;
}

.rcb-iconbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: transform 0.12s ease, background-color 0.15s ease, box-shadow 0.15s ease;
}

.rcb-iconbtn:hover {
  background: #f7f8fa;
}

.rcb-iconbtn:active {
  transform: translateY(1px);
}

.rcb-label {
  display: block;
  margin: 10px 0 6px;
  font-size: 15px;
  font-weight: 600;
}

.rcb-form-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.rcb-input {
  flex: 1;
  height: 48px;
  padding: 12px 14px;
  font-size: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #f7f9fc;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease, transform 0.06s ease;
  -webkit-appearance: none;
  appearance: none;
}

.rcb-input:hover {
  border-color: rgba(0, 0, 0, 0.16);
  background: #fff;
}

.rcb-input::placeholder {
  color: #9aa3ad;
}

.rcb-input:focus {
  outline: none;
}

.rcb-input:focus-visible {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.18);
  box-shadow: 0 0 0 3px rgba(0, 197, 186, 0.28);
}

.rcb-input:focus:not(:focus-visible) {
  box-shadow: none;
}

.rcb-input:-webkit-autofill,
.rcb-input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px #fff inset, 0 0 0 3px rgba(0, 197, 186, 0.25);
  -webkit-text-fill-color: inherit;
}

.rcb-hint {
  margin: 6px 0 14px;
  font-size: 15px;
  line-height: 1.45;
  color: #5e6976;
}

.rcb-error {
  margin: 2px 0 14px;
  font-size: 15.5px;
  color: #c12b2b;
}

.rcb-invalid {
  border-color: rgba(210, 43, 43, 0.55) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(210, 43, 43, 0.16) !important;
}

.rcb-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}

.rcb-btn-primary,
.rcb-btn-cancel {
  height: 48px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border: 0;
}

.rcb-btn-primary {
  background: var(--rcb-red);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(210, 43, 43, 0.18);
  transition: filter 0.12s ease, transform 0.08s ease, box-shadow 0.12s ease;
}

.rcb-btn-primary:hover {
  filter: brightness(0.96);
}

.rcb-btn-primary:active {
  filter: brightness(0.93);
  transform: translateY(1px);
}

.rcb-btn-primary:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.rcb-btn-cancel {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.12s ease, transform 0.08s ease;
}

.rcb-btn-cancel:hover {
  background: #f7f8fa;
}

.rcb-btn-cancel:active {
  transform: translateY(1px);}
.rcb-iconbtn:focus-visible,
.rcb-btn-primary:focus-visible,
.rcb-btn-cancel:focus-visible,
.rcb-input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 197, 186, 0.32);
}
.rcb-consent {
  margin: 8px 0 0;
  color: #666;
  font-size: 13px;
}
@media (min-width: 1200px) {
  .rcb-hero {
    padding: 70px;
    min-height: 420px;
  }

  .rcb-heading {
    font-size: 37px;
  }
}

@media (max-width: 600px) {
  .rcb-hero {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 18px 18px 170px;
    min-height: 530px;
    border-radius: 20px;
  }

  .rcb-heading {
    font-size: 22px;
  }

  .rcb-cta {
    padding: 12px 12px;
    font-size: 15px;
  }

  .rcb-card-wrap {
    right: 8px;
    bottom: 4px;
  }

  .rcb-card {
    width: min(64vw, 280px);
  }

  .rcb-modal {
    max-width: 92vw;
    padding: 18px 18px 22px;
    border-radius: 16px;
  }

  .rcb-modal h2 {
    font-size: 18px;
  }

  .rcb-input {
    height: 50px;
  }

  .rcb-actions {
    margin-top: 16px;
  }

  .rcb-subheading-extra {
    font-size: 16px;
    margin-top: 4px;
  }
}

@media (max-width: 360px) {
  .rcb-card {
    width: min(88vw, 340px);
    
  }
    .rcb-card-wrap {
    right: 8px;
    bottom: 4px;
  }
  
}

@media (prefers-reduced-motion: reduce) {
  .rcb-overlay,
  .rcb-modal {
    animation: none;
  }
}
@media (max-width: 800px) {
  html.is-android .rcb-card-wrap {
    right: -21px !important;
    bottom: 0 !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
  }

  html.is-android .rcb-card {
    width: min(74vw, 320px) !important;
  }

  html.is-android .rcb-hero {
    padding-bottom: 200px !important;
  }
}
.rcb-hero {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.18) 0, transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(255, 255, 255, 0.16) 0, transparent 42%),
    linear-gradient(135deg, #b0031f 0%, #d42c2c 40%, #ff4b2b 80%, #ff7a3c 100%);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.rcb-hero::before,
.rcb-hero::after {
  content: "";
  position: absolute;
  inset: -80px 0 -40px;
  pointer-events: none;
  z-index: 3; 
  background-repeat: repeat;
  opacity: 0.0;
}

.rcb-hero::before {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.85) 0, rgba(255, 255, 255, 0.85) 2px, transparent 3px),
    radial-gradient(circle, rgba(255, 255, 255, 0.9) 0, rgba(255, 255, 255, 0.9) 1.6px, transparent 3px);
  background-size: 180px 260px, 220px 320px;
  animation: rcb-snow-fall-slow 22s linear infinite;
}

.rcb-hero::after {
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.8) 0, rgba(255, 255, 255, 0.8) 1.4px, transparent 2.6px),
    radial-gradient(circle, rgba(255, 255, 255, 0.65) 0, rgba(255, 255, 255, 0.65) 1px, transparent 2px);
  background-size: 120px 180px, 160px 220px;
  animation: rcb-snow-fall-fast 14s linear infinite;
}

@keyframes rcb-snow-fall-slow {
  0% {
    transform: translate3d(0, -40px, 0);
  }
  100% {
    transform: translate3d(0, 80px, 0);
  }
}

@keyframes rcb-snow-fall-fast {
  0% {
    transform: translate3d(0, -60px, 0);
  }
  100% {
    transform: translate3d(-40px, 90px, 0);
  }
}
.rcb-cta {
  background: #fff;
  color: var(--rcb-red);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.4),
    0 8px 22px rgba(0, 0, 0, 0.25);
}

.rcb-cta:hover {
  background: #fff5f5;
}