/* ===== RSG RESET & BASE ===== */
.rsg-tool-container *,
.rsg-tool-container *::before,
.rsg-tool-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.rsg-tool-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
  color: #FFFFFF;
}

/* ===== CARD ===== */
.rsg-card {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 14px;
  padding: 24px;
  margin-bottom: 16px;
}

.rsg-card-title {
  font-size: 15px;
  font-weight: 600;
  color: #8899AA;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rsg-card-title svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== GRID LAYOUT ===== */
.rsg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.rsg-field-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #8899AA;
  margin-bottom: 8px;
}

/* ===== LENGTH INPUT + BAR ===== */
.rsg-length-num {
  width: 100%;
  height: 42px;
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-align: center;
  outline: none;
}

.rsg-length-num:focus {
  border-color: #8B5CF6;
}

.rsg-length-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(55,75,100,0.3);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}

.rsg-length-bar-fill {
  height: 100%;
  border-radius: 2px;
  width: 0%;
  transition: width 0.3s ease, background 0.3s ease;
}

.rsg-range-hint {
  font-size: 11px;
  color: #5A7090;
  margin-top: 6px;
}

/* ===== COUNT STEPPER ===== */
.rsg-stepper {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(55,75,100,0.3);
  background: #0D1526;
  width: fit-content;
}

.rsg-stepper-btn {
  width: 38px;
  height: 38px;
  background: transparent;
  border: none;
  color: #8899AA;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}

.rsg-stepper-btn:hover {
  background: rgba(139,92,246,0.15);
  color: #FFFFFF;
}

.rsg-stepper input {
  width: 56px;
  height: 38px;
  background: transparent;
  border: none;
  border-left: 1px solid rgba(55,75,100,0.3);
  border-right: 1px solid rgba(55,75,100,0.3);
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  text-align: center;
  outline: none;
  -moz-appearance: textfield;
}

.rsg-stepper input::-webkit-outer-spin-button,
.rsg-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ===== CHARACTER SET CHECKBOXES ===== */
.rsg-charset-title {
  font-size: 13px;
  font-weight: 500;
  color: #8899AA;
  margin-bottom: 10px;
}

.rsg-charset-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.rsg-check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0D1526;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: border-color 0.15s;
  border: 1px solid transparent;
  user-select: none;
}

.rsg-check-row:hover {
  border-color: rgba(139,92,246,0.3);
}

.rsg-check-row input[type="checkbox"] {
  display: none;
}

.rsg-checkmark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid rgba(55,75,100,0.5);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, border-color 0.15s;
}

.rsg-check-row input[type="checkbox"]:checked + .rsg-checkmark {
  background: #8B5CF6;
  border-color: #8B5CF6;
}

.rsg-checkmark svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  transition: opacity 0.15s;
}

.rsg-check-row input[type="checkbox"]:checked + .rsg-checkmark svg {
  opacity: 1;
}

.rsg-check-label {
  font-size: 13px;
  color: #FFFFFF;
  white-space: nowrap;
}

.rsg-check-count {
  font-size: 11px;
  color: #5A7090;
  margin-left: auto;
  white-space: nowrap;
}

/* Custom row full width */
.rsg-check-row-custom {
  grid-column: 1 / -1;
}

.rsg-custom-input {
  flex: 1;
  height: 32px;
  background: rgba(55,75,100,0.15);
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 6px;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 0 10px;
  outline: none;
  min-width: 0;
}

.rsg-custom-input:focus {
  border-color: #8B5CF6;
}

.rsg-custom-input:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* ===== TOGGLE OPTIONS ===== */
.rsg-options-title {
  font-size: 13px;
  font-weight: 500;
  color: #8899AA;
  margin-bottom: 10px;
  margin-top: 20px;
}

.rsg-toggles {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rsg-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #0D1526;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  user-select: none;
}

.rsg-toggle-track {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: rgba(55,75,100,0.3);
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}

.rsg-toggle-track.rsg-on {
  background: #8B5CF6;
}

.rsg-toggle-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.2s;
}

.rsg-toggle-track.rsg-on .rsg-toggle-thumb {
  transform: translateX(18px);
}

