/* CrunsoftQR — Crunsoft kurumsal tasarım dili (crunsoft.com) */
:root {
  --cr-navy: #0a1628;
  --cr-red: #c41e3a;
  --cr-purple: #6b2d9e;
  --brand-primary: #6d28d9;
  --brand-secondary: #4f46e5;
  --brand-accent: #b91c1c;
  --brand-quaternary: #0d9488;
  --brand-primary-rgb: 109, 40, 217;
  --brand-secondary-rgb: 79, 70, 229;
  --brand-accent-rgb: 185, 28, 28;
  --brand-quaternary-rgb: 13, 148, 136;
  --brand-light: #c4b5fd;
  --brand-light-strong: #e9d5ff;
  --bg: #070b12;
  --bg-deep: #04060c;
  --bg-elevated: #0a101a;
  --bg-header: #0a101a;
  --bg-progress: #060910;
  --bg-section-alt: var(--surface);
  --bg-stats: var(--surface-2);
  --bg-footer: var(--bg-deep);
  --bg-hero: var(--bg);
  --bg-page-hero: var(--surface);
  --surface: #101827;
  --surface-2: #162033;
  --surface-card: #0c1220;
  --border-subtle: rgba(148, 163, 184, 0.2);
  --border-brand: rgba(var(--brand-primary-rgb), 0.28);
  --grid-line: rgba(var(--brand-primary-rgb), 0.1);
  --text: #f8fafc;
  --muted: #94a3b8;
  --radius: 16px;
  --header-h: 88px;
  --site-header-h: 88px;
  --font: "Inter", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

html:has(.qr-choice-page) {
  height: auto;
  min-height: 100%;
  overflow-x: clip;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

a { color: var(--brand-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-light-strong); }

.marketing-shell {
  position: relative;
  min-height: 100vh;
  padding-top: var(--site-header-h, 120px);
}

.site-main {
  position: relative;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* —— Crunsoft üst şerit —— */
.cr-brand-bar {
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cr-brand-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 24px;
  max-width: 1140px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.cr-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-light);
  font-weight: 700;
}

.cr-brand-link img {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
}

.cr-brand-tagline { color: var(--muted); }

.cr-product-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-brand);
  background: rgba(var(--brand-primary-rgb), 0.12);
  color: var(--brand-light-strong);
  font-size: 10px;
  font-weight: 600;
}

/* —— Fixed header + scroll progress (cr-cloud) —— */
.site-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg-header);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  border-bottom: 2px solid var(--border-brand);
}

.site-header-sticky .cr-brand-bar {
  border-bottom: 1px solid var(--border-subtle);
}

.site-progress-wrap {
  background: var(--bg-progress);
  border-bottom: 1px solid var(--border-subtle);
}

.site-progress-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 24px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-progress-brand { color: var(--brand-light); font-weight: 700; }
.site-progress-page { flex: 1; }
.site-progress-pct { font-variant-numeric: tabular-nums; color: var(--brand-light-strong); }
.site-progress-track { height: 3px; background: var(--border-subtle); }
.site-progress-fill {
  height: 100%;
  width: 0;
  background: var(--brand-primary);
  transition: width 0.12s ease-out;
}

.site-nav {
  position: relative;
  background: transparent;
  border-bottom: none;
  transition: background 0.25s, box-shadow 0.25s;
}

.site-nav-scrolled {
  background: var(--bg-header);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.site-nav-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  width: 100%;
  padding: 14px 0;
  box-sizing: border-box;
}

.site-nav-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  flex-wrap: wrap;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  margin-right: auto;
}

.nav-brand-logo {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  line-height: 1.1;
}

.nav-brand-text strong { font-size: 15px; letter-spacing: 0.06em; }
.nav-brand-text small {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: auto;
}

.site-nav-links a {
  color: var(--text);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  opacity: 0.88;
  transition: 0.2s;
}

.site-nav-links a:hover,
.site-nav-links a.active {
  opacity: 1;
  background: rgba(var(--brand-primary-rgb), 0.14);
  color: #fff;
}

.nav-admin {
  border: 1px solid rgba(var(--brand-primary-rgb), 0.35);
  background: rgba(var(--brand-primary-rgb), 0.12);
}

.site-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border-radius: 10px;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.35);
  background: rgba(var(--brand-primary-rgb), 0.1);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
}

.site-nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.site-nav-toggle-bars span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s, opacity 0.2s;
}

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

.site-nav-toggle.is-open .site-nav-toggle-bars span:nth-child(2) { opacity: 0; }

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

.site-nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.site-nav-menu-open .site-nav-links { display: flex; }

@media (max-width: 767px) {
  .site-nav-toggle { display: inline-flex; }
  .site-nav-links {
    display: none;
    position: fixed;
    top: var(--site-header-h, 88px);
    left: 0;
    right: 0;
    z-index: 95;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 16px 20px 24px;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  }
  .site-nav-links.is-open { display: flex; }
  .site-nav-links a { border-radius: 10px; }
  .nav-brand-text { display: none; }
}

/* Legacy header aliases */
.site-header,
.site-header.is-scrolled { display: none; }

/* —— Buttons —— */
.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}

.cr-btn:hover { transform: translateY(-1px); }

.cr-btn-primary {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  color: #fff;
  box-shadow: 0 8px 28px rgba(var(--brand-primary-rgb), 0.35);
}

.cr-btn-primary:hover {
  box-shadow: 0 12px 36px rgba(var(--brand-primary-rgb), 0.5);
  color: #fff;
}

.cr-btn-ghost {
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text);
}

.cr-btn-ghost:hover {
  border-color: var(--brand-light);
  color: #fff;
}

.cr-btn-sm { padding: 8px 18px; font-size: 13px; }

/* —— Page hero (iç sayfalar) —— */
.page-hero {
  position: relative;
  padding: 48px 0 40px;
  background: var(--surface-card);
  border-bottom: 2px solid var(--border-brand);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(var(--brand-primary-rgb), 0.18), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(var(--brand-secondary-rgb), 0.12), transparent 50%);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.625rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.page-hero-lead {
  position: relative;
  margin: 12px 0 0;
  max-width: 640px;
  font-size: 1.05rem;
  color: var(--muted);
}

