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

.tsg-tool-container *, .tsg-tool-container *::before, .tsg-tool-container *::after {
  box-sizing: border-box;
}

.tsg-input {
  width: 100%;
  font-size: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(55,75,100,0.3);
  border-left: 3px solid #8B5CF6;
  border-radius: 10px;
  background: #111B2E;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.25s ease;
}

.tsg-input::placeholder {
  color: #5A7090;
}

.tsg-input:focus {
  border-top-color: rgba(139,92,246,0.5);
  border-right-color: rgba(139,92,246,0.5);
  border-bottom-color: rgba(139,92,246,0.5);
  border-left-color: #8B5CF6;
}

/* Options Panel */
.tsg-options-panel {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.tsg-option-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tsg-option-label {
  font-size: 13px;
  color: #8899AA;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

/* Custom Select Dropdown */
.tsg-select-wrapper {
  position: relative;
}

.tsg-select-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.4);
  border-radius: 8px;
  padding: 6px 12px;
  color: #C8D8E8;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  min-width: 110px;
  justify-content: space-between;
}

.tsg-select-btn:hover {
  border-color: rgba(139,92,246,0.4);
}

.tsg-select-btn:focus {
  outline: 2px solid rgba(139,92,246,0.5);
  outline-offset: 1px;
}

.tsg-select-arrow {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}

.tsg-select-arrow.tsg-open {
  transform: rotate(180deg);
}

.tsg-select-list {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 100%;
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.4);
  border-radius: 8px;
  padding: 4px;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.tsg-select-list.tsg-visible {
  display: block;
}

.tsg-select-option {
  padding: 7px 12px;
  font-size: 13px;
  color: #C8D8E8;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}

.tsg-select-option:hover,
.tsg-select-option.tsg-focused {
  background: rgba(139,92,246,0.15);
  color: #FFFFFF;
}

.tsg-select-option.tsg-selected {
  color: #8B5CF6;
  font-weight: 600;
}

/* Toggle Switch */
.tsg-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  display: inline-block;
}

.tsg-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.tsg-toggle-track {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(55,75,100,0.4);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.tsg-toggle input:checked + .tsg-toggle-track {
  background: #8B5CF6;
}

.tsg-toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #FFFFFF;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.25s ease;
}

.tsg-toggle input:checked + .tsg-toggle-track::after {
  transform: translateX(20px);
}

.tsg-toggle input:focus-visible + .tsg-toggle-track {
  outline: 2px solid rgba(139,92,246,0.5);
  outline-offset: 2px;
}

/* Max Length Input */
.tsg-maxlength-input {
  width: 80px;
  padding: 6px 10px;
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.4);
  border-radius: 8px;
  color: #C8D8E8;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
  -moz-appearance: textfield;
}

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

.tsg-maxlength-input::placeholder {
  color: #5A7090;
}

.tsg-maxlength-input:focus {
  border-color: rgba(139,92,246,0.4);
}

/* Preview Card */
.tsg-preview-card {
  background: #0D1526;
  border: 1px solid rgba(139,92,246,0.3);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  min-height: 52px;
}

.tsg-preview-prefix {
  color: #5A7090;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 15px;
  user-select: none;
  -webkit-user-select: none;
  flex-shrink: 0;
}

.tsg-preview-text {
  color: #10B981;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 15px;
  word-break: break-all;
  user-select: text;
  -webkit-user-select: text;
  cursor: text;
}

.tsg-preview-text.tsg-placeholder {
  color: #374B64;
  user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

/* Stats Row */
.tsg-stats-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 12px;
  color: #5A7090;
  font-family: 'DM Sans', sans-serif;
  flex-wrap: wrap;
}

.tsg-stat-separator {
  color: #374B64;
}

/* Action Buttons */
.tsg-actions-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.tsg-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, opacity 0.2s ease, transform 0.15s ease;
}

.tsg-btn:active {
  transform: scale(0.97);
}

.tsg-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.tsg-btn-primary {
  background: #8B5CF6;
  color: #FFFFFF;
}

.tsg-btn-primary:hover {
  background: #7C3AED;
}

.tsg-btn-primary.tsg-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tsg-btn-primary.tsg-disabled:hover {
  background: #8B5CF6;
}

.tsg-btn-primary.tsg-disabled:active {
  transform: none;
}

.tsg-btn-secondary {
  background: transparent;
  color: #8B5CF6;
  border: 1px solid rgba(139,92,246,0.4);
}

.tsg-btn-secondary:hover {
  background: rgba(139,92,246,0.1);
}

.tsg-btn-secondary.tsg-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.tsg-btn-secondary.tsg-disabled:hover {
  background: transparent;
}

.tsg-btn-secondary.tsg-disabled:active {
  transform: none;
}

.tsg-btn-ghost {
  background: transparent;
  color: #8899AA;
}

