:root {
  --pf-bg: #f6f7ff;
  --pf-ink: #151228;
  --pf-muted: #5f6678;
  --pf-purple: #5d50ff;
  --pf-purple-dark: #4333e6;
  --pf-cyan: #5bd1ff;
  --pf-accent: #ffb35a;
  --pf-card: #ffffff;
  --pf-border: rgba(21, 18, 40, 0.08);
  --pf-soft: rgba(93, 80, 255, 0.08);
  --pf-shadow: 0 24px 60px rgba(23, 20, 45, 0.12);
}

* {
  box-sizing: border-box;
}

.pf-body {
  font-family: "Manrope", sans-serif;
  color: var(--pf-ink);
  background: linear-gradient(180deg, #f7f8ff 0%, #ffffff 45%, #f5f9ff 100%);
  min-height: 100vh;
}

.pf-body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 12% 12%, rgba(93, 80, 255, 0.18), transparent 38%),
    radial-gradient(circle at 85% 18%, rgba(91, 209, 255, 0.22), transparent 32%),
    radial-gradient(circle at 35% 85%, rgba(255, 179, 90, 0.18), transparent 35%);
  pointer-events: none;
  z-index: -2;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.02em;
}

.topbar {
  background: linear-gradient(90deg, #0c091c, #2f1d6b, #5f2de1);
  color: #f5f3ff;
  padding: 0.45rem 0.75rem;
}

.topbar a {
  color: #b8c4ff;
  text-decoration: none;
}

.topbar-pill {
  display: inline-block;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 600;
  margin-right: 0.4rem;
}

.pf-navbar {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--pf-border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.pf-navbar.scrolled {
  box-shadow: 0 12px 40px rgba(21, 18, 40, 0.1);
}

.pf-navbar--purple {
  background: linear-gradient(90deg, #4720b0 0%, #5b32d0 45%, #6b3df3 100%);
  border-bottom: none;
}

.pf-navbar--purple .navbar-brand,
.pf-navbar--purple .nav-link,
.pf-navbar--purple .btn-link {
  color: #ffffff;
}

.pf-navbar--purple .nav-link:hover,
.pf-navbar--purple .nav-link:focus {
  background: rgba(255, 255, 255, 0.16);
}

.pf-navbar--purple .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

.pf-navbar--purple .btn-primary {
  background: #ff6a88;
  border-color: #ff6a88;
  box-shadow: 0 12px 24px rgba(255, 106, 136, 0.35);
}

.pf-navbar--purple .btn-primary:hover {
  background: #ff5576;
  border-color: #ff5576;
}

.brand-orb {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, var(--pf-purple), var(--pf-cyan), var(--pf-accent));
  display: inline-block;
}

.brand-text {
  font-weight: 700;
  font-size: 1.1rem;
}

.navbar .nav-link {
  font-weight: 600;
  color: #2b2542;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  background: var(--pf-soft);
}

.navbar .btn-link {
  color: var(--pf-muted);
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.btn-primary {
  background: var(--pf-purple);
  border-color: var(--pf-purple);
  box-shadow: 0 12px 24px rgba(93, 80, 255, 0.25);
}

.btn-primary:hover {
  background: var(--pf-purple-dark);
  border-color: var(--pf-purple-dark);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-dark {
  border-color: rgba(21, 18, 40, 0.18);
}

.btn {
  border-radius: 12px;
  font-weight: 600;
  padding: 0.65rem 1.2rem;
}

.btn-lg {
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
}

.btn-sm {
  border-radius: 10px;
}

.btn-soft-primary {
  background: rgba(93, 80, 255, 0.14);
  color: var(--pf-purple-dark);
  border: 1px solid rgba(93, 80, 255, 0.2);
}

.btn-soft-success {
  background: rgba(25, 135, 84, 0.12);
  color: #146c43;
  border: 1px solid rgba(25, 135, 84, 0.2);
}

.btn-soft-warning {
  background: rgba(255, 193, 7, 0.18);
  color: #7a5b00;
  border: 1px solid rgba(255, 193, 7, 0.28);
}

.btn-soft-danger {
  background: rgba(220, 53, 69, 0.12);
  color: #b02a37;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.btn-ghost {
  background: transparent;
  color: var(--pf-ink);
  border: 1px dashed rgba(21, 18, 40, 0.25);
}

.btn-ghost:hover {
  background: rgba(21, 18, 40, 0.04);
}

.button-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 16px 32px rgba(21, 18, 40, 0.08);
  display: grid;
  gap: 1.6rem;
}

.button-row {
  display: grid;
  gap: 0.8rem;
}

.button-label {
  font-weight: 600;
  color: var(--pf-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.control-panel {
  display: grid;
  gap: 1.6rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 16px 32px rgba(21, 18, 40, 0.08);
}

.control-row {
  display: grid;
  gap: 0.8rem;
}

.control-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.control-chip {
  --chip-color: #009fc1;
  --chip-soft: rgba(0, 159, 193, 0.12);
  display: inline-flex;
  align-items: center;
}

.control-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.control-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 9px 16px;
  border-radius: 12px;
  border: 1px solid var(--chip-color);
  color: var(--chip-color);
  background: var(--chip-soft);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.control-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 2px solid currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.control-input:checked + .control-pill {
  background: var(--chip-color);
  border-color: var(--chip-color);
  color: #ffffff;
  box-shadow: 0 6px 12px rgba(15, 23, 42, 0.12);
}

.control-input:checked + .control-pill .control-mark {
  border-color: #ffffff;
  background: #ffffff;
}

.control-input:checked + .control-pill .control-mark::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--chip-color);
}

.control-chip--radio .control-mark {
  border-radius: 50%;
}

.control-chip--radio .control-mark::after {
  border-radius: 50%;
}

.control-input:focus-visible + .control-pill {
  box-shadow: 0 0 0 2px rgba(28, 172, 180, 0.35);
}

.control-input:disabled + .control-pill {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}

.control-chip--secondary {
  --chip-color: #5c6a70;
  --chip-soft: rgba(92, 106, 112, 0.12);
}

.control-chip--success {
  --chip-color: #31b58e;
  --chip-soft: rgba(49, 181, 142, 0.12);
}

.control-chip--danger {
  --chip-color: #f65858;
  --chip-soft: rgba(246, 88, 88, 0.14);
}

.control-chip--warning {
  --chip-color: #ffaa06;
  --chip-soft: rgba(255, 170, 6, 0.18);
}

.control-chip--info {
  --chip-color: #0b99b2;
  --chip-soft: rgba(11, 153, 178, 0.14);
}

.control-chip--dark {
  --chip-color: #1f2327;
  --chip-soft: rgba(31, 35, 39, 0.12);
}

.control-defaults {
  display: grid;
  gap: 1.6rem;
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 16px 32px rgba(21, 18, 40, 0.08);
}

.control-defaults-group {
  display: grid;
  gap: 0.8rem;
}

.control-defaults-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem 1.6rem;
}

.control-default {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 15px;
  color: #1f2a37;
}

.control-default input {
  width: 16px;
  height: 16px;
  accent-color: #009fc1;
}

.control-default input:disabled + span {
  color: #9aa3af;
}

.account-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 16px 32px rgba(21, 18, 40, 0.08);
  display: grid;
  gap: 1.6rem;
}

.account-row {
  display: grid;
  gap: 0.8rem;
}


.dashboard-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 1.5rem;
}

.dash-sidebar {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 14px 26px rgba(21, 18, 40, 0.06);
}

.dash-sidebar-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-nav {
  display: grid;
  gap: 0.4rem;
}

.dash-link {
  text-decoration: none;
  color: #2c3942;
  padding: 0.55rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dash-link.active,
.dash-link:hover {
  background: rgba(93, 80, 255, 0.1);
  color: var(--pf-purple-dark);
}

.dash-pill {
  background: rgba(93, 80, 255, 0.18);
  color: var(--pf-purple-dark);
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.dash-main {
  background: #ffffff;
  border: 1px solid var(--pf-border);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 14px 26px rgba(21, 18, 40, 0.06);
  display: grid;
  gap: 1.5rem;
}

.dash-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.dash-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dash-input,
.dash-select {
  min-width: 180px;
  border-radius: 10px;
  border-color: #d6dde4;
}

.dash-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.dash-tab {
  border: 1px solid #dfe4ea;
  background: #f4f6f8;
  color: #2f3a45;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
}

.dash-tab.active {
  background: #e9f4ff;
  border-color: #bfe6f6;
  color: #1b5d6d;
}

.dash-alert {
  background: #f0e9ff;
  color: #3b2a6d;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.dash-alert a {
  color: #5b4cd5;
  text-decoration: none;
  font-weight: 600;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.dash-card {
  background: #f8fafc;
  border: 1px solid #e3e7ee;
  border-radius: 14px;
  padding: 1rem;
}

.dash-card.wide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dash-label {
  color: #6a7380;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.dash-table {
  display: grid;
  gap: 0.8rem;
}

.dash-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: center;
  padding: 0.8rem 0.6rem;
  border-radius: 12px;
  border: 1px solid #e3e7ee;
  background: #ffffff;
}

.dash-row-head {
  background: #f4f6f8;
  font-weight: 700;
  color: #6a7380;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.dash-flow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.dash-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(93, 80, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--pf-purple-dark);
  font-weight: 700;
}

.dash-icon.alt {
  background: rgba(0, 177, 117, 0.16);
  color: #0a7d56;
}

.dash-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.dash-badge.success {
  background: rgba(0, 177, 117, 0.16);
  color: #0a7d56;
}

.dash-badge.warning {
  background: rgba(242, 162, 58, 0.18);
  color: #8a5b1c;
}

.dash-footer {
  display: grid;
}

.settings-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 18px 36px rgba(21, 18, 40, 0.08);
  display: grid;
  gap: 1.5rem;
}

.settings-header h3 {
  margin-bottom: 1rem;
}

.settings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  border-bottom: 1px solid #e3e7ee;
  padding-bottom: 0.6rem;
}