.page-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
}

/* —— Sections —— */
.cr-section { padding: 72px 0; }

.cr-section-alt {
  background: var(--surface-card);
  border-block: 1px solid var(--border-subtle);
}

.cr-section-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.cr-section-lead {
  margin: 0;
  color: var(--muted);
  max-width: 560px;
}

/* —— Cards —— */
.cr-card {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.cr-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--brand-primary-rgb), 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.cr-card-popular {
  border-color: rgba(var(--brand-primary-rgb), 0.55);
  background: linear-gradient(160deg, rgba(var(--brand-primary-rgb), 0.14), var(--surface));
  box-shadow: 0 0 0 1px rgba(var(--brand-primary-rgb), 0.2), 0 20px 50px rgba(0, 0, 0, 0.4);
}

.cr-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.cr-grid-2 { display: grid; gap: 24px; }
.cr-grid-3 { display: grid; gap: 24px; }
.cr-grid-4 { display: grid; gap: 20px; }

@media (min-width: 640px) {
  .cr-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .cr-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .cr-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 64px 0 80px;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: -50%;
  background-image:
    linear-gradient(rgba(var(--brand-primary-rgb), 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--brand-primary-rgb), 0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: cr-grid-drift 40s linear infinite;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: cr-orb-float 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  top: -80px;
  right: -60px;
  background: rgba(var(--brand-primary-rgb), 0.35);
}

.hero-orb-2 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -80px;
  background: rgba(var(--brand-secondary-rgb), 0.28);
  animation-delay: -4s;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-inner { grid-template-columns: 1.1fr 0.9fr; }
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  margin-bottom: 20px;
  border-radius: 999px;
  border: 1px solid var(--border-brand);
  background: rgba(var(--brand-primary-rgb), 0.1);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-light-strong);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 span {
  background: linear-gradient(135deg, #fff 20%, var(--brand-light-strong));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 20px 0 0;
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-tag {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  color: var(--muted);
}

/* Hero card mockup (legacy aliases) */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-glow { display: none; }

.hero-qr,
.hero-qr-cell { display: none; }

/* Stats strip */
.stats-strip {
  border-block: 1px solid var(--border-subtle);
  background: var(--surface-card);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .stat-cell { border-bottom: none; }
  .stat-cell:last-child { border-right: none; }
}

.stat-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-value {
  margin-top: 8px;
  font-size: clamp(1.75rem, 3vw, 2.125rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--brand-light-strong);
}

.stat-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Crunsoft product band */
.cr-product-band {
  padding: 48px 0;
  background: linear-gradient(135deg, rgba(var(--brand-primary-rgb), 0.15), rgba(var(--brand-secondary-rgb), 0.08));
  border-block: 2px solid var(--border-brand);
}

.cr-product-band-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cr-product-band-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cr-product-band-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.cr-product-band-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cr-product-band-logo img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  border-top: 2px solid var(--border-brand);
  padding-top: 56px;
}

.site-footer-grid {
  display: grid;
  gap: 32px;
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .site-footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.site-footer h4 {
  margin: 0 0 16px;
  font-size: 14px;
  color: #fff;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li { margin-top: 10px; }

.site-footer li a { color: var(--muted); font-size: 14px; }
.site-footer li a:hover { color: #fff; }

.site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--muted);
}

.site-footer-crunsoft {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--border-brand);
  background: rgba(var(--brand-primary-rgb), 0.08);
  color: var(--brand-light);
  font-weight: 600;
}

.site-footer-crunsoft img { width: 20px; height: 20px; border-radius: 5px; }

/* Forms */
.cr-form-card {
  max-width: 640px;
  margin: 0 auto;
}

.cr-form-grid {
  align-items: stretch;
}

.cr-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.cr-field-hint {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.cr-req { color: #f87171; }

.cr-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}

.cr-package-picker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.cr-package-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.cr-package-option:has(.cr-package-check:checked) {
  border-color: rgba(var(--brand-primary-rgb), 0.45);
  background: rgba(var(--brand-primary-rgb), 0.08);
}

.cr-package-check {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand-primary);
}

.cr-package-option-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.cr-package-option-body strong {
  font-size: 14px;
  color: var(--text);
}

.cr-package-option-body span {
  font-size: 13px;
  color: var(--muted);
}

.cr-package-qty-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 72px;
}

.cr-package-qty-label {
  font-size: 11px;
  color: var(--muted);
}

.cr-package-qty {
  width: 72px;
  padding: 8px 10px;
  text-align: center;
}

.cr-package-qty:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.cr-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.cr-consent input { margin-top: 4px; flex-shrink: 0; }
.cr-consent a { color: var(--brand-light); text-decoration: underline; }

.cr-form-submit {
  margin-top: 24px;
  width: 100%;
}

.cr-form-footnote {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.cr-order-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.cr-order-message--success {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.cr-order-message--error {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.cr-order-summary {
  margin-top: 24px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.25);
  background: rgba(var(--brand-primary-rgb), 0.06);
}

.cr-order-summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.cr-order-summary-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.cr-order-summary-count {
  font-size: 12px;
  color: var(--muted);
}

.cr-order-summary-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cr-order-summary-lines li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.cr-order-summary-lines li span:first-child {
  min-width: 0;
}

.cr-order-summary-lines li span:last-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

.cr-order-summary-quote {
  color: var(--brand-light) !important;
  font-weight: 600 !important;
}

.cr-order-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  font-size: 14px;
  color: var(--text);
}

.cr-order-summary-total strong {
  font-size: 1.25rem;
  color: var(--brand-light-strong);
}

.cr-order-summary-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.cr-input,
.cr-select,
.cr-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.cr-input:focus,
.cr-select:focus,
.cr-textarea:focus {
  border-color: rgba(var(--brand-primary-rgb), 0.6);
  box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.15);
}

.cr-textarea { min-height: 100px; resize: vertical; }

/* FAQ */
.cr-faq details {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 20px 24px;
  transition: border-color 0.2s;
}

.cr-faq details[open] {
  border-color: rgba(var(--brand-primary-rgb), 0.4);
}

.cr-faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: #fff;
}

.cr-faq summary::-webkit-details-marker { display: none; }