.tsg-btn-ghost:hover {
  background: rgba(55,75,100,0.2);
  color: #C8D8E8;
}

/* URL Preview Card */
.tsg-url-card {
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 12px;
  padding: 12px 16px;
  margin-top: 16px;
}

.tsg-url-label {
  font-size: 12px;
  color: #5A7090;
  margin-bottom: 8px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}

.tsg-url-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.tsg-url-prefix-input {
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 6px 0 0 6px;
  padding: 8px 10px;
  color: #8899AA;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  outline: none;
  width: 210px;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.tsg-url-prefix-input:focus {
  border-color: rgba(139,92,246,0.4);
}

.tsg-url-slug-display {
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.3);
  border-left: none;
  border-radius: 0 6px 6px 0;
  padding: 8px 10px;
  color: #C8D8E8;
  font-family: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Toast */
#tsg-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #10B981;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  z-index: 99999;
  box-shadow: 0 8px 24px rgba(16,185,129,0.25);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s cubic-bezier(0.34,1.56,0.64,1), visibility 0.4s;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

#tsg-toast.tsg-toast-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 768px) {
  .tsg-options-panel {
    gap: 14px;
  }
  .tsg-url-prefix-input {
    width: 160px;
  }
}

@media (max-width: 480px) {
  .tsg-tool-container {
    padding: 0 12px;
  }
  .tsg-options-panel {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
  }
  .tsg-option-group {
    width: 100%;
    justify-content: space-between;
  }
  .tsg-option-label {
    font-size: 12px;
  }
  .tsg-maxlength-input {
    width: 100%;
  }
  .tsg-actions-row {
    flex-direction: column;
  }
  .tsg-actions-row .tsg-btn {
    width: 100%;
    justify-content: center;
  }
  .tsg-url-row {
    flex-direction: column;
  }
  .tsg-url-prefix-input {
    width: 100%;
    border-radius: 6px 6px 0 0;
  }
  .tsg-url-slug-display {
    border-left: 1px solid rgba(55,75,100,0.3);
    border-top: none;
    border-radius: 0 0 6px 6px;
    width: 100%;
  }
}

/* === JETBRAINS MONO FONT LOAD NOTE ===
   Add this to Elementor > Custom Code > <head>:
   <link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
=== */

