@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  --cf-blue: #1c1c1e;
  --cf-panel: #232325;
  --cf-purple: #b87333;
  --cf-light-purple: #d4945a;
  --cf-dark-purple: #8f5527;
  --cf-accent: #b87333;
  --cf-text: #f5f0e8;
  --cf-muted: #a8a8a8;
  --cf-border: #3a3a3c;
  --cf-card: #2c2c2e;
  --cf-card-hover: #343436;
  --cf-copper-soft: rgba(184, 115, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.cf-home-body {
  margin: 0;
  background: var(--cf-blue);
  color: var(--cf-text);
  font-family: "Inter", Arial, sans-serif;
}

.cf-page a {
  color: inherit;
  text-decoration: none;
}

.cf-container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.cf-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 24px 0;
  transition: background 0.25s ease, padding 0.25s ease, box-shadow 0.25s ease;
}

.cf-nav.is-scrolled,
.cf-nav.is-open {
  padding: 12px 0;
  background: rgba(28, 28, 30, 0.9);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.cf-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cf-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  width: 232px;
  height: 76px;
  overflow: hidden;
}

.cf-brand img {
  display: block;
  width: 318px;
  height: auto;
  max-width: none;
  transform: translate(-45px, -64px);
  filter: brightness(1.22) contrast(1.2) saturate(1.12) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.28));
}

.cf-nav .cf-brand {
  width: 188px;
  height: 52px;
  align-self: center;
  border-radius: 6px;
}

.cf-nav .cf-brand img {
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
  object-position: center 46%;
}

.cf-gradient-text {
  background: linear-gradient(90deg, var(--cf-purple), var(--cf-light-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cf-menu,
.cf-actions,
.cf-mobile-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.cf-menu a,
.cf-mobile-menu a {
  color: #a8a8a8;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.cf-menu a:hover,
.cf-mobile-menu a:hover {
  color: #fff;
}

.cf-button,
.cf-button-outline,
.cf-button-ghost {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 22px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cf-button {
  background: var(--cf-purple);
}

.cf-button:hover {
  background: var(--cf-dark-purple);
  transform: translateY(-1px);
}

.cf-button-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
}

.cf-button-outline:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cf-button-ghost {
  background: transparent;
  color: #a8a8a8;
  padding-inline: 8px;
}

.cf-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 115, 51, 0.38);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0;
}

.cf-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--cf-text);
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.cf-menu-toggle span + span {
  margin-top: 5px;
}

.cf-menu-toggle.is-open span {
  background: var(--cf-light-purple);
}

.cf-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.cf-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.cf-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.cf-mobile-menu {
  display: none;
}

.cf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(184, 115, 51, 0.16), transparent 58%),
    linear-gradient(135deg, var(--cf-blue), #2c2c2e 50%, #232325);
  padding: 128px 0 72px;
}

.cf-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(184, 115, 51, 0.14);
  filter: blur(42px);
  animation: cf-pulse 3s ease-in-out infinite;
}

.cf-glow.one {
  top: 18%;
  left: 6%;
}

.cf-glow.two {
  right: 4%;
  bottom: 16%;
  width: 440px;
  height: 440px;
  background: rgba(212, 148, 90, 0.12);
  animation-delay: 1s;
}

.cf-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.cf-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 7px 14px;
  border: 1px solid var(--cf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #a8a8a8;
  font-size: 0.78rem;
}

.cf-pill strong {
  color: var(--cf-purple);
}