.cr-faq summary::after {
  content: "+";
  float: right;
  color: var(--brand-light);
  font-weight: 700;
}

.cr-faq details[open] summary::after { content: "−"; }

.cr-faq p {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--muted);
}

/* Legal pages */
.legal-content h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-top: 0.5rem;
}

/* Scroll reveal */
.cr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.cr-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.cr-reveal-delay-1 { transition-delay: 0.1s; }
.cr-reveal-delay-2 { transition-delay: 0.2s; }
.cr-reveal-delay-3 { transition-delay: 0.3s; }

/* Animations */
@keyframes cr-grid-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(48px, 48px); }
}

@keyframes cr-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -24px) scale(1.05); }
}

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

@keyframes cr-pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.05); }
}

@keyframes cr-scan {
  0%, 100% { top: 12px; opacity: 0; }
  10% { opacity: 1; }
  50% { top: calc(100% - 20px); opacity: 1; }
  60% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .cr-reveal,
  .reveal-up { opacity: 1; transform: none; }
}

/* —— cr-cloud hero cinematic —— */
.hero-cinematic {
  position: relative;
  overflow: hidden;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding: 48px 0 64px;
  background: var(--bg-hero);
}

.hero-cinematic-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, #000 20%, transparent 95%);
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-orb-c { display: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: none;
  animation: orbFloat 14s ease-in-out infinite;
  background: transparent;
}

.hero-orb-a {
  width: 280px;
  height: 280px;
  top: 10%;
  left: 5%;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.45);
  box-shadow: inset 0 0 0 1px rgba(var(--brand-secondary-rgb), 0.2);
}

.hero-orb-b {
  width: 220px;
  height: 220px;
  bottom: 15%;
  right: 10%;
  animation-delay: -4s;
  border: 1px solid rgba(var(--brand-secondary-rgb), 0.45);
}

.hero-orb-c {
  width: 180px;
  height: 180px;
  top: 40%;
  right: 35%;
  animation-delay: -8s;
  border: 1px solid rgba(var(--brand-accent-rgb), 0.45);
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -12px) rotate(5deg); }
}

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

@media (min-width: 992px) {
  .hero-cinematic-inner { grid-template-columns: 1fr 1fr; }
}

.hero-copy h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  margin: 12px 0;
}

.hero-lead,
.section-sub {
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 20px;
}

.eyebrow {
  color: var(--brand-light);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.hero-pillars { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }

.hero-pillar {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid color-mix(in srgb, var(--pillar-accent, var(--brand-primary)) 32%, var(--border-subtle));
  background: color-mix(in srgb, var(--pillar-accent, var(--brand-primary)) 8%, var(--surface));
  color: var(--text);
}

.hero-visual-stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.hero-card-shell {
  position: relative;
  width: min(100%, 320px);
  animation: heroKenBurns 18s ease-in-out infinite alternate;
}

.hero-card-ring {
  position: absolute;
  inset: -16px;
  border-radius: 28px;
  border: 1px solid rgba(var(--brand-primary-rgb), 0.42);
  box-shadow:
    0 0 0 1px rgba(var(--brand-secondary-rgb), 0.16),
    inset 0 0 0 1px rgba(var(--brand-primary-rgb), 0.1);
  animation: pulseGlow 3.5s step-end infinite;
  pointer-events: none;
}

.hero-card {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 28px 28px 24px;
  border-radius: 24px;
  border: 1px solid var(--border-brand);
  background: linear-gradient(165deg, var(--surface-2), var(--surface-card));
  box-shadow:
    0 0 0 1px rgba(var(--brand-primary-rgb), 0.15),
    0 32px 80px rgba(0, 0, 0, 0.55);
  animation: cr-float 6s ease-in-out infinite;
}

.hero-qr-frame {
  position: relative;
  margin: 20px auto 14px;
  width: 184px;
  height: 184px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.hero-qr-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
}

.hero-qr-frame .hero-scan-line {
  left: 8px;
  right: 8px;
  top: 0;
}

.hero-visual-glow { display: none; }

.hero-card-accent {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-secondary));
  margin-bottom: 16px;
}

.hero-card-title {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  margin: 0;
}

.hero-card-caption {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.hero-scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  z-index: 2;
  pointer-events: none;
}

.hero-scan-brand {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--brand-primary-rgb), 0.7),
    rgba(var(--brand-secondary-rgb), 0.7),
    rgba(var(--brand-accent-rgb), 0.7),
    transparent
  );
  animation: scanLineVertical 5.5s linear infinite;
}

@keyframes scanLineVertical {
  0% { top: 15%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 85%; opacity: 0; }
}

@keyframes heroKenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* —— eq-strip —— */
.eq-strip {
  border-block: 1px solid var(--border-subtle);
  background: var(--surface-card);
}

.eq-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .eq-strip-inner { grid-template-columns: repeat(4, 1fr); }
}

.eq-strip-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 120px;
  text-align: center;
}

@media (min-width: 768px) {
  .eq-strip-cell { border-bottom: none; }
  .eq-strip-cell:last-child { border-right: none; }
}

.eq-strip-cell p {
  margin: 0;
  width: 100%;
}

.eq-strip-kicker {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.eq-strip-value {
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.eq-strip-value-sm { font-size: clamp(18px, 2.5vw, 24px); }

.eq-strip-sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

.eq-pillar-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.eq-pillar-cell {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 168px;
  transition: border-color 0.2s, transform 0.2s;
}

.eq-pillar-cell:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--pillar-accent, var(--brand-primary)) 40%, var(--border-subtle));
}

.eq-pillar-cell h3 {
  margin: 0;
  font-size: 1.125rem;
}

.eq-pillar-cell p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.section { padding: 56px 0; }
.section-alt { background: var(--bg-section-alt); }
.section-head { text-align: center; margin-bottom: 32px; }

.section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}

.section-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-light);
}

.section-cta { margin-top: 48px; text-align: center; }

.cr-product-band-kicker {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-light);
}

.cr-product-band-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.cr-product-band-lead {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  max-width: 480px;
}

/* —— Footer premium —— */
.site-footer-premium {
  margin-top: 64px;
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

.footer-about {
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0;
  max-width: 320px;
}

.footer-product-note {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--brand-light);
  max-width: 360px;
  line-height: 1.5;
}

