.qo-body{
  background: var(--qo-porcelain);
  color: var(--qo-ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.qo-skip{
  position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.qo-skip:focus{
  left:14px; top:14px; width:auto; height:auto; padding:10px 12px;
  background:#fff; border:1px solid var(--qo-border); border-radius: 12px;
  box-shadow: var(--qo-shadow-soft); z-index: 9999;
}

/* Background */
.qo-back{
  position: fixed; inset: 0; pointer-events:none; z-index: -1;
  background: var(--qo-grad);
}
.qo-grid{
  position:absolute; inset:0; opacity:.18;
  background-image:
    linear-gradient(to right, rgba(16,21,40,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16,21,40,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 44% 18%, black 0%, black 56%, transparent 86%);
}
.qo-blob{
  position:absolute; width: 560px; height: 560px; border-radius: 999px;
  filter: blur(56px); opacity: .32;
}
.qo-blob--rose{ left:-260px; top:-280px; background: rgba(255,111,145,.30); }
.qo-blob--mint{ right:-280px; top:-260px; background: rgba(47,191,155,.24); }
.qo-blob--ink{ right: 20%; bottom:-360px; background: rgba(42,53,87,.20); }

.qo-strokes{
  position:absolute; inset:0; opacity:.20;
  background-image:
    radial-gradient(circle at 12% 78%, rgba(16,21,40,.12) 1px, transparent 1px),
    radial-gradient(circle at 86% 36%, rgba(16,21,40,.10) 1px, transparent 1px);
  background-size: 34px 34px, 40px 40px;
}

/* Header */
.qo-header{ position: sticky; top: 0; z-index: 50; }
.qo-nav{
  background: rgba(247,244,239,.74);
  border-bottom: 1px solid var(--qo-border);
  backdrop-filter: blur(10px);
}
.qo-nav .nav-link{ color: rgba(16,21,40,.78); }
.qo-nav .nav-link:hover{ color: rgba(16,21,40,.95); }

.qo-logo{
  width: 38px; height: 38px;
  display:grid; place-items:center;
  background: rgba(16,21,40,.06);
  border: 1px solid var(--qo-border);
  border-radius: 16px;
  color: var(--qo-ink);
}
.qo-logo--foot{ background: rgba(16,21,40,.05); }

.qo-badge{
  background: rgba(255,111,145,.12);
  border: 1px solid rgba(255,111,145,.18);
  color: rgba(16,21,40,.86);
  border-radius: 999px;
  padding: .35rem .6rem;
}

.btn:focus{ box-shadow: var(--qo-focus) !important; }
.btn-qo{
  --bs-btn-color: #101528;
  --bs-btn-bg: linear-gradient(135deg, rgba(255,111,145,1), rgba(242,193,78,1));
  --bs-btn-border-color: transparent;
  --bs-btn-hover-color: #101528;
  --bs-btn-hover-bg: linear-gradient(135deg, rgba(47,191,155,1), rgba(255,111,145,1));
  --bs-btn-hover-border-color: transparent;
  --bs-btn-focus-shadow-rgb: 255,111,145;
  border-radius: 14px;
  font-weight: 800;
}
.btn-lg {
  padding: 0.75rem 1.2rem;
  background-color: rgba(238, 0, 255, 0.117);
}

/* Sections */
.qo-section{ padding: 72px 0; }
.qo-section--alt{
  background: rgba(255,255,255,.80);
  border-top: 1px solid var(--qo-border);
  border-bottom: 1px solid var(--qo-border);
}
.qo-headline{ max-width: 780px; }

/* Hero */
.qo-hero{ position: relative; padding: 78px 0 0; }
.qo-kicker{
  display:inline-flex; gap:10px; align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--qo-border);
  color: rgba(16,21,40,.76);
  font-size: .92rem;
  margin-bottom: 12px;
}
.qo-dot{
  width: 10px; height: 10px; border-radius: 999px;
  background: linear-gradient(135deg, var(--qo-sakura), var(--qo-matcha));
  box-shadow: 0 0 0 4px rgba(255,111,145,.12);
}
.qo-chips{ display:flex; flex-wrap:wrap; gap: 8px; }
.qo-chip{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--qo-border);
  background: rgba(16,21,40,.05);
  font-size: .82rem;
  font-weight: 700;
}
.qo-chip--alt{
  background: rgba(47,191,155,.12);
  border-color: rgba(47,191,155,.18);
}

.qo-cardstack{
  border-radius: var(--qo-radius-lg);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.88);
  box-shadow: var(--qo-shadow);
  overflow: hidden;
  position: relative;
}
.qo-cardstack__head{
  padding: 14px 16px;
  border-bottom: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
  display:flex; flex-wrap:wrap; gap: 8px;
}
.qo-tag{
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--qo-border);
  background: rgba(16,21,40,.05);
  font-size: .82rem;
  font-weight: 700;
}
.qo-tag--alt{
  background: rgba(242,193,78,.14);
  border-color: rgba(242,193,78,.18);
}
.qo-cardstack__body{
  padding: 18px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
  align-items: center;
}
.qo-ill{
  border-radius: 28px 16px 28px 16px;
  border: 1px solid var(--qo-border);
  background: #fff;
  padding: 10px;
}
.qo-side{
  border-radius: 16px 30px 16px 30px;
  border: 1px solid var(--qo-border);
  background: rgba(247,244,239,.76);
  padding: 14px;
}
.qo-side__t{ font-weight: 900; margin-bottom: 8px; }
.qo-cardstack__foot{
  display:flex; flex-wrap: wrap; gap: 12px;
  align-items:center;
  padding: 14px 18px;
  border-top: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
}
.qo-link{ color: var(--qo-ink); text-decoration:none; font-weight: 900; }
.qo-link:hover{ text-decoration: underline; }
.qo-sep{
  width: 6px; height: 6px; border-radius: 999px;
  background: rgba(16,21,40,.25);
}
.qo-notch{
  position:absolute;
  right:-46px; bottom:-58px;
  width: 240px; height: 240px;
  border-radius: 78px 22px 78px 22px;
  border: 2px dashed rgba(16,21,40,.14);
  background: radial-gradient(circle at 30% 30%, rgba(255,111,145,.18), rgba(255,111,145,0) 60%);
  transform: rotate(12deg);
}