.settings-tab {
  border: none;
  background: transparent;
  color: #2c3942;
  font-weight: 600;
  padding: 0.4rem 0;
  position: relative;
}

.settings-tab.active {
  color: #00b175;
}

.settings-tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.6rem;
  height: 3px;
  border-radius: 999px;
  background: #00b175;
}

.settings-card {
  display: grid;
  gap: 1.4rem;
}

.settings-row {
  display: grid;
  gap: 0.6rem;
  align-items: start;
  grid-template-columns: 200px 1fr;
}

.settings-label {
  font-weight: 600;
  color: #2c3942;
}

.settings-select {
  max-width: 280px;
}

.settings-info {
  background: #efe6ff;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  color: #3b2a6d;
  display: grid;
  gap: 0.4rem;
  grid-template-columns: auto 1fr;
  align-items: center;
}

.settings-info p {
  margin: 0;
}

.settings-info a {
  grid-column: 2;
  color: #5b4cd5;
  font-weight: 600;
  text-decoration: none;
}

.settings-info-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d8c8ff;
  color: #4b3aa6;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.settings-check {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-weight: 500;
}

.settings-check input {
  margin-top: 0.2rem;
}

.settings-help {
  font-size: 0.85rem;
  color: #6a7380;
  padding-left: 1.8rem;
}

.settings-help a {
  color: #1b6a7a;
  text-decoration: none;
  font-weight: 600;
}

.settings-stack p {
  margin-bottom: 0.8rem;
}

.settings-link {
  color: #1b6a7a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
}

.settings-footer {
  padding-top: 0.8rem;
  border-top: 1px solid #e3e7ee;
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d7dee6;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.toggle input:checked + .toggle-slider {
  background: #6edc9f;
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.websites-section {
  background: #eef3f7;
}

.websites-shell {
  background: #f6f7f9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e3e7ee;
  position: relative;
  box-shadow: 0 18px 36px rgba(21, 18, 40, 0.08);
}

.websites-topbar {
  background: #0f3b47;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.6rem;
}

.websites-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.websites-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.websites-tab {
  background: transparent;
  border: none;
  color: #cfe2e8;
  font-weight: 600;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.websites-tab.active {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.websites-actions {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #cfe2e8;
}

.websites-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  padding: 1.8rem;
}

.websites-sidebar {
  background: #eef2f5;
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

.websites-link {
  text-decoration: none;
  color: #2c3942;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-weight: 600;
  display: block;
}

.websites-link.active,
.websites-link:hover {
  background: #dfe7ec;
}

.websites-plan {
  margin-top: auto;
  display: grid;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6a7380;
}

.websites-main {
  display: grid;
  gap: 1.5rem;
}

.websites-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.websites-info {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e5edf2;
  display: grid;
  place-items: center;
  color: #60717f;
  font-weight: 700;
}

.websites-card {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e3e7ee;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  overflow: hidden;
}

.websites-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.04);
  z-index: 1;
  pointer-events: none;
}

.websites-card-content {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 0.8rem;
}

.websites-card-content h4 {
  font-size: 1.6rem;
}

.websites-list {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: #4a5560;
}

.websites-list li {
  position: relative;
  padding-left: 1.6rem;
}

.websites-list li::before {
  content: "v";
  position: absolute;
  left: 0;
  top: 0;
  color: #00b175;
  font-weight: 700;
  font-size: 0.85rem;
}

.websites-illustration {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.websites-window {
  width: 100%;
  max-width: 320px;
  background: #f4f6ff;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(21, 18, 40, 0.12);
  padding: 1rem;
}

.websites-window-bar {
  height: 12px;
  border-radius: 999px;
  background: #dfe7ff;
  margin-bottom: 1rem;
}

.websites-window-content {
  display: grid;
  gap: 0.8rem;
}

.websites-chip {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.websites-canvas {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #a6b2ff, #7bd4f1);
}

.websites-icons-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  text-align: center;
  font-size: 0.7rem;
  color: #6a7380;
}

.websites-modal {
  position: absolute;
  top: 1.5rem;
  right: 2.5rem;
  width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1.2rem;
  box-shadow: 0 20px 40px rgba(21, 18, 40, 0.2);
  z-index: 2;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.websites-modal.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.websites-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.websites-modal-close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f1f3f6;
  display: grid;
  place-items: center;
  color: #6a7380;
  font-weight: 700;
  border: none;
}

.websites-modal-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.websites-subcopy {
  text-align: center;
  color: #6a7380;
  display: grid;
  gap: 0.4rem;
}

.websites-toast {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;
  width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 16px 30px rgba(21, 18, 40, 0.14);
  border: 1px solid #e3e7ee;
  display: grid;
  gap: 0.5rem;
  font-size: 0.85rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.websites-toast.is-hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

.websites-toast-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: #f1f3f6;
  color: #6a7380;
  font-weight: 700;
}

.websites-toast a {
  color: #1b6a7a;
  text-decoration: none;
  font-weight: 600;
}

.help-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 0.6rem;
  align-items: end;
  z-index: 60;
}

.help-toggle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #00b175;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 177, 117, 0.3);
}

.help-card {
  width: 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #e3e7ee;
  box-shadow: 0 16px 30px rgba(21, 18, 40, 0.16);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: all 0.2s ease;
}

.help-widget.is-open .help-card {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.help-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.help-close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #f1f3f6;
  color: #6a7380;
  font-weight: 700;
}

.help-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.side-tab {
  position: fixed;
  right: 0;
  top: 45%;
  transform: translateY(-50%);
  background: #e9f1f5;
  color: #1f4d57;
  text-decoration: none;
  padding: 0.7rem 0.45rem;
  border-radius: 12px 0 0 12px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  box-shadow: 0 10px 20px rgba(21, 18, 40, 0.12);
  z-index: 50;
}

.misc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.misc-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 12px 24px rgba(21, 18, 40, 0.06);
  display: grid;
  gap: 1rem;
}

.misc-card.wide {
  grid-column: span 2;
}

.misc-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.misc-pill {
  background: rgba(93, 80, 255, 0.12);
  color: var(--pf-purple-dark);
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.misc-progress {
  background: #edf1f5;
  border-radius: 999px;
  height: 8px;
  overflow: hidden;
}

.misc-progress span {
  display: block;
  height: 100%;
  background: #00b175;
  border-radius: inherit;
}

.misc-progress.subtle span {
  background: #009fc1;
}

.misc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
  color: #4a5560;
}

.misc-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.misc-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: #2f3a45;
}

.misc-team {
  display: grid;
  gap: 0.8rem;
}

.misc-user {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
}

.misc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(93, 80, 255, 0.18);
  color: var(--pf-purple-dark);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.misc-avatar.alt {
  background: rgba(0, 177, 117, 0.18);
  color: #0a7d56;
}

.misc-tag {
  background: rgba(0, 177, 117, 0.15);
  color: #0a7d56;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.misc-tag.warn {
  background: rgba(242, 162, 58, 0.18);
  color: #8a5b1c;
}

.misc-activity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid #edf1f5;
  padding-bottom: 0.6rem;
}

.misc-activity:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.misc-time {
  font-size: 0.75rem;
  color: #7a8592;
}

.misc-link {
  color: #1b6a7a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.misc-integrations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.6rem;
}

.misc-app {
  background: #f4f6f8;
  border-radius: 12px;
  padding: 0.6rem;
  text-align: center;
  font-weight: 600;
  color: #2f3a45;
  font-size: 0.85rem;
}

.misc-empty {
  background: #f6f8fb;
  border-radius: 14px;
  padding: 1.2rem;
  display: grid;
  gap: 0.6rem;
  text-align: center;
  color: #6a7380;
}

.misc-empty-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #e4ebf1;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin: 0 auto;
}

.misc-chart {
  height: 160px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.6rem;
  align-items: end;
  background: #f6f8fb;
  padding: 1rem;
  border-radius: 14px;
}