.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-light);
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: var(--muted); font-size: 14px; }
.footer-col a:hover { color: #fff; }

.footer-legal-note {
  margin-top: 16px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  padding: 20px 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.08);
  color: var(--muted);
  font-size: 13px;
}

.footer-tagline {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--brand-light);
}

.crunsoft-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.25);
  font-size: 12px;
  color: var(--muted);
}

.crunsoft-badge img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.crunsoft-badge strong { color: var(--brand-light-strong); }
.crunsoft-badge-compact { font-weight: 600; color: var(--brand-light); }

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
}

.footer-brand-title {
  margin: 12px 0 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer { display: none; }

.cr-btn-primary {
  background: var(--brand-primary);
  color: #fff;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  border: 2px solid color-mix(in srgb, var(--brand-primary) 70%, #fff 30%);
  border-radius: 12px;
}

.cr-btn-primary:hover {
  background: color-mix(in srgb, var(--brand-primary) 88%, #fff 12%);
  color: #fff;
}

.cr-btn-ghost {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.marketing-shell > *:not(.site-header-sticky) { position: relative; z-index: 1; }

/* —— QR choice page (premium scan experience) —— */
.qr-choice-page {
  margin: 0;
  min-height: 100dvh;
  min-height: 100svh;
  height: auto;
  overflow-x: clip;
  overflow-y: visible;
  overscroll-behavior-y: auto;
  background: #04060c;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.qcp-scene {
  position: relative;
  min-height: 100dvh;
  min-height: 100svh;
  height: auto;
  max-height: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding:
    max(10px, env(safe-area-inset-top))
    max(10px, env(safe-area-inset-right))
    max(16px, env(safe-area-inset-bottom))
    max(10px, env(safe-area-inset-left));
  overflow: visible;
}

.qcp-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: #04060c;
}

.qcp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.38;
  animation: qcp-float 14s ease-in-out infinite;
  will-change: transform;
}

.qcp-orb--violet {
  width: min(72vw, 420px);
  height: min(72vw, 420px);
  top: -12%;
  left: -18%;
  background: rgba(109, 40, 217, 0.45);
}

.qcp-orb--teal {
  width: min(60vw, 360px);
  height: min(60vw, 360px);
  bottom: -10%;
  right: -14%;
  background: rgba(13, 148, 136, 0.35);
  animation-delay: -4s;
}

.qcp-orb--gold {
  width: min(40vw, 240px);
  height: min(40vw, 240px);
  top: 38%;
  right: 10%;
  background: rgba(251, 191, 36, 0.18);
  animation-delay: -8s;
}

.qcp-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(109, 40, 217, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 40, 217, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 78%);
  opacity: 0.35;
}

.qcp-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 35%, transparent 0%, rgba(4, 6, 12, 0.55) 68%, rgba(4, 6, 12, 0.92) 100%);
}

.qcp-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  min-height: 0;
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: clamp(8px, 1.2dvh, 12px);
}

.qcp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

.qcp-lang-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  align-self: center;
}

.qcp-lang-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.72);
}

.qcp-lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 3px;
  flex: 0 0 auto;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #0b1018;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.qcp-lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  padding: 5px 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.qcp-lang-btn:hover,
.qcp-lang-btn:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.qcp-lang-btn.is-active {
  color: #fff;
  background: rgba(var(--brand-primary-rgb), 0.55);
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.28);
}

[dir="rtl"] .qcp-option-copy {
  text-align: right;
}

[dir="rtl"] .qcp-option-arrow svg {
  transform: scaleX(-1);
}

[dir="rtl"] .qcp-option:hover .qcp-option-arrow,
[dir="rtl"] .qcp-option:focus-visible .qcp-option-arrow {
  transform: translateX(-2px);
}

[dir="rtl"] .qcp-option:hover .qcp-option-arrow svg,
[dir="rtl"] .qcp-option:focus-visible .qcp-option-arrow svg {
  transform: scaleX(-1);
}

.qcp-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 0 1 auto;
  min-width: 0;
  flex-shrink: 1;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #0b1018;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-light);
}

.qcp-brand img {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  object-fit: contain;
}

.qcp-card-wrap {
  position: relative;
  isolation: isolate;
  flex: 0 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.qcp-card-aura {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  border: 1px solid rgba(196, 181, 253, 0.22);
  background: transparent;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.qcp-card {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 16px 16px 14px;
  border-radius: 24px;
  border: 1px solid rgba(196, 181, 253, 0.28);
  background: linear-gradient(168deg, #141c2e 0%, #080d16 100%);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 12px 40px rgba(0, 0, 0, 0.45);
  overflow: visible;
}

.qcp-card-noise {
  display: none;
}

.qcp-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 30%,
    transparent 100%
  );
  pointer-events: none;
}

.qcp-hero {
  position: relative;
  text-align: center;
  padding: 0 4px 4px;
}

.qcp-hero-mark {
  position: relative;
  width: clamp(46px, 11vw, 56px);
  height: clamp(46px, 11vw, 56px);
  margin: 0 auto 8px;
}

.qcp-hero-mark--logo {
  width: clamp(80px, 22vw, 96px);
  height: clamp(80px, 22vw, 96px);
  margin: 0 auto 12px;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  background: #0a1018;
}

.qcp-hero-logo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.qcp-hero-mark-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 181, 253, 0.45);
  box-shadow:
    0 0 0 4px rgba(109, 40, 217, 0.1),
    0 0 12px rgba(109, 40, 217, 0.18);
  animation: qcp-pulse 3s ease-in-out infinite;
}

.qcp-hero-mark--logo .qcp-hero-mark-ring {
  z-index: 1;
  pointer-events: none;
  border: 2px solid rgba(196, 181, 253, 0.55);
  box-shadow:
    0 0 0 3px rgba(109, 40, 217, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  animation: none;
}

.qcp-hero-mark-core {
  position: absolute;
  inset: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #5b21b6, #0f766e);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: clamp(1.1rem, 4.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #fff;
}

.qcp-eyebrow {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-light);
}