/* Cards */
.qo-mini{
  position: relative;
  padding: 18px;
  border-radius: var(--qo-radius);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.86);
  box-shadow: var(--qo-shadow-soft);
  overflow:hidden;
}
.qo-mini::after{
  content:"";
  position:absolute;
  left:-80px; top:-84px;
  width: 260px; height: 190px;
  background: linear-gradient(135deg, rgba(255,111,145,.14), rgba(47,191,155,.10), rgba(242,193,78,.10));
  border: 1px solid rgba(16,21,40,.08);
  border-radius: 96px 26px 96px 26px;
  transform: rotate(-12deg);
}
.qo-mini__n{
  width: 46px; height: 46px;
  border-radius: 18px;
  display:grid; place-items:center;
  font-weight: 900;
  background: rgba(16,21,40,.06);
  border: 1px solid var(--qo-border);
  margin-bottom: 12px;
}

/* Panels */
.qo-panel{
  border-radius: var(--qo-radius-lg);
  border: 1px solid var(--qo-border);
  background: linear-gradient(135deg, rgba(255,255,255,.90), rgba(238,243,255,.62));
  box-shadow: var(--qo-shadow-soft);
  padding: 18px;
}
.qo-stamp{
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px dashed rgba(16,21,40,.22);
  background: rgba(255,255,255,.74);
}
.qo-stamp__seal{
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--qo-sakura);
  box-shadow: 0 0 0 4px rgba(255,111,145,.14);
}

/* Steps */
.qo-step{
  display:flex; gap: 12px;
  padding: 16px;
  border-radius: var(--qo-radius);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.86);
  box-shadow: var(--qo-shadow-soft);
}
.qo-step__icon{
  width: 42px; height: 42px;
  border-radius: 18px;
  display:grid; place-items:center;
  font-weight: 900;
  background: rgba(42,53,87,.10);
  border: 1px solid rgba(42,53,87,.16);
}

/* Blocks + note */
.qo-block{
  padding: 18px;
  border-radius: var(--qo-radius);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.86);
  box-shadow: var(--qo-shadow-soft);
}
.qo-block__cap{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--qo-border);
  background: rgba(16,21,40,.05);
  font-size: .82rem;
  margin-bottom: 10px;
}
.qo-note{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 16px; border-radius: var(--qo-radius);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
}
.qo-note__i{
  width: 28px; height: 28px; border-radius: 12px;
  display:grid; place-items:center; font-weight: 900;
  background: rgba(242,193,78,.14);
  border: 1px solid rgba(242,193,78,.18);
}