.cf-hero h1,
.cf-section-title,
.cf-page-title {
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.cf-hero h1 {
  max-width: 620px;
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  line-height: 1.08;
}

.cf-hero-copy {
  max-width: 560px;
  margin: 24px 0 30px;
  color: #a8a8a8;
  font-size: 1.12rem;
  line-height: 1.7;
}

.cf-hero-actions,
.cf-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cf-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.cf-stat {
  min-width: 112px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-right: 24px;
}

.cf-stat:last-child {
  border-right: 0;
}

.cf-stat strong {
  display: block;
  color: #fff;
  font-size: 1.55rem;
}

.cf-stat span {
  color: var(--cf-muted);
  font-size: 0.88rem;
}

.cf-hero-card {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
  animation: cf-float 3s ease-in-out infinite;
}

.cf-hero-card img {
  width: 100%;
  display: block;
  border-radius: 12px;
  border: 1px solid var(--cf-border);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.cf-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(184, 115, 51, 0.34);
  border-radius: 8px;
  background: rgba(184, 115, 51, 0.18);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.cf-float-card.top {
  left: -28px;
  top: -28px;
}

.cf-float-card.bottom {
  right: -28px;
  bottom: -28px;
}

.cf-icon-bubble {
  display: inline-flex;
  min-width: 42px;
  height: 42px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(184, 115, 51, 0.18);
  color: var(--cf-purple);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.cf-green {
  color: #22c55e;
}

.cf-section {
  padding: 96px 0;
}

.cf-section.features,
.cf-section.testimonials,
.cf-section.cta {
  background: linear-gradient(180deg, var(--cf-blue), var(--cf-panel));
}

.cf-section.how,
.cf-section.faq {
  background: linear-gradient(180deg, var(--cf-panel), var(--cf-blue));
}

.cf-section.pricing,
.cf-footer,
.cf-public-main {
  background: var(--cf-panel);
}

.cf-section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.cf-section-title {
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1.18;
}

.cf-section-head p,
.cf-page-hero p {
  color: var(--cf-muted);
  line-height: 1.7;
}

.cf-grid {
  display: grid;
  gap: 28px;
}

.cf-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.cf-card {
  position: relative;
  border: 1px solid var(--cf-border);
  border-radius: 12px;
  background: var(--cf-card);
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.cf-card:hover {
  background: var(--cf-card-hover);
  transform: translateY(-3px);
  box-shadow: 0 18px 60px rgba(184, 115, 51, 0.10);
}

.cf-card-icon {
  display: inline-flex;
  width: auto;
  min-width: 50px;
  max-width: 100%;
  height: 50px;
  padding: 0 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(184, 115, 51, 0.18);
  color: var(--cf-purple);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.cf-card h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1.2rem;
}

.cf-card p,
.cf-card li {
  color: var(--cf-muted);
  line-height: 1.65;
}

.cf-step-number {
  position: absolute;
  top: -16px;
  left: -16px;
  border: 1px solid rgba(184, 115, 51, 0.34);
  border-radius: 6px;
  background: var(--cf-blue);
  color: var(--cf-purple);
  padding: 6px 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.cf-testimonial-window {
  overflow: hidden;
  max-width: 860px;
  margin: 0 auto;
}

.cf-testimonial-track {
  display: flex;
  transition: transform 0.45s ease;
}

.cf-testimonial {
  min-width: 100%;
  padding: 0 12px;
}

.cf-stars {
  color: #eab308;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.cf-quote {
  margin: 0 0 28px;
  color: #e5e7eb;
  font-size: 1.18rem;
  line-height: 1.75;
}

.cf-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cf-person img {
  width: 52px;
  height: 52px;
  border: 2px solid var(--cf-purple);
  border-radius: 50%;
  object-fit: cover;
}

.cf-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.cf-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #6b7280;
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.cf-dot.active {
  width: 32px;
  background: var(--cf-purple);
}

.cf-billing {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--cf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.cf-billing button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--cf-muted);
  padding: 10px 16px;
  cursor: pointer;
}

.cf-billing button.active {
  background: var(--cf-purple);
  color: #fff;
}

.cf-price-card {
  padding: 0;
  overflow: hidden;
}

.cf-price-card.featured {
  border-color: var(--cf-purple);
  box-shadow: 0 20px 70px rgba(184, 115, 51, 0.14);
}

.cf-ribbon {
  background: var(--cf-purple);
  color: #fff;
  text-align: center;
  padding: 7px;
  font-size: 0.85rem;
  font-weight: 700;
}

.cf-price-inner {
  padding: 30px;
}

.cf-price {
  margin: 16px 0;
  color: #fff;
  font-size: 2.45rem;
  font-weight: 800;
}

.cf-price small {
  color: var(--cf-muted);
  font-size: 1rem;
  font-weight: 500;
}

.cf-check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.cf-check-list li::before {
  content: "+";
  color: var(--cf-purple);
  font-weight: 800;
  margin-right: 10px;
}

.cf-faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}

.cf-faq-list details {
  border: 1px solid var(--cf-border);
  border-radius: 12px;
  background: var(--cf-card);
  padding: 0 22px;
}

.cf-faq-list summary {
  cursor: pointer;
  color: #fff;
  padding: 18px 0;
  font-weight: 700;
}

.cf-faq-list details p {
  margin: 0;
  padding: 0 0 18px;
  color: var(--cf-muted);
  line-height: 1.7;
}

.cf-cta-card {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--cf-border);
  border-radius: 16px;
  background: var(--cf-card);
  padding: 46px;
  text-align: center;
  backdrop-filter: blur(16px);
}

.cf-cta-card h2 {
  margin: 0 0 20px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.cf-cta-card p {
  max-width: 680px;
  margin: 0 auto 28px;
  color: #a8a8a8;
  line-height: 1.7;
}

.cf-cta-actions {
  justify-content: center;
}

.cf-footer {
  padding: 64px 0 32px;
}

.cf-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 34px;
}

.cf-footer .cf-brand {
  width: 260px;
  height: 74px;
  border-radius: 8px;
  margin-bottom: 22px;
}

.cf-footer .cf-brand img {
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
  object-position: center 45%;
  filter: brightness(1.18) contrast(1.16) saturate(1.12);
}

.cf-footer p,
.cf-footer a {
  color: var(--cf-muted);
}

.cf-footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 1rem;
}

.cf-footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cf-footer a:hover {
  color: var(--cf-purple);
}

.cf-footer-grid > div:not(:first-child) h3 {
  position: relative;
  padding-bottom: 10px;
}

.cf-footer-grid > div:not(:first-child) h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: var(--cf-accent);
}