.qcp-title {
  margin: 4px 0 0;
  font-size: clamp(1.15rem, 4.8vw, 1.55rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  text-wrap: balance;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #f8fafc;
}

.qcp-lead {
  margin: 6px auto 0;
  max-width: 32ch;
  font-size: clamp(11px, 2.8vw, 13px);
  line-height: 1.35;
  color: #cbd5e1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.qcp-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(6px, 1.2dvh, 10px) 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.qcp-divider::before,
.qcp-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.22), transparent);
}

.qcp-divider span {
  padding: 0 12px;
  white-space: nowrap;
}

.qcp-options {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1dvh, 8px);
  padding-bottom: 4px;
}

.qcp-options-section {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 1dvh, 8px);
  margin-top: clamp(4px, 0.8dvh, 8px);
  padding-top: clamp(8px, 1.2dvh, 12px);
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.qcp-options-section-label {
  margin: 0 0 2px;
  padding: 0 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.78);
}

.qcp-option {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: clamp(54px, 12dvh, 68px);
  padding: 10px 10px 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: #070b12;
  color: var(--text);
  text-decoration: none;
  overflow: hidden;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
  -webkit-tap-highlight-color: transparent;
}

.qcp-option-accent {
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  border-radius: 999px;
  z-index: 1;
}

.qcp-option--review .qcp-option-accent {
  background: linear-gradient(180deg, #fde68a, #f59e0b);
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.35);
}

.qcp-option--menu3d .qcp-option-accent,
.qcp-option--menu .qcp-option-accent {
  background: linear-gradient(180deg, #5eead4, #6d28d9);
  box-shadow: 0 0 8px rgba(45, 212, 191, 0.28);
}

.qcp-option--menuPdf .qcp-option-accent { background: linear-gradient(180deg, #fca5a5, #dc2626); box-shadow: 0 0 8px rgba(248, 113, 113, 0.28); }
.qcp-option--whatsapp .qcp-option-accent { background: linear-gradient(180deg, #86efac, #16a34a); box-shadow: 0 0 8px rgba(34, 197, 94, 0.28); }
.qcp-option--maps .qcp-option-accent { background: linear-gradient(180deg, #93c5fd, #2563eb); box-shadow: 0 0 8px rgba(59, 130, 246, 0.28); }
.qcp-option--phone .qcp-option-accent { background: linear-gradient(180deg, #6ee7b7, #059669); box-shadow: 0 0 8px rgba(16, 185, 129, 0.28); }
.qcp-option--hours .qcp-option-accent { background: linear-gradient(180deg, #7dd3fc, #0284c7); box-shadow: 0 0 8px rgba(14, 165, 233, 0.28); }
.qcp-option--instagram .qcp-option-accent { background: linear-gradient(180deg, #f9a8d4, #db2777); box-shadow: 0 0 8px rgba(236, 72, 153, 0.28); }
.qcp-option--orderOnline .qcp-option-accent { background: linear-gradient(180deg, #fdba74, #ea580c); box-shadow: 0 0 8px rgba(249, 115, 22, 0.28); }
.qcp-option--reservation .qcp-option-accent { background: linear-gradient(180deg, #a5b4fc, #4f46e5); box-shadow: 0 0 8px rgba(99, 102, 241, 0.28); }
.qcp-option--wifi .qcp-option-accent { background: linear-gradient(180deg, #67e8f9, #0891b2); box-shadow: 0 0 8px rgba(6, 182, 212, 0.28); }
.qcp-option--campaign .qcp-option-accent { background: linear-gradient(180deg, #fcd34d, #d97706); box-shadow: 0 0 8px rgba(245, 158, 11, 0.28); }
.qcp-option--about .qcp-option-accent { background: linear-gradient(180deg, #cbd5e1, #475569); box-shadow: 0 0 8px rgba(100, 116, 139, 0.28); }
.qcp-option--gallery .qcp-option-accent { background: linear-gradient(180deg, #e879f9, #a21caf); box-shadow: 0 0 8px rgba(192, 38, 211, 0.28); }
.qcp-option--events .qcp-option-accent { background: linear-gradient(180deg, #fda4af, #e11d48); box-shadow: 0 0 8px rgba(244, 63, 94, 0.28); }
.qcp-option--parking .qcp-option-accent { background: linear-gradient(180deg, #bef264, #65a30d); box-shadow: 0 0 8px rgba(132, 204, 22, 0.28); }
.qcp-option--accessibility .qcp-option-accent { background: linear-gradient(180deg, #93c5fd, #1d4ed8); box-shadow: 0 0 8px rgba(37, 99, 235, 0.28); }
.qcp-option--tripadvisor .qcp-option-accent { background: linear-gradient(180deg, #6ee7b7, #00af87); box-shadow: 0 0 8px rgba(0, 175, 135, 0.28); }

.qcp-option-glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.qcp-option--review .qcp-option-glow {
  background: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.18), transparent 58%);
}

.qcp-option--menu3d .qcp-option-glow,
.qcp-option--menu .qcp-option-glow {
  background: radial-gradient(circle at 20% 50%, rgba(13, 148, 136, 0.2), transparent 58%);
}

.qcp-option--menuPdf .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(248, 113, 113, 0.18), transparent 58%); }
.qcp-option--whatsapp .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.18), transparent 58%); }
.qcp-option--maps .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.18), transparent 58%); }
.qcp-option--phone .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.18), transparent 58%); }
.qcp-option--hours .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.18), transparent 58%); }
.qcp-option--instagram .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(236, 72, 153, 0.18), transparent 58%); }
.qcp-option--orderOnline .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(249, 115, 22, 0.18), transparent 58%); }
.qcp-option--reservation .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.18), transparent 58%); }
.qcp-option--wifi .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.18), transparent 58%); }
.qcp-option--campaign .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(245, 158, 11, 0.18), transparent 58%); }
.qcp-option--about .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(100, 116, 139, 0.18), transparent 58%); }
.qcp-option--gallery .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(192, 38, 211, 0.18), transparent 58%); }
.qcp-option--events .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(244, 63, 94, 0.18), transparent 58%); }
.qcp-option--parking .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(132, 204, 22, 0.18), transparent 58%); }
.qcp-option--accessibility .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.18), transparent 58%); }
.qcp-option--tripadvisor .qcp-option-glow { background: radial-gradient(circle at 20% 50%, rgba(0, 175, 135, 0.18), transparent 58%); }