/* === WIDGET 1: HERO === */
.tsg-hero-section{text-align:center;padding:48px 20px 32px;max-width:800px;margin:0 auto}
.tsg-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}
.tsg-hero-badge svg{width:14px;height:14px;fill:#8B5CF6}
.tsg-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}
.tsg-hero-title span{color:#8B5CF6}
.tsg-hero-sub{font-family:'DM Sans',sans-serif;font-size:15px;color:#8899AA;max-width:600px;margin:0 auto;line-height:1.6}

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

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

/* === WIDGET 5: SEO / ENGAGE === */
.tsg-engage-section{padding:60px 20px;max-width:1000px;margin:0 auto;font-family:'DM Sans',sans-serif}
.tsg-engage-grid{display:grid;grid-template-columns:1fr 300px;gap:48px}
.tsg-engage-main h2{font-size:clamp(22px,3vw,30px);font-weight:700;color:#FFFFFF;margin:0 0 16px;line-height:1.3}
.tsg-engage-main h3{font-size:20px;font-weight:700;color:#FFFFFF;margin:40px 0 16px}
.tsg-engage-main p{color:#C8D8E8;font-size:15px;line-height:1.7;margin:0 0 14px}
.tsg-engage-main a{color:#8B5CF6;text-decoration:none}
.tsg-engage-main a:hover{text-decoration:underline}
.tsg-engage-table-wrap{overflow-x:auto;margin-bottom:16px}
.tsg-engage-table{width:100%;border-collapse:collapse;font-size:13px}
.tsg-engage-table th{background:rgba(139,92,246,0.08);color:#FFFFFF;padding:10px 12px;text-align:left;font-weight:600;border-bottom:1px solid rgba(55,75,100,0.3)}
.tsg-engage-table td{padding:10px 12px;border-bottom:1px solid rgba(55,75,100,0.15);color:#C8D8E8;font-family:'JetBrains Mono','Fira Code','Consolas',monospace;font-size:12px}
.tsg-engage-table td:first-child{font-family:'DM Sans',sans-serif;font-size:13px;color:#FFFFFF;font-weight:500}
.tsg-engage-benefits{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-bottom:16px}
.tsg-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}
.tsg-engage-benefit-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(139,92,246,0.08)}
.tsg-engage-benefit-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.tsg-engage-benefit-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.tsg-engage-benefit-desc{font-size:13px;color:#8899AA;line-height:1.5}
.tsg-engage-features{margin-bottom:16px}
.tsg-engage-feature{display:flex;align-items:flex-start;gap:10px;padding:8px 0;font-size:14px;color:#C8D8E8}
.tsg-engage-feature svg{flex-shrink:0;margin-top:2px}
.tsg-engage-steps{display:grid;gap:14px;margin-bottom:16px}
.tsg-engage-step-card{display:flex;gap:16px;align-items:flex-start;background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:18px;transition:transform 0.25s}
.tsg-engage-step-card:hover{transform:translateY(-2px)}
.tsg-engage-step-num{width:36px;height:36px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:16px;font-weight:700;flex-shrink:0}
.tsg-engage-step-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:4px}
.tsg-engage-step-desc{font-size:13px;color:#8899AA;line-height:1.5}
.tsg-engage-accordion{margin-bottom:16px}
.tsg-engage-acc-item{border:1px solid rgba(55,75,100,0.3);border-radius:12px;margin-bottom:10px;overflow:hidden}
.tsg-engage-acc-btn{width:100%;display:flex;justify-content:space-between;align-items:center;padding:14px 18px;background:#111B2E;border:none;color:#FFFFFF;font-size:15px;font-weight:600;cursor:pointer;font-family:'DM Sans',sans-serif;text-align:left}
.tsg-engage-acc-icon{font-size:18px;color:#8B5CF6;transition:transform 0.3s;flex-shrink:0;margin-left:12px}
.tsg-engage-acc-item.active .tsg-engage-acc-icon{transform:rotate(45deg)}
.tsg-engage-acc-body{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.3s ease;padding:0 18px}
.tsg-engage-acc-item.active .tsg-engage-acc-body{max-height:300px;padding:0 18px 16px}
.tsg-engage-acc-body p{font-size:14px;color:#8899AA;line-height:1.6;margin:0}
.tsg-engage-usecases{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.tsg-engage-usecase-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px;transition:transform 0.25s}
.tsg-engage-usecase-card:hover{transform:translateY(-2px)}
.tsg-engage-usecase-icon{font-size:24px;margin-bottom:10px}
.tsg-engage-usecase-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.tsg-engage-usecase-desc{font-size:13px;color:#8899AA;line-height:1.5}
.tsg-engage-usecase-desc a{color:#8B5CF6;text-decoration:none}
.tsg-engage-usecase-desc a:hover{text-decoration:underline}
.tsg-engage-sidebar{position:sticky;top:100px;align-self:start;display:flex;flex-direction:column;gap:20px}
.tsg-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}
.tsg-engage-cta-title{font-size:18px;font-weight:700;color:#FFFFFF;margin-bottom:8px}
.tsg-engage-cta-text{font-size:13px;color:#8899AA;line-height:1.5;margin:0 0 16px}
.tsg-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}
.tsg-engage-cta-btn:hover{background:#7C3AED;transform:translateY(-1px)}
.tsg-engage-info-box,.tsg-engage-nav-box,.tsg-engage-related-box{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px}
.tsg-engage-info-title,.tsg-engage-nav-title,.tsg-engage-related-title{font-size:14px;font-weight:700;color:#FFFFFF;margin-bottom:12px;text-transform:uppercase;letter-spacing:0.5px}
.tsg-engage-info-list{list-style:none;padding:0;margin:0}
.tsg-engage-info-list li{font-size:13px;color:#8899AA;padding:6px 0;border-bottom:1px solid rgba(55,75,100,0.15)}
.tsg-engage-info-list li:last-child{border-bottom:none}
.tsg-engage-info-list strong{color:#C8D8E8}
.tsg-engage-nav-list{list-style:none;padding:0;margin:0}
.tsg-engage-nav-list li{padding:5px 0}
.tsg-engage-nav-list a{font-size:13px;color:#8B5CF6;text-decoration:none}
.tsg-engage-nav-list a:hover{text-decoration:underline}
.tsg-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)}
.tsg-engage-related-link:last-child{border-bottom:none}
.tsg-engage-related-link:hover{color:#8B5CF6}
.tsg-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){.tsg-engage-grid{grid-template-columns:1fr}.tsg-engage-sidebar{position:static}.tsg-engage-benefits,.tsg-engage-usecases{grid-template-columns:1fr}}

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

/* === WIDGET 7: CTA === */
.tsg-cta-section{text-align:center;padding:60px 20px;max-width:600px;margin:0 auto}
.tsg-cta-title{font-family:'DM Sans',sans-serif;font-size:clamp(24px,3.5vw,34px);font-weight:700;color:#FFFFFF;margin:0 0 12px}
.tsg-cta-sub{font-size:15px;color:#8899AA;margin:0 0 24px;line-height:1.6;font-family:'DM Sans',sans-serif}
.tsg-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}
.tsg-cta-btn:hover{background:#7C3AED;transform:translateY(-2px)}

/* === RANK MATH 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}