.cf-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--cf-border);
  padding-top: 26px;
}

.cf-social {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.cf-page-hero {
  padding: 150px 0 70px;
  background: radial-gradient(circle at 35% 35%, rgba(184, 115, 51, 0.18), transparent 42%),
    linear-gradient(135deg, var(--cf-blue), #2c2c2e 50%, #232325);
}

.cf-page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.cf-content-band {
  padding: 84px 0;
  background: var(--cf-panel);
}

.cf-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.cf-rich-text p {
  color: var(--cf-muted);
  line-height: 1.75;
}

.container {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
}

.apx-mini-hero,
.apx-page-head {
  padding: 140px 0 64px;
  background: radial-gradient(circle at 35% 35%, rgba(184, 115, 51, 0.18), transparent 42%),
    linear-gradient(135deg, var(--cf-blue), #2c2c2e 50%, #232325);
}

.apx-mini-hero h1,
.apx-page-head h1 {
  max-width: 760px;
  margin: 12px 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
}

.apx-mini-hero p,
.apx-page-head p {
  max-width: 720px;
  color: #a8a8a8;
  line-height: 1.7;
}

.apx-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--cf-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--cf-purple);
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.apx-page-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.apx-page-tags span {
  border: 1px solid var(--cf-border);
  border-radius: 999px;
  color: #a8a8a8;
  padding: 8px 12px;
}

.apx-auth,
.apx-section {
  padding: 72px 0;
  background: var(--cf-panel);
}

.apx-auth-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.apx-auth-panel,
.apx-auth-form,
.apx-card {
  border: 1px solid var(--cf-border);
  border-radius: 12px;
  background: var(--cf-card);
  padding: 28px;
  color: var(--cf-text);
}

.apx-auth-panel h3,
.apx-auth-form h3,
.apx-card h4 {
  margin: 14px 0 10px;
  color: #fff;
}

.apx-auth-panel p,
.apx-auth-form p,
.apx-card p,
.apx-card li,
.apx-auth-panel li {
  color: var(--cf-muted);
  line-height: 1.65;
}

.apx-auth-form form {
  display: grid;
  gap: 12px;
}

.apx-auth-form input,
.apx-auth-form select,
.apx-auth-form textarea,
.apx-card input,
.apx-card select,
.apx-card textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--cf-border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 0 14px;
}

.apx-auth-form select,
.apx-card select {
  background: var(--cf-blue);
}

.apx-btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  font-weight: 700;
}