.rsg-toggle-label {
  font-size: 13px;
  color: #FFFFFF;
}

.rsg-toggle-desc {
  font-size: 11px;
  color: #5A7090;
  margin-left: auto;
}

/* ===== PRESETS ===== */
.rsg-presets-title {
  font-size: 13px;
  font-weight: 500;
  color: #8899AA;
  margin-bottom: 10px;
  margin-top: 20px;
}

.rsg-presets-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rsg-preset-btn {
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 20px;
  color: #8899AA;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  padding: 7px 16px;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.rsg-preset-btn:hover {
  border-color: #8B5CF6;
  color: #FFFFFF;
}

.rsg-preset-btn.rsg-active {
  background: rgba(139,92,246,0.15);
  border-color: #8B5CF6;
  color: #FFFFFF;
}

.rsg-preset-btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ===== UUID NOTICE ===== */
.rsg-uuid-notice {
  font-size: 12px;
  color: #8B5CF6;
  margin-top: 8px;
  display: none;
}

.rsg-uuid-notice.rsg-visible {
  display: block;
}

/* ===== ACTION BUTTONS ===== */
.rsg-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.rsg-btn-generate {
  background: #8B5CF6;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.15s;
}

.rsg-btn-generate:hover {
  background: #7C3AED;
}

.rsg-btn-generate:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.rsg-btn-generate svg {
  width: 18px;
  height: 18px;
}

.rsg-btn-clear {
  background: transparent;
  color: #8899AA;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s, color 0.15s;
}

.rsg-btn-clear:hover {
  border-color: #EF4444;
  color: #EF4444;
}

.rsg-btn-clear svg {
  width: 16px;
  height: 16px;
}

/* ===== STRENGTH INDICATOR ===== */
.rsg-strength {
  display: none;
}

.rsg-strength.rsg-visible {
  display: block;
}

.rsg-strength-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.rsg-strength-label {
  font-size: 14px;
  font-weight: 600;
}

.rsg-strength-bits {
  font-size: 13px;
  color: #8899AA;
}

.rsg-strength-bar {
  width: 100%;
  height: 8px;
  background: rgba(55,75,100,0.3);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.rsg-strength-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease, background 0.4s ease;
  width: 0%;
}

.rsg-strength-meta {
  font-size: 12px;
  color: #5A7090;
}

/* ===== OUTPUT AREA ===== */
.rsg-output {
  display: none;
}

.rsg-output.rsg-visible {
  display: block;
}

.rsg-output-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rsg-string-card {
  background: #0D1526;
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(55,75,100,0.3);
  position: relative;
}

.rsg-string-card:first-child {
  border-radius: 10px 10px 0 0;
}

.rsg-string-card:last-child {
  border-radius: 0 0 10px 10px;
}

.rsg-string-card:only-child {
  border-radius: 10px;
}

.rsg-string-card + .rsg-string-card {
  border-top: none;
}

.rsg-string-index {
  font-size: 11px;
  color: #5A7090;
  flex-shrink: 0;
  min-width: 24px;
  padding-top: 2px;
}

.rsg-string-text {
  font-family: 'SFMono-Regular', 'Consolas', 'Liberation Mono', 'Menlo', monospace;
  font-size: 15px;
  letter-spacing: 1px;
  color: #FFFFFF;
  word-break: break-all;
  flex: 1;
  line-height: 1.5;
}

.rsg-copy-single {
  background: transparent;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 6px;
  color: #8899AA;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  padding: 4px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

.rsg-copy-single:hover {
  border-color: #8B5CF6;
  color: #FFFFFF;
}

.rsg-copy-single svg {
  width: 12px;
  height: 12px;
}

/* Copy All button */
.rsg-copy-all-wrap {
  display: none;
  margin-top: 12px;
}

.rsg-copy-all-wrap.rsg-visible {
  display: flex;
}

.rsg-btn-copy-all {
  background: transparent;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 10px;
  color: #8899AA;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s, color 0.15s;
}

.rsg-btn-copy-all:hover {
  border-color: #8B5CF6;
  color: #FFFFFF;
}

.rsg-btn-copy-all svg {
  width: 16px;
  height: 16px;
}

/* ===== EMPTY STATE ===== */
.rsg-empty-state {
  text-align: center;
  padding: 40px 20px;
  color: #5A7090;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rsg-empty-icon {
  font-size: 32px;
  opacity: 0.5;
}

/* ===== TOAST ===== */
#rsg-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1E293B;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4,0,0.2,1), transform 0.3s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  align-items: center;
  gap: 8px;
}

