/* SEONOS Connect widget. Scoped under .seonos-* so it won't fight the theme. */
:root { --seonos-brand: #1EB3FF; }

.seonos-open-btn {
  display: inline-block; cursor: pointer; border: 0; border-radius: 6px;
  background: var(--seonos-brand); color: #03040a; font-weight: 700;
  padding: 12px 22px; font-size: 15px; line-height: 1;
}
.seonos-open-btn:hover { filter: brightness(1.08); }

/* Floating bubble */
.seonos-bubble {
  position: fixed; right: 20px; bottom: 20px; z-index: 99998;
  width: 64px; height: 64px; border-radius: 50%; border: 3px solid var(--seonos-brand);
  background: #03040a center/cover no-repeat; cursor: pointer; padding: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}
.seonos-bubble-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.seonos-bubble-pulse { position: absolute; inset: -3px; border-radius: 50%; border: 2px solid var(--seonos-brand); animation: seonos-pulse 2s ease-out infinite; }
@keyframes seonos-pulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.5); opacity: 0; } }
.seonos-bubble-tip {
  position: fixed; right: 96px; bottom: 34px; z-index: 99998;
  background: #03040a; color: #e8f1f5; padding: 8px 12px; border-radius: 6px;
  font-size: 13px; box-shadow: 0 4px 16px rgba(0,0,0,.3); max-width: 220px;
}

/* Modal */
.seonos-modal { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 16px; }
.seonos-modal[hidden] { display: none; }
.seonos-modal-backdrop { position: absolute; inset: 0; background: rgba(3,4,10,.7); backdrop-filter: blur(4px); }
.seonos-modal-card {
  position: relative; width: min(94vw, 460px); max-height: 92vh; overflow: auto;
  background: #0a0e16; color: #e8f1f5; border: 1px solid rgba(30,179,255,.25);
  border-radius: 10px; padding: 28px 24px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.seonos-modal-x { position: absolute; top: 10px; right: 12px; background: none; border: 0; color: #8aa; font-size: 26px; line-height: 1; cursor: pointer; }
.seonos-noscroll { overflow: hidden; }

.seonos-inline .seonos-funnel {
  max-width: 460px; margin: 0 auto; background: #0a0e16; color: #e8f1f5;
  border: 1px solid rgba(30,179,255,.2); border-radius: 10px; padding: 28px 24px;
}

/* Funnel content */
.seonos-funnel { text-align: center; font-family: inherit; }
.seonos-step-img { max-width: 160px; height: auto; margin: 0 auto 14px; display: block; }
.seonos-h { font-size: 24px; margin: 0 0 8px; color: #fff; }
.seonos-sub { color: rgba(200,218,226,.78); font-size: 15px; margin: 0 0 18px; }
.seonos-opt { color: rgba(200,218,226,.5); font-weight: 400; }

.seonos-btn {
  display: inline-block; cursor: pointer; border: 0; border-radius: 6px;
  background: var(--seonos-brand); color: #03040a; font-weight: 700;
  padding: 13px 24px; font-size: 15px; text-decoration: none; line-height: 1;
}
.seonos-btn:hover { filter: brightness(1.08); }
.seonos-btn-ghost { background: transparent; color: var(--seonos-brand); border: 1px solid var(--seonos-brand); }

.seonos-choices { display: grid; gap: 10px; }
.seonos-choice { cursor: pointer; text-align: left; padding: 14px 16px; border-radius: 6px; border: 1px solid rgba(120,160,180,.3); background: rgba(255,255,255,.03); color: #e8f1f5; font-size: 15px; }
.seonos-choice:hover { border-color: var(--seonos-brand); }

.seonos-form { display: grid; gap: 12px; text-align: left; }
.seonos-form label { display: grid; gap: 5px; font-size: 14px; color: rgba(200,218,226,.85); }
.seonos-form input[type="text"], .seonos-form input:not([type]), .seonos-form input[type="email"], .seonos-form input[type="tel"] {
  width: 100%; box-sizing: border-box; padding: 11px 12px; border-radius: 6px;
  border: 1px solid rgba(120,160,180,.4); background: rgba(255,255,255,.04); color: #fff; font-size: 15px;
}
.seonos-check { flex-direction: row; display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; }
.seonos-check input { margin-top: 3px; }
.seonos-err { color: #ff8a8a; font-size: 13px; }

/* Running */
.seonos-run { padding: 10px 0; }
.seonos-spinner { width: 48px; height: 48px; margin: 8px auto 16px; border-radius: 50%; border: 4px solid rgba(120,160,180,.2); border-top-color: var(--seonos-brand); animation: seonos-spin .9s linear infinite; }
@keyframes seonos-spin { to { transform: rotate(360deg); } }
.seonos-run-msg { color: rgba(200,218,226,.85); font-size: 15px; }

/* Result */
.seonos-result { text-align: center; }
.seonos-ring { width: 132px; height: 132px; margin: 0 auto 16px; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 7px solid var(--seonos-brand); background: radial-gradient(closest-side, rgba(3,4,10,.5), rgba(3,4,10,.15)); }
.seonos-ring.g-A { border-color: #2fd27a; } .seonos-ring.g-B { border-color: #7ed957; }
.seonos-ring.g-C { border-color: #ffd24a; } .seonos-ring.g-D { border-color: #ff9f43; } .seonos-ring.g-F { border-color: #ff5252; }
.seonos-ring-num { font-size: 46px; font-weight: 800; line-height: 1; color: #fff; }
.seonos-ring-max { font-size: 12px; color: rgba(200,218,226,.6); }
.seonos-ring-grade { font-size: 16px; font-weight: 700; color: var(--seonos-brand); margin-top: 2px; }
.seonos-result-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin: 6px 0 14px; }
.seonos-powered { font-size: 12px; color: rgba(200,218,226,.5); margin: 8px 0 0; }
.seonos-powered strong { color: var(--seonos-brand); }