.apx-btn.primary {
  background: var(--cf-purple);
  color: #fff;
}

.apx-btn.secondary,
.apx-btn.ghost {
  border: 1px solid var(--cf-border);
  color: #fff;
}

.alert {
  border: 1px solid var(--cf-border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 12px;
}

.text-danger {
  color: #f87171;
}

.qv-login {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px 0 72px;
  background:
    radial-gradient(circle at 20% 20%, rgba(184, 115, 51, 0.18), transparent 34%),
    radial-gradient(circle at 88% 70%, rgba(34, 197, 94, 0.12), transparent 30%),
    linear-gradient(135deg, #1c1c1e, #1c1c1e 48%, #232325);
}

.qv-login-bg {
  position: absolute;
  border-radius: 50%;
  filter: blur(46px);
  pointer-events: none;
}

.qv-login-bg-one {
  width: 340px;
  height: 340px;
  top: 12%;
  left: 4%;
  background: rgba(184, 115, 51, 0.16);
}

.qv-login-bg-two {
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: 4%;
  background: rgba(212, 148, 90, 0.12);
}

.qv-login-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.8fr);
  gap: 42px;
  align-items: center;
}

.qv-login-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(184, 115, 51, 0.35);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cf-light-purple);
  padding: 8px 13px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.qv-login-story h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.qv-login-story p {
  max-width: 620px;
  margin: 22px 0 0;
  color: #a8a8a8;
  font-size: 1.08rem;
  line-height: 1.75;
}

.qv-login-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
  margin-top: 30px;
}

.qv-login-metrics div,
.qv-login-panel,
.qv-login-card {
  border: 1px solid var(--cf-border);
  background: var(--cf-card);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.qv-login-metrics div {
  border-radius: 12px;
  padding: 16px;
}

.qv-login-metrics strong {
  display: block;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 9px;
}

.qv-login-metrics span {
  display: block;
  color: #a8a8a8;
  font-size: 0.88rem;
  line-height: 1.35;
}

.qv-login-panel {
  max-width: 520px;
  margin-top: 18px;
  border-radius: 16px;
  padding: 18px;
}

.qv-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 14px;
  margin-bottom: 12px;
}

.qv-panel-head span,
.qv-panel-row span {
  color: var(--cf-muted);
  font-size: 0.88rem;
}

.qv-panel-head strong,
.qv-panel-row strong {
  color: #fff;
}

.qv-panel-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
}

.qv-login-card {
  border-radius: 18px;
  padding: 30px;
}

.qv-login-card-head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}

.qv-login-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(184, 115, 51, 0.18);
  color: var(--cf-light-purple);
  font-weight: 900;
}

.qv-login-card h2 {
  margin: 0 0 4px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.8rem;
}

.qv-login-card p,
.qv-login-foot span {
  margin: 0;
  color: var(--cf-muted);
}

.qv-login-form {
  display: grid;
  gap: 15px;
}

.qv-login-form label {
  display: grid;
  gap: 8px;
}