.qcp-option-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 10vw, 50px);
  height: clamp(44px, 10vw, 50px);
  border-radius: 14px;
  flex-shrink: 0;
}

.qcp-option--review .qcp-option-icon {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.22), rgba(234, 88, 12, 0.12));
  border: 1px solid rgba(251, 191, 36, 0.28);
  color: #fbbf24;
  box-shadow: 0 10px 24px rgba(251, 191, 36, 0.12);
}

.qcp-option--menu3d .qcp-option-icon,
.qcp-option--menu .qcp-option-icon {
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.22), rgba(109, 40, 217, 0.14));
  border: 1px solid rgba(45, 212, 191, 0.24);
  box-shadow: 0 10px 24px rgba(13, 148, 136, 0.12);
}

.qcp-option--menuPdf .qcp-option-icon { background: linear-gradient(145deg, rgba(248, 113, 113, 0.22), rgba(220, 38, 38, 0.12)); border: 1px solid rgba(248, 113, 113, 0.28); color: #fca5a5; box-shadow: 0 10px 24px rgba(248, 113, 113, 0.12); }
.qcp-option--whatsapp .qcp-option-icon { background: linear-gradient(145deg, rgba(74, 222, 128, 0.22), rgba(22, 163, 74, 0.12)); border: 1px solid rgba(74, 222, 128, 0.28); color: #4ade80; box-shadow: 0 10px 24px rgba(34, 197, 94, 0.12); }
.qcp-option--maps .qcp-option-icon { background: linear-gradient(145deg, rgba(96, 165, 250, 0.22), rgba(37, 99, 235, 0.12)); border: 1px solid rgba(96, 165, 250, 0.28); color: #60a5fa; box-shadow: 0 10px 24px rgba(59, 130, 246, 0.12); }
.qcp-option--phone .qcp-option-icon { background: linear-gradient(145deg, rgba(52, 211, 153, 0.22), rgba(5, 150, 105, 0.12)); border: 1px solid rgba(52, 211, 153, 0.28); color: #34d399; box-shadow: 0 10px 24px rgba(16, 185, 129, 0.12); }
.qcp-option--hours .qcp-option-icon { background: linear-gradient(145deg, rgba(56, 189, 248, 0.22), rgba(2, 132, 199, 0.12)); border: 1px solid rgba(56, 189, 248, 0.28); color: #38bdf8; box-shadow: 0 10px 24px rgba(14, 165, 233, 0.12); }
.qcp-option--instagram .qcp-option-icon { background: linear-gradient(145deg, rgba(244, 114, 182, 0.22), rgba(219, 39, 119, 0.12)); border: 1px solid rgba(244, 114, 182, 0.28); color: #f472b6; box-shadow: 0 10px 24px rgba(236, 72, 153, 0.12); }
.qcp-option--orderOnline .qcp-option-icon { background: linear-gradient(145deg, rgba(251, 146, 60, 0.22), rgba(234, 88, 12, 0.12)); border: 1px solid rgba(251, 146, 60, 0.28); color: #fb923c; box-shadow: 0 10px 24px rgba(249, 115, 22, 0.12); }
.qcp-option--reservation .qcp-option-icon { background: linear-gradient(145deg, rgba(129, 140, 248, 0.22), rgba(79, 70, 229, 0.12)); border: 1px solid rgba(129, 140, 248, 0.28); color: #818cf8; box-shadow: 0 10px 24px rgba(99, 102, 241, 0.12); }
.qcp-option--wifi .qcp-option-icon { background: linear-gradient(145deg, rgba(34, 211, 238, 0.22), rgba(8, 145, 178, 0.12)); border: 1px solid rgba(34, 211, 238, 0.28); color: #22d3ee; box-shadow: 0 10px 24px rgba(6, 182, 212, 0.12); }
.qcp-option--campaign .qcp-option-icon { background: linear-gradient(145deg, rgba(252, 211, 77, 0.22), rgba(217, 119, 6, 0.12)); border: 1px solid rgba(252, 211, 77, 0.28); color: #fcd34d; box-shadow: 0 10px 24px rgba(245, 158, 11, 0.12); }
.qcp-option--about .qcp-option-icon { background: linear-gradient(145deg, rgba(148, 163, 184, 0.22), rgba(71, 85, 105, 0.12)); border: 1px solid rgba(148, 163, 184, 0.28); color: #cbd5e1; box-shadow: 0 10px 24px rgba(100, 116, 139, 0.12); }
.qcp-option--gallery .qcp-option-icon { background: linear-gradient(145deg, rgba(232, 121, 249, 0.22), rgba(162, 28, 175, 0.12)); border: 1px solid rgba(232, 121, 249, 0.28); color: #e879f9; box-shadow: 0 10px 24px rgba(192, 38, 211, 0.12); }
.qcp-option--events .qcp-option-icon { background: linear-gradient(145deg, rgba(253, 164, 175, 0.22), rgba(225, 29, 72, 0.12)); border: 1px solid rgba(253, 164, 175, 0.28); color: #fda4af; box-shadow: 0 10px 24px rgba(244, 63, 94, 0.12); }
.qcp-option--parking .qcp-option-icon { background: linear-gradient(145deg, rgba(190, 242, 100, 0.22), rgba(101, 163, 13, 0.12)); border: 1px solid rgba(190, 242, 100, 0.28); color: #bef264; box-shadow: 0 10px 24px rgba(132, 204, 22, 0.12); }
.qcp-option--accessibility .qcp-option-icon { background: linear-gradient(145deg, rgba(96, 165, 250, 0.22), rgba(29, 78, 216, 0.12)); border: 1px solid rgba(96, 165, 250, 0.28); color: #60a5fa; box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12); }
.qcp-option--tripadvisor .qcp-option-icon { background: linear-gradient(145deg, rgba(52, 211, 153, 0.22), rgba(0, 175, 135, 0.12)); border: 1px solid rgba(52, 211, 153, 0.28); color: #34d399; box-shadow: 0 10px 24px rgba(0, 175, 135, 0.12); }

.qcp-svc-svg {
  width: clamp(22px, 5vw, 26px);
  height: clamp(22px, 5vw, 26px);
  display: block;
}

.qcp-stars {
  width: clamp(68px, 18vw, 84px);
  height: auto;
  display: block;
  shape-rendering: geometricPrecision;
}

.qcp-cube {
  position: relative;
  width: 28px;
  height: 28px;
  transform-style: preserve-3d;
  transform: rotateX(-18deg) rotateY(32deg);
  animation: qcp-cube-idle 6s ease-in-out infinite;
}

.qcp-cube-face {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.qcp-cube-face--front {
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.85), rgba(13, 148, 136, 0.75));
  transform: translateZ(14px);
}

.qcp-cube-face--top {
  background: linear-gradient(145deg, rgba(196, 181, 253, 0.75), rgba(109, 40, 217, 0.65));
  transform: rotateX(90deg) translateZ(14px);
}

.qcp-cube-face--side {
  background: linear-gradient(145deg, rgba(79, 70, 229, 0.75), rgba(67, 56, 202, 0.65));
  transform: rotateY(90deg) translateZ(14px);
}

.qcp-option-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.qcp-option-copy strong {
  font-size: clamp(14px, 3.6vw, 16px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}

.qcp-option-copy span {
  font-size: clamp(11px, 2.8vw, 12px);
  line-height: 1.35;
  color: var(--muted);
}

.qcp-option-arrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--brand-light);
  transition: transform 0.22s ease, background 0.22s ease;
}

.qcp-option-arrow svg {
  width: 18px;
  height: 18px;
  shape-rendering: geometricPrecision;
}

.qcp-option:hover,
.qcp-option:focus-visible {
  border-color: rgba(196, 181, 253, 0.38);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.32);
  background: #0a1018;
}

.qcp-option:hover .qcp-option-glow,
.qcp-option:focus-visible .qcp-option-glow {
  opacity: 1;
}

.qcp-option:hover .qcp-option-arrow,
.qcp-option:focus-visible .qcp-option-arrow {
  transform: translateX(2px);
  background: rgba(109, 40, 217, 0.18);
}

.qcp-option:active {
  background: #060910;
}

.qcp-option--review:hover,
.qcp-option--review:focus-visible {
  border-color: rgba(251, 191, 36, 0.35);
}

.qcp-option--menu3d:hover,
.qcp-option--menu3d:focus-visible,
.qcp-option--menu:hover,
.qcp-option--menu:focus-visible {
  border-color: rgba(45, 212, 191, 0.35);
}

.qcp-option--menuPdf:hover, .qcp-option--menuPdf:focus-visible { border-color: rgba(248, 113, 113, 0.42); }
.qcp-option--whatsapp:hover, .qcp-option--whatsapp:focus-visible { border-color: rgba(74, 222, 128, 0.42); }
.qcp-option--maps:hover, .qcp-option--maps:focus-visible { border-color: rgba(96, 165, 250, 0.42); }
.qcp-option--phone:hover, .qcp-option--phone:focus-visible { border-color: rgba(52, 211, 153, 0.42); }
.qcp-option--hours:hover, .qcp-option--hours:focus-visible { border-color: rgba(56, 189, 248, 0.42); }
.qcp-option--instagram:hover, .qcp-option--instagram:focus-visible { border-color: rgba(244, 114, 182, 0.42); }
.qcp-option--orderOnline:hover, .qcp-option--orderOnline:focus-visible { border-color: rgba(251, 146, 60, 0.42); }
.qcp-option--reservation:hover, .qcp-option--reservation:focus-visible { border-color: rgba(129, 140, 248, 0.42); }
.qcp-option--wifi:hover, .qcp-option--wifi:focus-visible { border-color: rgba(34, 211, 238, 0.42); }
.qcp-option--campaign:hover, .qcp-option--campaign:focus-visible { border-color: rgba(252, 211, 77, 0.42); }
.qcp-option--about:hover, .qcp-option--about:focus-visible { border-color: rgba(148, 163, 184, 0.42); }
.qcp-option--gallery:hover, .qcp-option--gallery:focus-visible { border-color: rgba(232, 121, 249, 0.42); }
.qcp-option--events:hover, .qcp-option--events:focus-visible { border-color: rgba(253, 164, 175, 0.42); }
.qcp-option--parking:hover, .qcp-option--parking:focus-visible { border-color: rgba(190, 242, 100, 0.42); }
.qcp-option--accessibility:hover, .qcp-option--accessibility:focus-visible { border-color: rgba(96, 165, 250, 0.42); }
.qcp-option--tripadvisor:hover, .qcp-option--tripadvisor:focus-visible { border-color: rgba(52, 211, 153, 0.42); }

.qcp-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 0;
}

.qcp-foot-label {
  display: none;
}

.qcp-foot-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: none;
  padding: 7px 12px;
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #0b1018;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.qcp-foot-logo:hover,
.qcp-foot-logo:focus-visible {
  border-color: rgba(var(--brand-primary-rgb), 0.42);
  background: #0f1520;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.qcp-foot-logo img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  object-fit: contain;
  flex-shrink: 0;
}

.qcp-foot-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  text-align: left;
}

.qcp-foot-name {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-light-strong);
  line-height: 1;
}

.qcp-foot-tagline {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.72);
  line-height: 1;
}

[dir="rtl"] .qcp-foot-brand {
  align-items: flex-end;
  text-align: right;
}

.qcp-enter {
  animation: qcp-rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.qcp-enter--1 { animation-delay: 0.08s; }
.qcp-enter--2 { animation-delay: 0.16s; }
.qcp-enter--3 { animation-delay: 0.24s; }

@keyframes qcp-float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -16px, 0) scale(1.04); }
}

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

@keyframes qcp-cube-idle {
  0%, 100% { transform: rotateX(-18deg) rotateY(32deg); }
  50% { transform: rotateX(-22deg) rotateY(38deg); }
}

@keyframes qcp-aura-spin {
  to { transform: rotate(360deg); }
}

@keyframes qcp-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.88; }
}

@media (max-height: 720px) {
  .qcp-hero-mark {
    width: clamp(40px, 10vw, 50px);
    height: clamp(40px, 10vw, 50px);
    margin-bottom: 4px;
  }

  .qcp-hero-mark--logo {
    width: clamp(72px, 18vw, 84px);
    height: clamp(72px, 18vw, 84px);
    margin-bottom: 8px;
  }

  .qcp-eyebrow {
    font-size: 10px;
  }

  .qcp-card {
    padding: 12px 14px 10px;
  }

  .qcp-divider {
    margin: 6px 0;
  }

  .qcp-option {
    min-height: 52px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .qcp-foot-logo {
    padding: 6px 10px;
  }
}

@media (max-height: 640px) {
  .qcp-hero-mark {
    width: 40px;
    height: 40px;
    margin-bottom: 2px;
  }

  .qcp-hero-mark--logo {
    width: 68px;
    height: 68px;
    margin-bottom: 6px;
  }

  .qcp-hero-mark-core {
    font-size: 1rem;
  }

  .qcp-lead {
    -webkit-line-clamp: 1;
  }

  .qcp-foot-tagline {
    display: none;
  }

  .qcp-option-copy span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (min-width: 480px) {
  .qcp-card {
    padding: 18px 18px 14px;
  }
}

@media (min-width: 900px) {
  .qcp-scene {
    padding:
      max(24px, env(safe-area-inset-top))
      max(24px, env(safe-area-inset-right))
      max(32px, env(safe-area-inset-bottom))
      max(24px, env(safe-area-inset-left));
  }

  .qcp-shell {
    width: min(100%, 560px);
    gap: 16px;
    min-height: auto;
    margin: 0 auto;
  }

  .qcp-top {
    padding: 0 4px;
  }

  .qcp-brand {
    padding: 10px 16px;
    font-size: 11px;
  }

  .qcp-brand img {
    width: 26px;
    height: 26px;
  }

  .qcp-lang {
    flex: 0 0 auto;
    width: fit-content;
    padding: 4px;
    gap: 4px;
  }

  .qcp-lang-btn {
    min-width: 38px;
    padding: 7px 10px;
    font-size: 11px;
  }

  .qcp-card-wrap {
    flex: 0 1 auto;
    width: 100%;
  }

  .qcp-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 36px 28px;
    border-radius: 28px;
    min-height: auto;
  }

  .qcp-card-aura {
    border-radius: 28px;
  }

  .qcp-hero {
    text-align: center;
    padding: 0 8px 8px;
  }

  .qcp-hero-mark {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
  }

  .qcp-hero-mark--logo {
    width: 108px;
    height: 108px;
    margin: 0 auto 18px;
  }

  .qcp-hero-mark-core {
    font-size: 1.55rem;
  }

  .qcp-eyebrow {
    font-size: 12px;
  }

  .qcp-title {
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
    -webkit-line-clamp: 3;
  }

  .qcp-lead {
    margin: 10px auto 0;
    max-width: 36ch;
    font-size: 14px;
    line-height: 1.45;
    -webkit-line-clamp: 3;
  }

  .qcp-divider {
    display: flex;
    margin: 14px 0 16px;
  }

  .qcp-options {
    gap: 12px;
    width: 100%;
  }

  .qcp-option {
    min-height: 76px;
    padding: 16px 18px;
    border-radius: 18px;
    gap: 14px;
  }

  .qcp-option-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

  .qcp-stars {
    width: 80px;
  }

  .qcp-cube {
    width: 30px;
    height: 30px;
  }

  .qcp-svc-svg {
    width: 24px;
    height: 24px;
  }

  .qcp-option-copy strong {
    font-size: 16px;
  }

  .qcp-option-copy span {
    font-size: 13px;
  }

  .qcp-option-arrow {
    width: 36px;
    height: 36px;
  }

  .qcp-foot-logo {
    width: auto;
    min-width: 280px;
    margin: 0 auto;
    padding: 12px 20px;
  }

  .qcp-foot-logo img {
    width: 32px;
    height: 32px;
  }

  .qcp-foot-name {
    font-size: 12px;
  }

  .qcp-foot-tagline {
    font-size: 9px;
  }

  .qcp-orb--violet {
    width: min(42vw, 560px);
    height: min(42vw, 560px);
  }

  .qcp-orb--teal {
    width: min(36vw, 480px);
    height: min(36vw, 480px);
  }
}

@media (min-width: 1200px) {
  .qcp-shell {
    width: min(100%, 580px);
  }

  .qcp-card {
    padding: 36px 40px 32px;
  }

  .qcp-options {
    gap: 14px;
  }

  .qcp-option {
    min-height: 82px;
    padding: 18px 20px;
  }

  .qcp-hero-mark--logo {
    width: 116px;
    height: 116px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .qcp-orb,
  .qcp-cube,
  .qcp-enter,
  .qcp-card-aura,
  .qcp-hero-mark-ring {
    animation: none !important;
  }

  .qcp-option {
    transition: none;
  }
}

button.qcp-option {
  width: 100%;
  cursor: pointer;
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

.qcp-more-wrap {
  display: grid;
  gap: 10px;
}

.qcp-more-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.55);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.qcp-more-panel {
  display: grid;
  gap: 12px;
}

.qcp-more-panel[hidden] {
  display: none !important;
}

.qcp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.qcp-modal[hidden] {
  display: none !important;
}

.qcp-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(4px);
}

.qcp-modal-panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(80dvh, 640px);
  overflow: auto;
  padding: 22px 20px 20px;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: #0b1018;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.qcp-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.qcp-modal-title {
  margin: 0 28px 14px 0;
  font-size: 1.15rem;
  color: #fff;
}

.qcp-modal-text {
  color: #cbd5e1;
  line-height: 1.55;
  font-size: 14px;
}

.qcp-modal-kv {
  margin: 0;
  display: grid;
  gap: 12px;
}

.qcp-modal-kv dt {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.qcp-modal-kv dd {
  margin: 4px 0 0;
  color: #f8fafc;
  font-size: 15px;
}

.qcp-modal-kv code {
  font-family: ui-monospace, monospace;
  font-size: 14px;
}

.qcp-modal-copy {
  margin-top: 14px;
  padding: 10px 14px;
  border: 0;
  border-radius: 10px;
  background: rgba(var(--brand-primary-rgb), 0.22);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.qcp-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.qcp-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

body.qcp-modal-open {
  overflow: hidden;
}