#rsg-toast.rsg-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

#rsg-toast svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== WARNING ===== */
.rsg-warning {
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px;
  color: #F59E0B;
  margin-top: 8px;
  display: none;
}

.rsg-warning.rsg-visible {
  display: block;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .rsg-row {
    grid-template-columns: 1fr;
  }
  .rsg-charset-grid {
    grid-template-columns: 1fr;
  }
  .rsg-presets-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .rsg-actions {
    flex-direction: column;
  }
  .rsg-btn-generate,
  .rsg-btn-clear {
    width: 100%;
    justify-content: center;
  }
}

/* === WIDGET 1: HERO === */
.rsg-hero-section{text-align:center;padding:48px 20px 32px;max-width:800px;margin:0 auto}
.rsg-hero-badge{display:inline-flex;align-items:center;gap:6px;background:rgba(139,92,246,0.1);border:1px solid rgba(139,92,246,0.3);border-radius:20px;padding:6px 16px;font-size:13px;color:#8B5CF6;font-family:'DM Sans',sans-serif;margin-bottom:20px}
.rsg-hero-badge svg{width:14px;height:14px;fill:#8B5CF6}
.rsg-hero-title{font-family:'Laila',serif;font-size:clamp(28px,4vw,42px);font-weight:700;color:#FFFFFF;margin:0 0 12px;line-height:1.2}
.rsg-hero-title span{color:#8B5CF6}
.rsg-hero-sub{font-family:'DM Sans',sans-serif;font-size:15px;color:#8899AA;max-width:620px;margin:0 auto;line-height:1.6}

/* === WIDGET 3: TRUST === */
.rsg-trust-section{padding:40px 20px;max-width:900px;margin:0 auto}
.rsg-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.rsg-trust-value{font-family:'DM Sans',sans-serif;font-size:clamp(28px,3.5vw,38px);font-weight:700;color:#FFFFFF;line-height:1}
.rsg-trust-value span{color:#8B5CF6}
.rsg-trust-label{font-size:13px;color:#5A7090;margin-top:6px;font-family:'DM Sans',sans-serif}
@media(max-width:600px){.rsg-trust-grid{grid-template-columns:repeat(2,1fr);gap:20px}}

/* === WIDGET 4: HOW IT WORKS === */
.rsg-hiw-section{padding:60px 20px;max-width:900px;margin:0 auto}
.rsg-hiw-header{text-align:center;margin-bottom:48px}
.rsg-hiw-label{font-size:13px;color:#8B5CF6;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px;font-family:'DM Sans',sans-serif}
.rsg-hiw-title{font-family:'DM Sans',sans-serif;font-size:clamp(24px,3.5vw,34px);font-weight:700;color:#FFFFFF;margin:0 0 10px}
.rsg-hiw-sub{font-size:15px;color:#8899AA;max-width:560px;margin:0 auto;line-height:1.6;font-family:'DM Sans',sans-serif}
.rsg-hiw-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:16px;padding:48px 32px;position:relative;overflow:hidden}
.rsg-hiw-card::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,#8B5CF6,#EC4899,#F59E0B)}
.rsg-hiw-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;text-align:center}
.rsg-hiw-step{display:flex;flex-direction:column;align-items:center;gap:10px}
.rsg-hiw-num{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:18px;font-weight:700;font-family:'DM Sans',sans-serif}
.rsg-hiw-num-purple{background:rgba(139,92,246,0.12);color:#8B5CF6}
.rsg-hiw-num-blue{background:rgba(59,130,246,0.12);color:#3B82F6}
.rsg-hiw-num-green{background:rgba(16,185,129,0.12);color:#10B981}
.rsg-hiw-step-title{font-size:15px;font-weight:700;color:#FFFFFF;font-family:'DM Sans',sans-serif}
.rsg-hiw-step-desc{font-size:13px;color:#8899AA;line-height:1.5;font-family:'DM Sans',sans-serif}
.rsg-hiw-cta{display:inline-block;background:#8B5CF6;color:#FFFFFF;padding:12px 28px;border-radius:10px;font-family:'DM Sans',sans-serif;font-size:15px;font-weight:600;text-decoration:none;transition:background 0.2s,transform 0.2s}
.rsg-hiw-cta:hover{background:#7C3AED;transform:translateY(-1px)}
@media(max-width:768px){.rsg-hiw-steps{grid-template-columns:1fr;gap:24px}}

/* === WIDGET 5: SEO === */
.rsg-engage-section{padding:60px 20px;max-width:1000px;margin:0 auto;font-family:'DM Sans',sans-serif}
.rsg-engage-grid{display:grid;grid-template-columns:1fr 300px;gap:48px}
.rsg-engage-main h2{font-size:clamp(22px,3vw,30px);font-weight:700;color:#FFFFFF;margin:0 0 16px;line-height:1.3}
.rsg-engage-main h3{font-size:20px;font-weight:700;color:#FFFFFF;margin:40px 0 16px}
.rsg-engage-main p{color:#C8D8E8;font-size:15px;line-height:1.7;margin:0 0 14px}
.rsg-engage-main a{color:#8B5CF6;text-decoration:none}
.rsg-engage-main a:hover{text-decoration:underline}
.rsg-engage-main code{background:rgba(139,92,246,0.1);color:#8B5CF6;padding:2px 6px;border-radius:4px;font-size:13px}
.rsg-engage-table-wrap{overflow-x:auto;margin-bottom:16px}
.rsg-engage-table{width:100%;border-collapse:collapse;font-size:13px}
.rsg-engage-table th{background:rgba(139,92,246,0.08);color:#FFFFFF;padding:10px 14px;text-align:left;font-weight:600;border-bottom:1px solid rgba(55,75,100,0.3)}
.rsg-engage-table td{padding:10px 14px;border-bottom:1px solid rgba(55,75,100,0.15);color:#C8D8E8}
.rsg-engage-benefits{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px;margin-bottom:16px}
.rsg-engage-benefit-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px;transition:transform 0.25s,box-shadow 0.25s}
.rsg-engage-benefit-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(139,92,246,0.08)}
.rsg-engage-benefit-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.rsg-engage-benefit-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.rsg-engage-benefit-desc{font-size:13px;color:#8899AA;line-height:1.5}
.rsg-engage-usecases{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.rsg-engage-usecase-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px;transition:transform 0.25s}
.rsg-engage-usecase-card:hover{transform:translateY(-2px)}
.rsg-engage-usecase-icon{font-size:24px;margin-bottom:10px}
.rsg-engage-usecase-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.rsg-engage-usecase-desc{font-size:13px;color:#8899AA;line-height:1.5}
.rsg-engage-sidebar{position:sticky;top:100px;align-self:start;display:flex;flex-direction:column;gap:20px}
.rsg-engage-cta-box{background:linear-gradient(135deg,rgba(139,92,246,0.12),rgba(236,72,153,0.08));border:1px solid rgba(139,92,246,0.3);border-radius:14px;padding:24px;text-align:center}
.rsg-engage-cta-title{font-size:18px;font-weight:700;color:#FFFFFF;margin-bottom:8px}
.rsg-engage-cta-text{font-size:13px;color:#8899AA;line-height:1.5;margin:0 0 16px}
.rsg-engage-cta-btn{display:inline-block;background:#8B5CF6;color:#FFFFFF;padding:10px 24px;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:background 0.2s,transform 0.2s}
.rsg-engage-cta-btn:hover{background:#7C3AED;transform:translateY(-1px)}
.rsg-engage-info-box,.rsg-engage-nav-box,.rsg-engage-related-box{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px}
.rsg-engage-info-title,.rsg-engage-nav-title,.rsg-engage-related-title{font-size:14px;font-weight:700;color:#FFFFFF;margin-bottom:12px;text-transform:uppercase;letter-spacing:0.5px}
.rsg-engage-info-list{list-style:none;padding:0;margin:0}
.rsg-engage-info-list li{font-size:13px;color:#8899AA;padding:6px 0;border-bottom:1px solid rgba(55,75,100,0.15)}
.rsg-engage-info-list li:last-child{border-bottom:none}
.rsg-engage-info-list strong{color:#C8D8E8}
.rsg-engage-nav-list{list-style:none;padding:0;margin:0}
.rsg-engage-nav-list li{padding:5px 0}
.rsg-engage-nav-list a{font-size:13px;color:#8B5CF6;text-decoration:none}
.rsg-engage-nav-list a:hover{text-decoration:underline}
.rsg-engage-related-link{display:flex;align-items:center;gap:10px;padding:8px 0;font-size:13px;color:#C8D8E8;text-decoration:none;border-bottom:1px solid rgba(55,75,100,0.15)}
.rsg-engage-related-link:last-child{border-bottom:none}
.rsg-engage-related-link:hover{color:#8B5CF6}
.rsg-engage-related-icon{width:32px;height:32px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:16px;flex-shrink:0}
@media(max-width:768px){.rsg-engage-grid{grid-template-columns:1fr}.rsg-engage-sidebar{position:static}.rsg-engage-usecases{grid-template-columns:1fr}}

/* === WIDGET 6: FAQ === */
.rsg-faq-section{padding:60px 20px;max-width:800px;margin:0 auto;font-family:'DM Sans',sans-serif}
.rsg-faq-header{text-align:center;margin-bottom:40px}
.rsg-faq-label{font-size:13px;color:#8B5CF6;text-transform:uppercase;letter-spacing:2px;font-weight:600;margin-bottom:8px}
.rsg-faq-title{font-size:clamp(24px,3.5vw,34px);font-weight:700;color:#FFFFFF;margin:0}
.rsg-faq-list{display:flex;flex-direction:column;gap:10px}
.rsg-faq-item{border:1px solid rgba(55,75,100,0.3);border-radius:12px;overflow:hidden}
.rsg-faq-q{width:100%;display:flex;justify-content:space-between;align-items:center;padding:16px 20px;background:#111B2E;border:none;color:#FFFFFF;font-size:15px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;text-align:left}
.rsg-faq-q:hover{background:rgba(139,92,246,0.04)}
.rsg-faq-icon{font-size:20px;color:#8B5CF6;transition:transform 0.3s;flex-shrink:0;margin-left:12px}
.rsg-faq-item.active .rsg-faq-icon{transform:rotate(45deg)}
.rsg-faq-a{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.3s ease;padding:0 20px}
.rsg-faq-item.active .rsg-faq-a{max-height:300px;padding:0 20px 16px}
.rsg-faq-a p{font-size:14px;color:#8899AA;line-height:1.6;margin:0}
.rsg-faq-a code{background:rgba(139,92,246,0.1);color:#8B5CF6;padding:2px 6px;border-radius:4px;font-size:13px}

/* === WIDGET 7: CTA === */
.rsg-cta-section{text-align:center;padding:60px 20px;max-width:600px;margin:0 auto}
.rsg-cta-title{font-family:'DM Sans',sans-serif;font-size:clamp(24px,3.5vw,34px);font-weight:700;color:#FFFFFF;margin:0 0 12px}
.rsg-cta-sub{font-size:15px;color:#8899AA;margin:0 0 24px;line-height:1.6;font-family:'DM Sans',sans-serif}
.rsg-cta-btn{display:inline-block;background:#8B5CF6;color:#FFFFFF;padding:14px 32px;border-radius:10px;font-family:'DM Sans',sans-serif;font-size:16px;font-weight:600;text-decoration:none;transition:background 0.2s,transform 0.2s}
.rsg-cta-btn:hover{background:#7C3AED;transform:translateY(-2px)}

/* === BREADCRUMB === */
.rank-math-breadcrumb{max-width:1000px;margin:0 auto;padding:12px 20px;font-family:'DM Sans',sans-serif;font-size:13px}
.rank-math-breadcrumb a{color:#5A7090;text-decoration:none}
.rank-math-breadcrumb a:hover{color:#8B5CF6}
.rank-math-breadcrumb .separator{color:#374B64;margin:0 8px}
.rank-math-breadcrumb .last{color:#8899AA}