/* Plans */
.qo-plan{
  border-radius: var(--qo-radius-lg);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.88);
  box-shadow: var(--qo-shadow);
  overflow:hidden;
  position:relative;
  height: 100%;
  display:flex; flex-direction: column;
}
.qo-plan__top{
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
  display:flex; align-items:center; justify-content: space-between; gap: 10px;
}
.qo-plan__name{ font-weight: 900; }
.qo-plan__tag{
  font-size: .82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--qo-border);
  background: rgba(16,21,40,.05);
}
.qo-plan__body{ padding: 16px; flex: 1 1 auto; }
.qo-plan__bottom{ padding: 16px; border-top: 1px solid var(--qo-border); background: rgba(255,255,255,.74); }
.qo-plan--featured{
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(238,243,255,.64));
}
.qo-plan__flare{
  position:absolute;
  left:-96px; top:-96px;
  width: 246px; height: 246px;
  border-radius: 88px 26px 88px 26px;
  background: linear-gradient(135deg, rgba(255,111,145,.18), rgba(242,193,78,.14), rgba(47,191,155,.10));
  transform: rotate(-14deg);
  border: 1px solid rgba(16,21,40,.08);
}
.qo-disclaimer{
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
  color: rgba(16,21,40,.74);
}

/* Lists */
.qo-list{ margin: 0; padding-left: 18px; color: rgba(16,21,40,.72); }
.qo-list--tight li{ margin: 6px 0; }

/* Accordion */
.qo-accordion .accordion-item{
  border-radius: 16px !important;
  overflow:hidden;
  border: 1px solid var(--qo-border) !important;
  background: rgba(255,255,255,.86);
  box-shadow: var(--qo-shadow-soft);
  margin-bottom: 12px;
}
.qo-accordion .accordion-button{
  background: rgba(255,255,255,.74);
  font-weight: 900;
}
.qo-accordion .accordion-button:focus{ box-shadow: var(--qo-focus); }

/* Stories + CTA + alerts */
.qo-story{
  padding: 18px;
  border-radius: var(--qo-radius);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.86);
  box-shadow: var(--qo-shadow-soft);
}
.qo-story__top{
  display:flex; justify-content: space-between; align-items:center;
  margin-bottom: 10px;
}
.qo-story__t{ font-weight: 900; }
.qo-story__tag{
  font-size: .82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(42,53,87,.10);
  border: 1px solid rgba(42,53,87,.14);
}
.qo-cta{
  padding: 18px;
  border-radius: var(--qo-radius-lg);
  border: 1px solid var(--qo-border);
  background: linear-gradient(135deg, rgba(255,111,145,.10), rgba(242,193,78,.10), rgba(47,191,155,.10));
  box-shadow: var(--qo-shadow-soft);
}
.qo-mini-form .form-control{ border-radius: 14px; }
.qo-alert{
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(47,191,155,.22);
  background: rgba(47,191,155,.12);
  color: rgba(16,21,40,.82);
  margin-bottom: 12px;
}

/* Contact */
.qo-contact{
  border-radius: var(--qo-radius-lg);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.88);
  box-shadow: var(--qo-shadow);
  padding: 18px;
}
.qo-contact__h{ font-weight: 900; margin-bottom: 12px; }
.qo-kv{
  display:grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(16,21,40,.14);
}
.qo-kv:last-of-type{ border-bottom: none; }
.qo-k{ color: rgba(16,21,40,.60); font-size: .92rem; }
.qo-v a{ color: var(--qo-ink); }
.qo-hint{
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255,111,145,.12);
  border: 1px solid rgba(255,111,145,.18);
  color: rgba(16,21,40,.78);
}

.qo-form{
  border-radius: var(--qo-radius-lg);
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.90);
  box-shadow: var(--qo-shadow);
  overflow:hidden;
}
.qo-form__top{
  padding: 16px 18px;
  border-bottom: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
  display:flex; align-items: baseline; justify-content: space-between; gap: 14px;
}
.qo-form__bottom{
  padding: 14px 18px;
  border-top: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
  display:flex; gap: 12px; flex-wrap: wrap; align-items:center;
}

.qo-mini{
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
}

/* Footer */
.qo-footer{
  padding: 44px 0 36px;
  border-top: 1px solid var(--qo-border);
  background: rgba(255,255,255,.74);
}
.qo-foot-title{ font-weight: 900; margin-bottom: 10px; }
.qo-foot-links{
  list-style:none; padding:0; margin:0;
  display:grid; gap: 8px;
}
.qo-foot-links a{
  text-decoration:none;
  color: rgba(16,21,40,.78);
}
.qo-foot-links a:hover{ text-decoration: underline; }

.qo-social{
  text-decoration:none;
  color: rgba(16,21,40,.78);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--qo-border);
  background: rgba(255,255,255,.76);
}
.qo-social:hover{ color: rgba(16,21,40,.92); }