.qv-login-form label span {
  color: var(--cf-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.qv-login-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  padding: 0 15px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.qv-login-form input:focus {
  border-color: rgba(184, 115, 51, 0.75);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(184, 115, 51, 0.14);
}

.qv-login-submit {
  min-height: 52px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, var(--cf-purple), var(--cf-dark-purple));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.qv-login-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(184, 115, 51, 0.22);
}

.qv-login-foot {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.95rem;
}

.qv-login-foot a {
  color: var(--cf-light-purple);
  font-weight: 800;
}

@keyframes cf-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes cf-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

@media (max-width: 900px) {
  .cf-menu,
  .cf-actions {
    display: none;
  }

  .cf-menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .cf-mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 20px 24px 24px;
    background: rgba(28, 28, 30, 0.96);
    backdrop-filter: blur(18px);
  }

  .cf-nav.is-open .cf-mobile-menu {
    display: flex;
  }

  .cf-hero-grid,
  .qv-login-grid,
  .cf-split,
  .cf-grid.three {
    grid-template-columns: 1fr;
  }

  .cf-footer-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .cf-footer-grid > div:first-child {
    margin-bottom: 8px;
  }

  .cf-footer-grid > div:not(:first-child) {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    padding: 18px;
  }

  .cf-footer-grid > div:not(:first-child) h3 {
    margin-bottom: 14px;
  }

  .cf-footer-grid > div:not(:first-child) ul {
    gap: 0;
  }

  .cf-footer-grid > div:not(:first-child) li + li {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .cf-footer-grid > div:not(:first-child) a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
  }

  .cf-footer-grid > div:not(:first-child) a::after {
    content: ">";
    color: var(--cf-accent);
    font-weight: 800;
    opacity: 0.8;
  }

  .cf-hero {
    min-height: auto;
  }

  .cf-hero-card {
    max-width: 380px;
  }

  .cf-footer-bottom {
    flex-direction: column;
  }

  .qv-login-grid {
    grid-template-columns: 1fr;
  }

  .qv-login-card {
    max-width: 560px;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .cf-container {
    width: min(100% - 24px, 1180px);
  }

  .cf-brand {
    width: 168px;
    height: 56px;
  }

  .cf-brand img {
    width: 232px;
    transform: translate(-33px, -47px);
  }

  .cf-footer .cf-brand {
    width: 220px;
    height: 64px;
  }

  .cf-footer .cf-brand img {
    width: 100%;
    height: 100%;
    transform: none;
  }

  .cf-nav .cf-brand {
    width: 150px;
    height: 44px;
  }

  .cf-nav .cf-brand img {
    width: 100%;
    height: 100%;
    transform: none;
    object-fit: cover;
    object-position: center 46%;
  }

  .cf-section {
    padding: 72px 0;
  }

  .cf-hero-actions,
  .cf-cta-actions {
    flex-direction: column;
  }

  .cf-button,
  .cf-button-outline {
    width: 100%;
  }

  .cf-stats {
    gap: 14px;
  }

  .cf-stat {
    width: 100%;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 0 0 14px;
  }

  .cf-float-card {
    position: static;
    width: 100%;
    margin-inline: 0;
    margin-top: 12px;
    padding: 12px;
    gap: 10px;
  }

  .cf-float-card > div {
    display: grid;
    gap: 2px;
    min-width: 0;
  }

  .cf-float-card small,
  .cf-float-card strong {
    display: block;
    line-height: 1.25;
  }

  .cf-float-card strong {
    font-size: 0.95rem;
    overflow-wrap: anywhere;
  }

  .cf-icon-bubble {
    height: 38px;
    min-width: 56px;
    font-size: 0.68rem;
  }

  .cf-cta-card {
    padding: 28px 20px;
  }

  .qv-login {
    padding: 112px 0 52px;
  }

  .qv-login-metrics {
    grid-template-columns: 1fr;
  }

  .qv-login-card {
    padding: 22px;
  }

  .qv-login-foot {
    flex-direction: column;
    align-items: center;
  }
}