.misc-bar {
  background: linear-gradient(180deg, #5d50ff, #91c6ff);
  border-radius: 999px;
}

.misc-chart-line {
  background: #f6f8fb;
  border-radius: 14px;
  padding: 1rem;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(#e7ecf2 1px, transparent 1px),
    linear-gradient(90deg, #e7ecf2 1px, transparent 1px);
  background-size: 100% 40px, 80px 100%;
}

.chart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.chart-legend {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.chart-toggle {
  border: 1px solid #d8e0e7;
  background: #ffffff;
  color: #2f3a45;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.chart-toggle.is-active {
  border-color: #c7d2ff;
  background: #eef1ff;
}

.chart-range {
  display: flex;
  gap: 0.4rem;
}

.chart-range-btn {
  border: 1px solid #d8e0e7;
  background: #ffffff;
  color: #2f3a45;
  border-radius: 8px;
  padding: 0.2rem 0.6rem;
  font-weight: 600;
  font-size: 0.8rem;
}

.chart-range-btn.is-active {
  background: #00b175;
  border-color: #00b175;
  color: #ffffff;
}

.chart-wrap {
  position: relative;
  height: 220px;
}

.chart-svg {
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transition: opacity 0.2s ease;
}

.chart-line.opens {
  stroke: #5d50ff;
}

.chart-line.clicks {
  stroke: #00b175;
}

.chart-area.opens {
  fill: url(#opensFill);
}

.chart-area.clicks {
  fill: url(#clicksFill);
}

.chart-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.chart-dot.opens {
  background: #5d50ff;
}

.chart-dot.clicks {
  background: #00b175;
}

.chart-crosshair {
  stroke: rgba(47, 58, 69, 0.25);
  stroke-dasharray: 4 4;
  opacity: 0;
}

.chart-hover-dot {
  fill: #ffffff;
  stroke-width: 3;
  opacity: 0;
}

.chart-hover-dot.opens {
  stroke: #5d50ff;
}

.chart-hover-dot.clicks {
  stroke: #00b175;
}

.chart-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  border: 1px solid #e3e7ee;
  box-shadow: 0 10px 20px rgba(21, 18, 40, 0.16);
  font-size: 0.8rem;
  display: grid;
  gap: 0.4rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: 140px;
}

.chart-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chart-tooltip-title {
  font-weight: 700;
  color: #2f3a45;
}

.chart-tooltip-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #4a5560;
}

.chart-grid line {
  stroke: rgba(47, 58, 69, 0.12);
  stroke-width: 1;
}

.chart-x-labels text,
.chart-y-labels text {
  fill: #7a8592;
  font-size: 10px;
}

.misc-legend {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #6a7380;
}

.misc-legend i {
  display: inline-block;
  width: 14px;
  height: 6px;
  background: #5d50ff;
  border-radius: 999px;
  margin-right: 0.4rem;
}

.misc-legend .alt i {
  background: #00b175;
}

.misc-select {
  max-width: 160px;
}

.templates-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 18px 36px rgba(21, 18, 40, 0.08);
  display: grid;
  gap: 1.4rem;
}

.templates-toolbar {
  display: grid;
  grid-template-columns: 1.2fr 2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.templates-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.templates-chip {
  border: 1px solid #d8e0e7;
  background: #f6f8fb;
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  font-weight: 600;
  font-size: 0.85rem;
}

.templates-chip.active {
  background: #e9f4ff;
  border-color: #bfe6f6;
  color: #1b5d6d;
}

.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.templates-card {
  border: 1px solid #e3e7ee;
  border-radius: 16px;
  padding: 1rem;
  background: #ffffff;
  display: grid;
  gap: 0.6rem;
}

.templates-thumb {
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #b7c0ff, #f5f6ff);
}

.templates-thumb.alt {
  background: linear-gradient(135deg, #ffd9b0, #fff5e9);
}

.templates-thumb.dark {
  background: linear-gradient(135deg, #2a214a, #4d3c7a);
}

.templates-thumb.pale {
  background: linear-gradient(135deg, #c8fff1, #f1fffb);
}

.templates-meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.templates-tag {
  background: #eef1f4;
  color: #2f3a45;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.templates-tag.soft {
  background: #e8e6ff;
  color: #4b3aa6;
}

.templates-pagination {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  justify-content: center;
}

.templates-page {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #d8e0e7;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #6a7380;
}

.templates-page.active {
  background: #00b175;
  border-color: #00b175;
  color: #ffffff;
}

.multi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.multi-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem;
  border: 1px solid #e3e7ee;
  box-shadow: 0 12px 24px rgba(21, 18, 40, 0.06);
  display: grid;
  gap: 0.6rem;
}

.multi-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.multi-icon.mail {
  background: linear-gradient(135deg, #5d50ff, #7c6cff);
}

.multi-icon.chat {
  background: linear-gradient(135deg, #00b175, #4dd1a4);
}

.multi-icon.crm {
  background: linear-gradient(135deg, #f2a23a, #ffcd7a);
}

.multi-icon.push {
  background: linear-gradient(135deg, #009fc1, #5bd1ff);
}

.multi-icon.course {
  background: linear-gradient(135deg, #7b4dff, #c4a7ff);
}

.multi-icon.site {
  background: linear-gradient(135deg, #ff6a88, #ffb0c0);
}

.upgrade-banner {
  background: linear-gradient(120deg, #f5f0ff, #fef3f8);
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid #ece4ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  box-shadow: 0 18px 36px rgba(93, 80, 255, 0.12);
}

.upgrade-banner h4 {
  margin-bottom: 0.4rem;
}

.upgrade-actions {
  display: grid;
  gap: 0.4rem;
  justify-items: start;
}

.integration-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 1.4rem;
}

.integration-chips span {
  background: #ffffff;
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid #e3e7ee;
  font-weight: 600;
  font-size: 0.85rem;
}

.integration-mock {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #e3e7ee;
  box-shadow: 0 18px 36px rgba(21, 18, 40, 0.1);
  min-height: 260px;
}

.integration-window {
  background: #f6f8fb;
  border-radius: 16px;
  padding: 1rem;
  height: 100%;
}

.integration-window-bar {
  height: 12px;
  background: #e0e7ef;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.integration-window-body {
  display: grid;
  gap: 1rem;
}

.integration-row {
  display: flex;
  gap: 0.6rem;
}

.integration-row span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: #e7edf4;
}

.integration-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 10px 20px rgba(21, 18, 40, 0.08);
}

.integration-logo {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(21, 18, 40, 0.16);
}

.integration-logo.logo-shopify {
  background: #2fb566;
  top: -16px;
  right: 80px;
}

.integration-logo.logo-woo {
  background: #7d4ae6;
  top: -8px;
  right: 20px;
}

.integration-logo.logo-wp {
  background: #21759b;
  top: 22px;
  right: -10px;
}

.integration-logo.logo-zap {
  background: #ff7a2f;
  bottom: -12px;
  right: 60px;
}

.integration-logo.logo-stripe {
  background: #0a2540;
  bottom: 10px;
  right: -12px;
}

.mega-footer {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid #e3e7ee;
  box-shadow: 0 16px 32px rgba(21, 18, 40, 0.08);
  display: grid;
  gap: 1.8rem;
}

.mega-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.4rem;
}

.mega-columns h6 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: #6a7380;
  margin-bottom: 0.6rem;
}

.mega-columns a {
  display: block;
  color: #2f3a45;
  text-decoration: none;
  margin-bottom: 0.4rem;
}

.mega-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.store-badge {
  background: #111827;
  color: #ffffff;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
}

.mega-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid #e3e7ee;
  padding-top: 1rem;
  color: #6a7380;
  font-size: 0.85rem;
}

.mega-links,
.mega-social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.mega-links a {
  color: #6a7380;
  text-decoration: none;
}

.popup-demo {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 18, 30, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.popup-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.popup-panel {
  position: fixed;
  right: 24px;
  bottom: 90px;
  width: 280px;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #e3e7ee;
  box-shadow: 0 18px 36px rgba(21, 18, 40, 0.2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 90;
}

.popup-panel.drawer {
  top: 80px;
  right: 16px;
  bottom: auto;
  width: 320px;
}

.popup-panel.popup-modal {
  left: 50%;
  top: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -40%);
  width: min(440px, 90vw);
}

.popup-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.popup-panel.popup-modal.is-open {
  transform: translate(-50%, -50%);
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.popup-close {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background: #f1f3f6;
  color: #6a7380;
  font-weight: 700;
}

.popup-body {
  display: grid;
  gap: 0.8rem;
}

.popup-item {
  border-bottom: 1px solid #edf1f5;
  padding-bottom: 0.6rem;
}

.popup-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.popup-footer {
  margin-top: 0.8rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}

.popup-tips {
  margin: 0;
  padding-left: 1rem;
  color: #4a5560;
  display: grid;
  gap: 0.4rem;
}

.popup-login .popup-body {
  gap: 0.6rem;
}

.popup-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.popup-link {
  color: #1b6a7a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.popup-alt {
  border-top: 1px solid #edf1f5;
  margin-top: 0.8rem;
  padding-top: 0.8rem;
  display: grid;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: #6a7380;
}

.popup-social {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.billing-shell {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 18px 36px rgba(21, 18, 40, 0.08);
  display: grid;
  gap: 1.4rem;
}

.billing-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.billing-card {
  background: #f6f8fb;
  border-radius: 14px;
  padding: 1rem;
  display: grid;
  gap: 0.3rem;
}

.billing-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #7a8592;
}

.billing-muted {
  color: #6a7380;
  font-size: 0.85rem;
}

.billing-controls {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}

.billing-table {
  display: grid;
  gap: 0.6rem;
}

.billing-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1px solid #e3e7ee;
  background: #ffffff;
}

.billing-head {
  background: #f4f6f8;
  font-weight: 700;
  color: #6a7380;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
}

.billing-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  width: fit-content;
}

.billing-badge.paid {
  background: rgba(0, 177, 117, 0.18);
  color: #0a7d56;
}

.billing-badge.pending {
  background: rgba(242, 162, 58, 0.18);
  color: #8a5b1c;
}

.billing-badge.failed {
  background: rgba(229, 83, 83, 0.18);
  color: #b33b3b;
}

.builder-shell {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 1.4rem;
}

.builder-canvas {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--pf-border);
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.builder-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: rgba(47, 58, 69, 0.18);
  stroke-width: 2;
  fill: none;
}

.builder-node {
  position: absolute;
  left: var(--x);
  top: var(--y);
  background: #ffffff;
  border: 1px solid #d8e0e7;
  border-radius: 12px;
  padding: 0.5rem 0.8rem;
  font-weight: 600;
  box-shadow: 0 8px 16px rgba(21, 18, 40, 0.08);
}

.builder-node.active {
  border-color: #5d50ff;
  box-shadow: 0 10px 20px rgba(93, 80, 255, 0.2);
}

.builder-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--pf-border);
  display: grid;
  gap: 1rem;
}

.builder-info p {
  color: #6a7380;
}

.builder-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.builder-actions {
  display: flex;
  gap: 0.6rem;
}

.auth-section {
  background: linear-gradient(180deg, #eaf3f8 0%, #f7fbff 100%);
}

.auth-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 18px 36px rgba(21, 18, 40, 0.08);
}

.auth-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.2rem;
}

.auth-alert {
  background: #ffe9e9;
  color: #b03434;
  border: 1px solid #f3bcbc;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  font-size: 0.9rem;
  margin-bottom: 1.4rem;
}

.auth-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.auth-lang {
  color: #3b4a58;
  font-weight: 600;
}

.auth-form .form-label {
  font-weight: 600;
  margin-top: 0.8rem;
}

.auth-input .input-group-text {
  background: #f3f6f9;
  border-color: #d6dde4;
  font-weight: 700;
}

.auth-input .form-control {
  border-color: #d6dde4;
}

.auth-link {
  display: inline-block;
  margin: 0.5rem 0 0.8rem;
  font-size: 0.9rem;
  color: #1b6a7a;
  text-decoration: none;
}

.auth-divider {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
  font-weight: 700;
  color: #7b8592;
  margin: 1.6rem 0 0.8rem;
}

.auth-social {
  display: grid;
  gap: 0.6rem;
}

.auth-social-btn {
  border: 1px solid #d6dde4;
  background: #ffffff;
  color: #2f3a45;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.55rem 1rem;
}

.auth-foot {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: #6a7380;
}

.auth-foot a {
  color: #1b6a7a;
  text-decoration: none;
  font-weight: 600;
}

.auth-visual {
  background: linear-gradient(140deg, #1d86b8 0%, #55b3c7 40%, #8aa3f6 100%);
  border-radius: 26px;
  padding: 2.6rem;
  min-height: 440px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(14, 52, 80, 0.25);
}

.auth-hero h4 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.auth-hero p {
  margin-bottom: 0;
  opacity: 0.85;
}

.auth-card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.auth-mini-card {
  background: #ffffff;
  color: #2f3a45;
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 16px 30px rgba(21, 18, 40, 0.12);
}

.auth-mini-card a {
  color: #007ea0;
  text-decoration: none;
  font-weight: 600;
}

.auth-mini-badge {
  display: inline-block;
  background: #e9f4ff;
  color: #1b6a7a;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.auth-mini-badge.green {
  background: #e6f7ef;
  color: #0a7d56;
}

.auth-mini-badge.blue {
  background: #e6f4ff;
  color: #1b6a7a;
}

.auth-mini-badge.orange {
  background: #fff1df;
  color: #8a5b1c;
}

.auth-flow {
  position: absolute;
  bottom: 1.4rem;
  right: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.85;
}

.auth-node {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.auth-node.green {
  background: #5de2b7;
}

.auth-node.orange {
  background: #ffc46a;
}

.auth-line {
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
}

.auth-line.short {
  width: 20px;
}

@media (max-width: 991px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }

  .dash-row {
    grid-template-columns: 1fr;
  }

  .dash-card.wide {
    flex-direction: column;
    align-items: flex-start;
  }

  .settings-row {
    grid-template-columns: 1fr;
  }

  .websites-body {
    grid-template-columns: 1fr;
  }

  .websites-card {
    grid-template-columns: 1fr;
  }

  .websites-modal {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .misc-card.wide {
    grid-column: span 1;
  }

  .templates-toolbar {
    grid-template-columns: 1fr;
  }

  .popup-panel.drawer {
    width: min(320px, 92vw);
    right: 12px;
  }

  .billing-row {
    grid-template-columns: 1fr;
  }

  .builder-shell {
    grid-template-columns: 1fr;
  }

  .upgrade-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-visual {
    min-height: 320px;
  }

  .auth-flow {
    position: static;
    margin-top: 1.5rem;
  }
}

.hero {
  padding: 5rem 0 4rem;
  position: relative;
  background: linear-gradient(180deg, rgba(93, 80, 255, 0.08) 0%, rgba(255, 255, 255, 0) 65%);
}

.hero--violet {
  background: radial-gradient(circle at 12% 8%, rgba(125, 98, 255, 0.6), transparent 48%),
    radial-gradient(circle at 80% 18%, rgba(102, 214, 255, 0.45), transparent 42%),
    linear-gradient(180deg, #3a1aa7 0%, #4f26c6 40%, #6031e6 100%);
  color: #ffffff;
  padding-top: 6rem;
  padding-bottom: 5rem;
}

.hero--violet .eyebrow {
  color: rgba(255, 255, 255, 0.8);
}

.hero--violet .display-4 {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(18, 10, 60, 0.35);
}

.hero--violet .lead {
  color: rgba(255, 255, 255, 0.8);
}

.hero--violet .btn-primary {
  background: #ff5a6b;
  border-color: #ff5a6b;
  box-shadow: 0 12px 24px rgba(255, 90, 107, 0.35);
}

.hero--violet .btn-primary:hover {
  background: #ff4359;
  border-color: #ff4359;
}

.hero--violet .chip {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero--violet .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.hero--violet .hero-metrics > div {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}

.hero--violet .hero-card {
  background: #ffffff;
  color: #1d1a2f;
  box-shadow: 0 24px 60px rgba(13, 10, 40, 0.28);
}

.hero--violet .hero-card h5,
.hero--violet .hero-card h6 {
  color: #1d1a2f;
}

.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  right: -120px;
  top: 60px;
  background: radial-gradient(circle, rgba(93, 80, 255, 0.25), transparent 65%);
  z-index: -1;
}

/* enforce purple header + hero contrast */
.pf-navbar.pf-navbar--purple .navbar-nav .nav-link,
.pf-navbar.pf-navbar--purple .btn-link,
.pf-navbar.pf-navbar--purple .navbar-brand {
  color: #ffffff;
}

.pf-navbar.pf-navbar--purple .navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.18);
}

.hero.hero--violet .display-4,
.hero.hero--violet .lead {
  color: #ffffff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--pf-purple-dark);
}

.hero .display-4 {
  color: #120f23;
  font-size: 3.2rem;
  line-height: 1.05;
}

.hero .lead {
  color: var(--pf-muted);
  font-size: 1.15rem;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.2rem 0 1.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(93, 80, 255, 0.12);
  color: var(--pf-purple-dark);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-metrics h3 {
  margin-bottom: 0.2rem;
}

.hero-metrics > div {
  background: #ffffff;
  border-radius: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 10px 20px rgba(21, 18, 40, 0.05);
}

.hero-card {
  background: linear-gradient(180deg, #ffffff 0%, #f6f7ff 100%);
  border-radius: 26px;
  padding: 2rem;
  box-shadow: var(--pf-shadow);
  position: relative;
  border: 1px solid rgba(93, 80, 255, 0.16);
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.status-pill {
  background: rgba(91, 209, 255, 0.2);
  color: #0b6a88;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.hero-steps {
  display: grid;
  gap: 1rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 1rem;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--pf-border);
}

.step span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pf-purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 600;
}

.hero-card-footer {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.floating-card {
  margin-top: 1.5rem;
  background: #ffffff;
  color: var(--pf-ink);
  border-radius: 18px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(21, 18, 40, 0.12);
  border: 1px solid var(--pf-border);
  border-left: 4px solid var(--pf-purple);
}

.logo-strip {
  padding: 1.5rem 0 3rem;
}

.logo-strip p {
  color: var(--pf-muted);
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.5rem;
  font-weight: 600;
  color: #45405c;
}

.logo-grid span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  opacity: 0.7;
}

.section-pad {
  padding: 4.5rem 0;
}

.section-pad.alt {
  background: #f4f6ff;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 600;
}

.section-lead {
  color: var(--pf-muted);
}

.feature-card {
  background: var(--pf-card);
  padding: 1.75rem;
  border-radius: 18px;
  border: 1px solid var(--pf-border);
  height: 100%;
  box-shadow: 0 12px 24px rgba(21, 18, 40, 0.06);
}

.feature-card a {
  color: var(--pf-purple-dark);
  text-decoration: none;
  font-weight: 600;
}

.feature-wide {
  background: var(--pf-card);
  border-radius: 22px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--pf-border);
  height: 100%;
  box-shadow: 0 14px 30px rgba(21, 18, 40, 0.08);
}

.feature-wide.light {
  background: #fff4e9;
}

.mini-stats {
  display: grid;
  gap: 1rem;
}

.mini-stats h3 {
  margin-bottom: 0.2rem;
}

.badge-stack {
  display: grid;
  gap: 0.5rem;
}

.badge-stack span {
  background: #fff;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px dashed rgba(31, 26, 62, 0.16);
  font-size: 0.85rem;
}

.solution-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 12px 24px rgba(21, 18, 40, 0.05);
}

.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.solution-card ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.solution-card ul li::before {
  content: "*";
  position: absolute;
  left: 0;
  color: var(--pf-purple);
}

.template-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.25rem;
  border: 1px solid var(--pf-border);
  box-shadow: 0 10px 20px rgba(21, 18, 40, 0.05);
}

.template-thumb {
  height: 160px;
  border-radius: 14px;
  background: linear-gradient(135deg, #b7c0ff, #f5f6ff);
  margin-bottom: 1rem;
}

.template-thumb.alt {
  background: linear-gradient(135deg, #ffd9b0, #fff5e9);
}

.template-thumb.dark {
  background: linear-gradient(135deg, #2a214a, #4d3c7a);
}

.template-thumb.pale {
  background: linear-gradient(135deg, #c8fff1, #f1fffb);
}

.pricing-card {
  background: #fff;
  border-radius: 22px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  height: 100%;
  box-shadow: 0 14px 28px rgba(21, 18, 40, 0.06);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
}

.pricing-card.featured {
  border: 1px solid rgba(93, 80, 255, 0.35);
  box-shadow: 0 20px 40px rgba(93, 80, 255, 0.2);
  position: relative;
}

.pricing-card.featured .badge {
  background: var(--pf-purple);
  color: #fff;
  position: absolute;
  top: -12px;
  right: 24px;
}

.resource-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  height: 100%;
  box-shadow: 0 10px 24px rgba(21, 18, 40, 0.05);
}

.resource-card .tag {
  display: inline-block;
  background: rgba(106, 76, 255, 0.12);
  color: var(--pf-purple-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--pf-border);
  height: 100%;
  box-shadow: 0 12px 26px rgba(21, 18, 40, 0.06);
}

.testimonial-card .quote {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6a4cff, #4dd6ff);
}

.avatar.alt {
  background: linear-gradient(135deg, #ffb84d, #ff6a88);
}

.accordion-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--pf-border);
  margin-bottom: 1rem;
  box-shadow: 0 10px 18px rgba(21, 18, 40, 0.04);
}

.cta-section {
  padding: 4rem 0 6rem;
}

.cta-card {
  background: linear-gradient(120deg, #2a214a, #5d50ff);
  color: #fff;
  border-radius: 28px;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer {
  background: #151225;
  color: #d7d4ef;
  padding: 3.5rem 0 2rem;
}

.footer a {
  color: #bdb9e1;
  text-decoration: none;
  display: block;
  margin-bottom: 0.4rem;
}

.brand-footer {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.mega-menu {
  width: min(900px, 95vw);
  border-radius: 20px;
  border: 1px solid var(--pf-border);
  box-shadow: var(--pf-shadow);
  border-top: 4px solid var(--pf-purple);
  position: relative;
}

.mega-menu-products {
  width: min(980px, 95vw);
  border-top-color: #7a58ff;
  padding-bottom: 3.2rem;
}

.mega-menu-resources {
  width: min(640px, 92vw);
  border-top-color: #00b175;
}

.mega-menu-partners {
  width: min(720px, 92vw);
  border-top-color: #ff6a88;
}

.menu-group h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.menu-link {
  display: block;
  text-decoration: none;
  color: var(--pf-muted);
  margin-bottom: 0.65rem;
}

.menu-link:hover {
  color: var(--pf-purple-dark);
}

.menu-cta {
  background: #f2f4ff;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid rgba(93, 80, 255, 0.15);
}

.menu-cta-light {
  background: #fff7f0;
  border-color: rgba(242, 162, 58, 0.18);
}

.menu-strip {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.2rem;
  background: #f7f2ff;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(93, 80, 255, 0.12);
  font-weight: 600;
}

.menu-strip a {
  color: #5b4cd5;
  text-decoration: none;
  font-weight: 700;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .hero {
    padding-top: 3.5rem;
  }

  .cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-wide {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --- SendPulse-like global polish --- */
:root {
  --pf-bg: #f7f8fb;
  --pf-ink: #1b1a2c;
  --pf-muted: #626b7a;
  --pf-purple: #5b2eea;
  --pf-purple-dark: #4a22c9;
  --pf-pink: #ff5a6b;
  --pf-teal: #00a3c4;
  --pf-border: #e6e8ef;
  --pf-shadow: 0 14px 32px rgba(24, 14, 70, 0.08);
  --pf-shadow-soft: 0 10px 24px rgba(24, 14, 70, 0.08);
}

.pf-body {
  background: linear-gradient(180deg, #f7f8fb 0%, #ffffff 40%, #f7f8fb 100%);
}

.section-pad.alt {
  background: #f6f7fb;
}

.btn {
  border-radius: 10px;
  font-weight: 600;
}

.btn-lg {
  border-radius: 12px;
}

.btn-primary {
  background: var(--pf-purple);
  border-color: var(--pf-purple);
  box-shadow: 0 10px 20px rgba(91, 46, 234, 0.2);
}

.btn-primary:hover {
  background: var(--pf-purple-dark);
  border-color: var(--pf-purple-dark);
}

.btn-outline-dark {
  border-color: #d8dde6;
}

.pf-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--pf-border);
  box-shadow: 0 8px 20px rgba(24, 14, 70, 0.05);
}

.pf-navbar--purple {
  background: linear-gradient(90deg, #3a1aa7 0%, #4f26c6 45%, #6031e6 100%);
  border-bottom: none;
  box-shadow: 0 12px 28px rgba(24, 14, 70, 0.35);
}

.pf-navbar--purple .nav-link,
.pf-navbar--purple .btn-link,
.pf-navbar--purple .navbar-brand {
  color: #ffffff;
}

.pf-navbar--purple .nav-link:hover,
.pf-navbar--purple .nav-link:focus {
  background: rgba(255, 255, 255, 0.16);
}

.pf-navbar--purple .btn-primary {
  background: var(--pf-pink);
  border-color: var(--pf-pink);
  box-shadow: 0 12px 24px rgba(255, 90, 107, 0.35);
}

.pf-navbar--purple .btn-primary:hover {
  background: #ff4359;
  border-color: #ff4359;
}

.hero--violet {
  background: radial-gradient(circle at 12% 8%, rgba(125, 98, 255, 0.6), transparent 48%),
    radial-gradient(circle at 80% 18%, rgba(102, 214, 255, 0.45), transparent 42%),
    linear-gradient(180deg, #3a1aa7 0%, #4f26c6 40%, #6031e6 100%);
  color: #ffffff;
}

.hero--violet .display-4 {
  color: #ffffff;
}

.hero--violet .lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero--violet .chip {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero--violet .btn-primary {
  background: var(--pf-pink);
  border-color: var(--pf-pink);
  box-shadow: 0 12px 24px rgba(255, 90, 107, 0.35);
}

.hero--violet .btn-primary:hover {
  background: #ff4359;
  border-color: #ff4359;
}

.hero--violet .hero-metrics > div {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.hero--violet .hero-card {
  box-shadow: 0 24px 60px rgba(13, 10, 40, 0.28);
}

.hero--violet .floating-card {
  background: rgba(255, 255, 255, 0.96);
  border-left-color: var(--pf-pink);
}

.feature-card,
.solution-card,
.template-card,
.pricing-card,
.resource-card,
.testimonial-card,
.settings-shell,
.account-panel,
.button-panel,
.dash-main,
.dash-sidebar,
.billing-shell,
.builder-panel,
.builder-canvas,
.templates-shell,
.misc-card,
.multi-card,
.integration-mock,
.websites-card,
.websites-modal,
.websites-toast,
.mega-footer,
.hero-card,
.floating-card,
.cta-card {
  border-radius: 16px;
  border-color: var(--pf-border);
  box-shadow: var(--pf-shadow-soft);
}

.mega-menu {
  border-radius: 14px;
  border-color: #e7e8f2;
  box-shadow: 0 20px 50px rgba(24, 14, 70, 0.12);
}

.menu-group h6 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: #6a7380;
}

.menu-link {
  color: #2f3a45;
}

.menu-link:hover {
  color: var(--pf-purple-dark);
}

.menu-strip {
  background: #f6f1ff;
  border-color: rgba(93, 80, 255, 0.16);
}

/* --- SendPulse dashboard skin overrides (from provided archive) --- */
:root {
  --sp-primary: #009fc1;
  --sp-secondary: #00b175;
  --sp-marine: #1cacb4;
  --sp-danger: #d94b4d;
  --sp-warning: #e3a92d;
  --sp-purple: #7738ed;
  --sp-bg: #f2f5f5;
  --sp-panel: #ffffff;
  --sp-border: #cdd4d4;
  --sp-muted: #465152;
  --sp-text: #023346;
  --sp-shadow: 0 6px 16px rgba(2, 51, 70, 0.12);
  --sp-shadow-soft: 0 4px 12px rgba(2, 51, 70, 0.08);

  --pf-bg: var(--sp-bg);
  --pf-ink: var(--sp-text);
  --pf-muted: var(--sp-muted);
  --pf-purple: var(--sp-primary);
  --pf-purple-dark: #00758e;
  --pf-pink: #f25a3e;
  --pf-teal: var(--sp-secondary);
  --pf-border: var(--sp-border);
  --pf-shadow: var(--sp-shadow);
  --pf-shadow-soft: var(--sp-shadow-soft);
}

.pf-body {
  font-family: "Onest", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--sp-bg);
  color: var(--sp-text);
  font-size: 16px;
  line-height: 1.42857143;
  text-size-adjust: none;
}

.pf-body::before {
  opacity: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
  font-family: "Onest", "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.topbar {
  background: #023346;
  color: #ffffff;
}

.topbar a {
  color: #9ec2ca;
}

.topbar-pill {
  background: rgba(255, 255, 255, 0.16);
}

a {
  color: #009fc1;
  text-decoration: none;
  cursor: pointer;
}

a:focus,
a:hover {
  color: #006075;
  text-decoration: underline;
}

.pf-navbar {
  background: #ffffff;
  border-bottom: 1px solid var(--sp-border);
  box-shadow: none;
}

.pf-navbar--purple {
  background: #023346;
  box-shadow: none;
}

.pf-navbar--purple .nav-link,
.pf-navbar--purple .btn-link,
.pf-navbar--purple .navbar-brand {
  color: #ffffff;
}

.pf-navbar--purple .nav-link:hover,
.pf-navbar--purple .nav-link:focus {
  background: rgba(255, 255, 255, 0.12);
}

.pf-navbar--purple .btn-primary {
  background: #f25a3e;
  border-color: #f25a3e;
  box-shadow: none;
}

.pf-navbar--purple .btn-primary:hover {
  background: #f3664c;
  border-color: #f3664c;
}

.section-pad.alt {
  background: #f6f8f8;
}

.btn:not(.btn-account) {
  display: inline-block;
  border-radius: 8px;
  font-weight: 700;
  box-shadow: none;
  padding: 9px 12px;
  font-size: 16px;
  line-height: 1.42857143;
  border: 1px solid transparent;
  background-image: none;
}

.btn-sm:not(.btn-account-sm) {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 6px;
  font-weight: 400;
}

.btn-lg:not(.btn-account-lg) {
  padding: 10px 16px;
  font-size: 20px;
  line-height: 1.3333333;
  border-radius: 10px;
}

.btn-primary {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #00758e;
  border-color: #006d84;
}

.btn-default {
  color: #023346;
  background-color: #e1e8e8;
  border-color: transparent;
}

.btn-default:hover,
.btn-default:focus {
  color: #023346;
  background-color: #c4d2d2;
  border-color: transparent;
}

.btn-outlined {
  background: transparent;
  border: 1px solid;
  color: #999999;
}

.btn-outlined:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #666666;
}

.btn-action {
  background: #e1e8e8;
  text-decoration: none !important;
  min-width: 48px;
  white-space: nowrap;
  color: #023346;
}

.btn-action:hover {
  background-color: #cfdada;
  color: #023346;
}

.btn-create {
  color: #ffffff;
  background: #00b175;
}

.btn-create:hover,
.btn-create:focus {
  background: #009261;
  color: #ffffff;
}

.btn-tariffs {
  color: #ffffff;
  background: #7738ed;
}

.btn-tariffs:hover,
.btn-tariffs:focus {
  background: #6d2aec;
  color: #ffffff;
}

.btn-more-action {
  background-color: transparent;
  border-color: transparent;
  min-width: 36px;
  padding: 6px 1px;
}

.btn-paid {
  background: rgba(119, 56, 237, 0.1);
  color: #7738ed;
}

.btn-paid:hover {
  color: #5a14de;
  background: rgba(119, 56, 237, 0.13);
}

.btn-trial {
  background: rgba(0, 159, 193, 0.08);
  color: #009fc1;
  box-shadow: 0 2px 6px rgba(0, 159, 193, 0.15);
}

.btn-trial:hover {
  color: #00758e;
  background: rgba(0, 159, 193, 0.12);
}

.btn-outline-dark {
  border-color: var(--sp-border);
  color: var(--sp-text);
}

.btn-outline-dark:hover {
  background: #eff3f3;
  border-color: var(--sp-border);
  color: var(--sp-text);
}

.btn-link {
  color: var(--sp-primary);
}

.btn-link:hover,
.btn-link:focus {
  color: #006075;
  text-decoration: underline;
}

.eyebrow {
  color: var(--sp-primary);
  letter-spacing: 0.14em;
}

.chip {
  background: #eff3f3;
  border: 1px solid var(--sp-border);
  color: var(--sp-text);
}

.hero--violet {
  background: radial-gradient(circle at 12% 8%, rgba(0, 159, 193, 0.2), transparent 50%),
    radial-gradient(circle at 80% 18%, rgba(0, 177, 117, 0.14), transparent 46%),
    #f2f5f5;
  color: var(--sp-text);
}

.hero::after {
  background: radial-gradient(circle, rgba(0, 159, 193, 0.2), transparent 65%);
}

.hero.hero--violet .display-4,
.hero.hero--violet .lead {
  color: var(--sp-text);
}

.hero--violet .lead {
  color: var(--sp-muted);
}

.hero--violet .chip {
  background: #eff3f3;
  color: var(--sp-text);
  border-color: var(--sp-border);
}

.hero--violet .btn-primary {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  box-shadow: none;
}

.hero--violet .btn-primary:hover {
  background: #00758e;
  border-color: #006d84;
}

.hero--violet .btn-outline-light {
  color: var(--sp-text);
  border-color: var(--sp-border);
  background: #ffffff;
}

.hero--violet .btn-outline-light:hover {
  background: #eff3f3;
  border-color: var(--sp-border);
}

.hero--violet .hero-metrics > div {
  background: #ffffff;
  border-color: var(--sp-border);
  color: var(--sp-text);
}

.hero--violet .hero-card {
  border: 1px solid var(--sp-border);
  box-shadow: var(--sp-shadow);
}

.hero--violet .floating-card {
  border-left-color: var(--sp-secondary);
}

.feature-card,
.solution-card,
.template-card,
.pricing-card,
.resource-card,
.testimonial-card,
.settings-shell,
.account-panel,
.button-panel,
.dash-main,
.dash-sidebar,
.billing-shell,
.builder-panel,
.builder-canvas,
.templates-shell,
.misc-card,
.multi-card,
.integration-mock,
.websites-card,
.websites-modal,
.websites-toast,
.mega-footer,
.hero-card,
.floating-card,
.cta-card {
  border-radius: 12px;
  border-color: var(--sp-border);
  box-shadow: var(--sp-shadow-soft);
}

.dash-main,
.dash-sidebar,
.settings-shell,
.account-panel {
  box-shadow: var(--sp-shadow-soft);
}

.dash-tab {
  background: #eff3f3;
  border-color: var(--sp-border);
  color: var(--sp-text);
}

.dash-tab.active {
  background: var(--sp-primary);
  border-color: var(--sp-primary);
  color: #ffffff;
}

.dash-card {
  background: #f8f9f9;
  border-color: var(--sp-border);
}

.dash-row {
  border-color: var(--sp-border);
}

.dash-row-head {
  background: #f8f9f9;
  color: var(--sp-muted);
}

.dash-icon {
  background: rgba(0, 159, 193, 0.15);
  color: var(--sp-primary);
}

.dash-icon.alt {
  background: rgba(0, 177, 117, 0.16);
  color: var(--sp-secondary);
}

.dash-badge.success {
  background: rgba(0, 177, 117, 0.16);
  color: var(--sp-secondary);
}

.dash-badge.warning {
  background: rgba(227, 169, 45, 0.2);
  color: #8a5b1c;
}

.settings-tabs {
  border-bottom-color: var(--sp-border);
}

.settings-tab.active {
  color: var(--sp-secondary);
}

.settings-tab.active::after {
  background: var(--sp-secondary);
}

.form-control:not(textarea),
.form-select,
.form-control {
  border: 1px solid var(--sp-border);
  border-radius: 8px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  color: #555555;
  background-color: #ffffff;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:not(textarea),
.form-select {
  height: 40px;
  padding: 9px 12px;
}

.form-control:hover,
.form-select:hover {
  border-color: #b2bcbc;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sp-marine);
  box-shadow: 0 0 0 2px rgba(28, 172, 180, 0.6);
  outline: 0;
}

.form-control::placeholder {
  color: #999999;
}

.form-check-input {
  border: 1px solid var(--sp-border);
}

.form-check-input:checked {
  background-color: var(--sp-primary);
  border-color: var(--sp-primary);
}

.table {
  --bs-table-border-color: var(--sp-border);
  --bs-table-striped-bg: #f8f9f9;
}

.table th {
  color: #023346;
}

.dropdown-menu {
  border: 0;
  padding: 4px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-color: #ffffff;
}

.dropdown-item {
  padding: 8px 12px;
  border-radius: 6px;
  color: #000000;
}

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #eff3f3;
  color: #262626;
}

.dropdown-divider {
  height: 1px;
  margin: 4px 0;
  background-color: #cdd4d4;
}

.nav-tabs {
  border-bottom: 1px solid #cdd4d4;
  margin-bottom: 20px;
}

.nav-tabs .nav-link {
  font-weight: 700;
  color: #023346;
  margin-right: 8px;
  border: 1px solid transparent;
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 -1px 0 transparent;
  transition: all 30ms ease-in-out 5ms;
}

.nav-tabs .nav-link:hover {
  border-color: transparent;
  color: #010f14;
  box-shadow: inset 0 -4px 0 rgba(0, 177, 117, 0.2);
}

.nav-tabs .nav-link.active {
  color: #00b175;
  box-shadow: inset 0 -4px 0 #00b175;
  border-color: transparent;
}

.nav-pills .nav-link {
  padding: 8px 15px;
  font-weight: 700;
  color: #023346;
  border-radius: 10px;
}

.nav-pills .nav-link:hover {
  background: rgba(2, 51, 70, 0.04);
}

.alert {
  border-width: 0 0 2px;
  box-shadow: 0 3px 15px -10px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
}

.alert-success {
  background-color: #f2fff5;
  border-color: rgba(0, 101, 50, 0.4);
  color: #006532;
}

.alert-warning {
  background-color: #fffdf4;
  border-color: rgba(172, 100, 23, 0.4);
  color: #ac6417;
}

.alert-danger {
  background-color: snow;
  border-color: rgba(178, 38, 63, 0.4);
  color: #b2263f;
}

.label {
  display: inline-block;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
  padding: 0.25em 0.5em;
}

.label-primary {
  background-color: #009fc1;
}

.label-success {
  background-color: #00b175;
}

.label-danger {
  background-color: #f25a3e;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 3px 7px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  vertical-align: middle;
  white-space: nowrap;
  text-align: center;
  background-color: #465152;
  border-radius: 10px;
}

.breadcrumb {
  padding: 8px 16px;
  margin-bottom: 20px;
  list-style: none;
  background-color: #eff3f3;
  border-radius: 8px;
}

.pagination .page-link {
  color: #023346;
  border: 1px solid #cdd4d4;
}

.pagination .page-link:hover {
  color: #006075;
  background-color: #f8f9f9;
  border-color: #bfc8c8;
}

.popup-panel.popup-modal {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.popup-panel.popup-modal .popup-header {
  margin-bottom: 0;
  padding: 24px 32px 12px;
}

.popup-panel.popup-modal .popup-body {
  padding: 0 32px 32px;
}

.popup-panel.popup-modal .popup-footer {
  padding: 12px 32px 24px;
}

.mega-menu {
  border-color: var(--sp-border);
  box-shadow: 0 16px 36px rgba(2, 51, 70, 0.18);
}

.menu-group h6 {
  color: var(--sp-muted);
}

.menu-link {
  color: var(--sp-text);
}

.menu-link:hover {
  color: var(--sp-primary);
}

.menu-strip {
  background: #eaf7f8;
  border-color: rgba(0, 159, 193, 0.2);
}

.menu-strip a {
  color: var(--sp-primary);
}

.websites-toast,
.help-widget,
.popup-modal,
.websites-modal,
.floating-toast {
  border-color: var(--sp-border);
  box-shadow: var(--sp-shadow);
}

.side-tab {
  background: #f8f9f9;
  border-color: var(--sp-border);
  color: var(--sp-text);
}

.side-tab:hover {
  background: #eff3f3;
}

/* --- Main page styling (from /Users/maksim/Downloads/main.min.css) --- */
:root {
  --sp-primary: #009fc1;
  --sp-secondary: #31b58e;
  --sp-danger: #f65858;
  --sp-warning: #f0ad4e;
  --sp-bg: #ffffff;
  --sp-panel: #ffffff;
  --sp-border: #e6ecec;
  --sp-muted: #5c6a70;
  --sp-text: #000000;
  --sp-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  --sp-shadow-soft: 13px 17px 70px rgba(0, 0, 0, 0.08);

  --pf-bg: var(--sp-bg);
  --pf-ink: var(--sp-text);
  --pf-muted: var(--sp-muted);
  --pf-border: var(--sp-border);
  --pf-shadow: var(--sp-shadow);
  --pf-shadow-soft: var(--sp-shadow-soft);
  --pf-purple: var(--sp-primary);
  --pf-purple-dark: #008aa8;
  --pf-teal: var(--sp-secondary);
  --pf-pink: var(--sp-danger);
}

.pf-body {
  background: #ffffff;
  color: var(--sp-text);
}

h1 {
  font-size: 48px;
  line-height: 1.25;
}

h2 {
  font-size: 28px;
  line-height: 1.2;
}

h3 {
  font-size: 36px;
  line-height: 1.3;
}

h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}

.display-4 {
  font-size: 48px;
  line-height: 1.25;
}

.eyebrow {
  color: #075b6a;
  letter-spacing: 0.14em;
}

.section-title {
  color: #000000;
}

.section-lead,
.lead {
  color: var(--sp-muted);
}

.section-pad.alt {
  background: #f2f5f5;
}

.topbar {
  background: #009fc1;
  color: #ffffff;
}

.topbar a {
  color: #ffffff;
}

.btn-primary {
  background-color: #009fc1;
  border-color: #009fc1;
  box-shadow: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #008aa8;
  border-color: #008aa8;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #009fc1;
  border-color: #009fc1;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05), 0 0 0 2px rgba(102, 175, 233, 0.2);
}

.btn-success {
  background-color: #31b58e;
  border-color: #31b58e;
  color: #ffffff;
}

.btn-success:hover,
.btn-success:focus {
  background-color: #2ca17e;
  border-color: #2ca17e;
}

.btn-success:active,
.btn-success.active {
  background-color: #31b58e;
  border-color: #31b58e;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05), 0 0 0 2px rgba(49, 193, 120, 0.2);
}

.btn-danger {
  background-color: #f65858;
  border-color: #f65858;
  color: #ffffff;
}

.btn-danger:hover,
.btn-danger:focus {
  background-color: #ec4949;
  border-color: #ec4949;
}

.btn-danger:active,
.btn-danger.active {
  background-color: #f65858;
  border-color: #f65858;
  box-shadow: inset 0 1px 1px rgba(246, 88, 88, 0.3), 0 0 0 2px rgba(246, 88, 88, 0.3);
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-dark {
  background-color: transparent;
  color: #009fc1;
  border-color: #009fc1;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
  color: #ffffff;
  background-color: #009fc1;
  border-color: #009fc1;
}

.hero--violet {
  background: linear-gradient(180deg, #009fc1 0%, #008aa8 100%);
  color: #ffffff;
}

.hero--violet .display-4 {
  color: #ffffff;
}

.hero--violet .lead {
  color: rgba(255, 255, 255, 0.9);
}

.hero--violet .chip {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero--violet .btn-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #009fc1;
}

.hero--violet .btn-primary:hover,
.hero--violet .btn-primary:focus {
  background-color: #f2f5f5;
  border-color: #f2f5f5;
  color: #009fc1;
}

.hero--violet .btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero--violet .btn-outline-light:hover,
.hero--violet .btn-outline-light:focus {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* Force hero typography to match public SendPulse look (override more specific rules) */
.hero.hero--violet {
  background: linear-gradient(180deg, #009fc1 0%, #008aa8 100%);
  color: #ffffff;
}

.hero.hero--violet .display-4,
.hero.hero--violet .lead,
.hero.hero--violet .eyebrow,
.hero.hero--violet h1,
.hero.hero--violet p {
  color: #ffffff;
}

.hero.hero--violet .eyebrow {
  letter-spacing: 0.14em;
  opacity: 0.9;
}

.hero.hero--violet .chip {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero.hero--violet .btn-primary {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #009fc1;
}

.hero.hero--violet .btn-primary:hover,
.hero.hero--violet .btn-primary:focus {
  background-color: #f2f5f5;
  border-color: #f2f5f5;
  color: #009fc1;
}

.hero.hero--violet .btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero.hero--violet .btn-outline-light:hover,
.hero.hero--violet .btn-outline-light:focus {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

/* --- Public SendPulse hero/header polish (override teal) --- */
.topbar {
  background: linear-gradient(90deg, #0b0520 0%, #1a0d3a 45%, #2f1570 100%);
  color: #ffffff;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.topbar a {
  color: #ffffff;
}

.topbar-pill {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.pf-navbar.pf-navbar--purple {
  background: linear-gradient(90deg, #3a1aa7 0%, #4f26c6 45%, #6031e6 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(18, 10, 60, 0.35);
}

.pf-navbar.pf-navbar--purple .navbar-brand,
.pf-navbar.pf-navbar--purple .nav-link {
  color: #ffffff;
}

.pf-navbar.pf-navbar--purple .nav-link:hover,
.pf-navbar.pf-navbar--purple .nav-link:focus {
  background: rgba(255, 255, 255, 0.14);
}

.pf-navbar.pf-navbar--purple .btn-link {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  padding: 0.4rem 0.9rem;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
}

.pf-navbar.pf-navbar--purple .btn-link:hover,
.pf-navbar.pf-navbar--purple .btn-link:focus {
  background: rgba(255, 255, 255, 0.16);
}

.pf-navbar.pf-navbar--purple .btn-primary {
  background: #ff6a5f;
  border-color: #ff6a5f;
  box-shadow: 0 12px 24px rgba(255, 106, 95, 0.35);
}

.pf-navbar.pf-navbar--purple .btn-primary:hover {
  background: #ff5b4d;
  border-color: #ff5b4d;
}

.hero.hero--violet {
  background: radial-gradient(circle at 12% 8%, rgba(125, 98, 255, 0.6), transparent 48%),
    radial-gradient(circle at 80% 18%, rgba(102, 214, 255, 0.45), transparent 42%),
    linear-gradient(180deg, #3a1aa7 0%, #4f26c6 40%, #6031e6 100%);
  color: #ffffff;
  padding-top: 7rem;
  padding-bottom: 5.5rem;
}

.hero.hero--violet::after {
  background: radial-gradient(circle, rgba(93, 80, 255, 0.35), transparent 65%);
}

.hero.hero--violet .display-4 {
  color: #ffffff;
  text-shadow: 0 12px 32px rgba(18, 10, 60, 0.35);
}

.hero.hero--violet .lead {
  color: rgba(255, 255, 255, 0.88);
}

.hero.hero--violet .chip {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.35);
  color: #ffffff;
}

.hero.hero--violet .btn-primary {
  background: #ff6a5f;
  border-color: #ff6a5f;
  box-shadow: 0 12px 24px rgba(255, 106, 95, 0.35);
  color: #ffffff;
}

.hero.hero--violet .btn-primary:hover,
.hero.hero--violet .btn-primary:focus {
  background: #ff5b4d;
  border-color: #ff5b4d;
  color: #ffffff;
}

.hero.hero--violet .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: #ffffff;
  background: transparent;
}

.hero.hero--violet .btn-outline-light:hover,
.hero.hero--violet .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.hero.hero--violet .hero-metrics > div {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(6px);
}

.hero.hero--violet .hero-card {
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 32px 80px rgba(15, 8, 48, 0.4);
}

.hero.hero--violet .step {
  background: #ffffff;
  border-color: rgba(93, 80, 255, 0.12);
}

.hero.hero--violet .step span {
  background: #5a34d6;
}

.hero.hero--violet .floating-card {
  border-left-color: #ff6a5f;
}

/* --- Public SendPulse popup styling (1:1 look) --- */
.popup-overlay {
  background: rgba(0, 0, 0, 0.05);
  z-index: 900;
}

.popup-panel,
.websites-modal,
.websites-toast,
.help-card {
  background: #ffffff;
  border: 1px solid #f2f2f2;
  border-radius: 10px;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(31, 31, 87, 0.2);
  font-size: 15px;
  line-height: 1.4;
}

.popup-panel {
  width: 260px;
  padding: 14px 16px;
  z-index: 910;
}

.popup-panel.drawer {
  width: 300px;
  top: 90px;
}

.popup-panel.popup-modal {
  width: min(420px, 92vw);
  padding: 18px 20px;
  z-index: 920;
}

.popup-header {
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}

.popup-close,
.websites-modal-close,
.websites-toast-close,
.help-close {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 0;
  background: #f5f5f7;
  color: #5c6a70;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.popup-body {
  gap: 10px;
}

.popup-item {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 10px;
}

.popup-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.popup-footer {
  margin-top: 12px;
}

.popup-link,
.websites-toast a {
  color: #009fc1;
  text-decoration: none;
  font-weight: 600;
}

.popup-link:hover,
.websites-toast a:hover {
  color: #075b6a;
}

.popup-panel.popup-login {
  top: 120px;
  right: 140px;
  bottom: auto;
  width: 300px;
  padding: 14px 16px 16px;
  border-radius: 8px;
  z-index: 920;
}

.popup-panel.popup-login::before,
.popup-panel.popup-login::after {
  content: "";
  position: absolute;
  right: 46px;
  width: 0;
  height: 0;
  border-style: solid;
}

.popup-panel.popup-login::before {
  top: -8px;
  border-width: 0 8px 8px;
  border-color: transparent transparent #f2f2f2 transparent;
}

.popup-panel.popup-login::after {
  top: -7px;
  border-width: 0 7px 7px;
  border-color: transparent transparent #ffffff transparent;
}

.popup-login-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f2f2f2;
}

.popup-login-title {
  font-size: 15px;
  font-weight: 700;
  color: #1f2a37;
}

.popup-login-body {
  display: grid;
  gap: 10px;
}

.login-field {
  display: flex;
  align-items: center;
  border: 1px solid #e3e7ee;
  background: #f7f8fb;
  border-radius: 6px;
  overflow: hidden;
}

.login-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef1f6;
  border-right: 1px solid #e3e7ee;
  color: #8b95a1;
  font-weight: 700;
  font-size: 12px;
}

.login-input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 8px 12px;
  font-size: 14px;
  color: #1f2a37;
  outline: none;
}

.login-btn {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 10px 12px;
  background: #ff5a5f;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.08);
}

.login-btn:hover {
  background: #f14f54;
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #6a7380;
}

.login-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.login-check input {
  accent-color: #2f71ff;
}

.login-link {
  color: #009fc1;
  text-decoration: none;
  font-weight: 600;
}

.login-divider {
  position: relative;
  text-align: center;
  font-size: 12px;
  color: #9aa3af;
  margin: 2px 0 4px;
}

.login-divider::before,
.login-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 44%;
  height: 1px;
  background: #eef1f6;
}

.login-divider::before {
  left: 0;
}

.login-divider::after {
  right: 0;
}

.login-social {
  width: 100%;
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #e3e7ee;
  background: #ffffff;
  color: #4b5563;
}

.login-social .social-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.login-facebook {
  background: #1877f2;
  border-color: #1877f2;
  color: #ffffff;
}

.login-facebook .social-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.login-google {
  background: #ffffff;
  color: #5f6368;
}

.login-google .social-icon {
  background: #f2f4f8;
  color: #4285f4;
}

@media (max-width: 768px) {
  .popup-panel.popup-login {
    right: 16px;
    left: 16px;
    width: auto;
    top: 90px;
  }

  .popup-panel.popup-login::before,
  .popup-panel.popup-login::after {
    right: 24px;
  }
}

.help-widget {
  right: 20px;
  bottom: 20px;
  z-index: 930;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.help-toggle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #009fc1;
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(31, 31, 87, 0.2);
}

.help-card {
  width: 280px;
  padding: 14px 16px;
  backdrop-filter: none;
}

.help-card-header {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.websites-toast {
  padding: 12px 16px;
  z-index: 915;
}

.websites-modal {
  padding: 16px 18px;
  z-index: 920;
}
