/* ═══════════════════════════════════════════════════════════
   Text Compare / Diff Tool — tdf- prefix — NO @import
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Container ────────────────────────────────────── */
.tdf-tool-container *,
.tdf-tool-container *::before,
.tdf-tool-container *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.tdf-tool-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'DM Sans', sans-serif;
  color: #FFFFFF;
}

/* ── Labels ───────────────────────────────────────────────── */
.tdf-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #8899AA;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.tdf-label svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

/* ── Input Row (grid: textarea / swap / textarea) ─────────── */
.tdf-input-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: start;
  margin-bottom: 16px;
}
.tdf-input-group {
  display: flex;
  flex-direction: column;
  position: relative;
}
.tdf-textarea {
  width: 100%;
  min-height: 220px;
  resize: vertical;
  background: #111B2E;
  color: #FFFFFF;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 14px;
  padding: 16px 18px;
  padding-bottom: 32px;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 14px;
  line-height: 1.6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.tdf-textarea.tdf-orig {
  border-left: 3px solid #8B5CF6;
}
.tdf-textarea.tdf-mod {
  border-left: 3px solid #3B82F6;
}
.tdf-textarea:focus {
  border-color: #8B5CF6;
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}
.tdf-textarea::placeholder {
  color: #5A7090;
}

/* ── Char Counter ─────────────────────────────────────────── */
.tdf-char-counter {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 11px;
  color: #5A7090;
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  pointer-events: none;
  user-select: none;
}
.tdf-char-counter.tdf-warn {
  color: #F59E0B;
}
.tdf-char-counter.tdf-danger {
  color: #EF4444;
}

/* ── Swap Button (center column) ──────────────────────────── */
.tdf-swap-col {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.tdf-swap-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  color: #8899AA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.tdf-swap-btn:hover {
  background: rgba(139,92,246,0.1);
  border-color: #8B5CF6;
  color: #8B5CF6;
}
.tdf-swap-btn svg {
  width: 18px;
  height: 18px;
}

/* ── Options Row ──────────────────────────────────────────── */
.tdf-options-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 12px;
}
.tdf-checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  color: #8899AA;
  user-select: none;
}
.tdf-checkbox-wrap input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(55,75,100,0.5);
  border-radius: 4px;
  background: #0D1526;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: all 0.15s ease;
}
.tdf-checkbox-wrap input[type="checkbox"]:checked {
  background: #8B5CF6;
  border-color: #8B5CF6;
}
.tdf-checkbox-wrap input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: 1.5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.tdf-view-toggle {
  display: flex;
  margin-left: auto;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(55,75,100,0.3);
}
.tdf-view-pill {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: #8899AA;
  background: #0D1526;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.tdf-view-pill.tdf-active {
  background: #8B5CF6;
  color: #FFFFFF;
}
.tdf-view-pill:hover:not(.tdf-active) {
  background: rgba(139,92,246,0.1);
  color: #FFFFFF;
}

/* ── Action Buttons Row ───────────────────────────────────── */
.tdf-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.tdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.tdf-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.tdf-btn-primary {
  background: #8B5CF6;
  color: #FFFFFF;
  border-color: #8B5CF6;
}
.tdf-btn-primary:hover:not(:disabled) {
  background: #7C3AED;
  border-color: #7C3AED;
}
.tdf-btn-primary:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.tdf-btn-ghost {
  background: transparent;
  color: #8899AA;
  border-color: rgba(55,75,100,0.3);
}
.tdf-btn-ghost:hover {
  background: rgba(139,92,246,0.08);
  color: #FFFFFF;
  border-color: #8B5CF6;
}

/* ── Stats Card ───────────────────────────────────────────── */
.tdf-stats {
  display: none;
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.tdf-stats.tdf-visible {
  display: block;
}
.tdf-stats-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 10px;
}
.tdf-stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.tdf-stat-badge.tdf-stat-unchanged {
  background: rgba(16,185,129,0.1);
  color: #10B981;
}
.tdf-stat-badge.tdf-stat-added {
  background: rgba(16,185,129,0.1);
  color: #10B981;
}
.tdf-stat-badge.tdf-stat-removed {
  background: rgba(239,68,68,0.1);
  color: #EF4444;
}
.tdf-stat-badge.tdf-stat-changed {
  background: rgba(245,158,11,0.1);
  color: #F59E0B;
}
.tdf-stat-badge svg {
  width: 14px;
  height: 14px;
}
.tdf-stats-meta {
  font-size: 12px;
  color: #5A7090;
}
.tdf-stats-meta span {
  margin-right: 16px;
}

/* ── Nav Bar ──────────────────────────────────────────────── */
.tdf-nav-bar {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #111B2E;
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 12px;
  margin-bottom: 12px;
  position: sticky;
  top: 0;
  z-index: 10;
}
.tdf-nav-bar.tdf-visible {
  display: flex;
}
.tdf-nav-label {
  font-size: 13px;
  color: #8899AA;
  white-space: nowrap;
}
.tdf-nav-btn {
  padding: 5px 12px;
  border-radius: 8px;
  background: #0D1526;
  border: 1px solid rgba(55,75,100,0.3);
  color: #8899AA;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tdf-nav-btn:hover:not(:disabled) {
  background: rgba(139,92,246,0.1);
  color: #FFFFFF;
  border-color: #8B5CF6;
}
.tdf-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.tdf-nav-spacer {
  flex: 1;
}
.tdf-copy-diff-btn {
  margin-left: auto;
}

/* ── Diff Output ──────────────────────────────────────────── */
.tdf-diff-wrap {
  border: 1px solid rgba(55,75,100,0.3);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.tdf-diff-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(55,75,100,0.15);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 13px;
}
.tdf-diff-container.tdf-unified-mode {
  grid-template-columns: 1fr;
}
.tdf-side {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 600px;
  background: #0D1526;
}
.tdf-side-header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #8899AA;
  background: #111B2E;
  border-bottom: 1px solid rgba(55,75,100,0.3);
  user-select: none;
}
.tdf-diff-line {
  display: flex;
  padding: 2px 0;
  min-height: 24px;
  line-height: 1.5;
  transition: background 0.15s ease;
}
.tdf-line-num {
  width: 40px;
  min-width: 40px;
  text-align: right;
  padding-right: 10px;
  color: #374B64;
  user-select: none;
  font-size: 12px;
  line-height: 1.5;
}
.tdf-line-prefix {
  width: 20px;
  min-width: 20px;
  text-align: center;
  color: #5A7090;
  user-select: none;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}
.tdf-line-content {
  flex: 1;
  padding: 0 10px;
  white-space: pre-wrap;
  word-break: break-all;
}

/* ── Diff Line Types ──────────────────────────────────────── */
.tdf-equal {
  background: #0D1526;
}
.tdf-added {
  background: rgba(16,185,129,0.08);
  border-left: 3px solid #10B981;
}
.tdf-removed {
  background: rgba(239,68,68,0.08);
  border-left: 3px solid #EF4444;
}
.tdf-changed {
  background: rgba(245,158,11,0.06);
  border-left: 3px solid #F59E0B;
}
.tdf-empty-placeholder {
  background: rgba(55,75,100,0.05);
  min-height: 24px;
}

/* Character-level highlights */
.tdf-char-del {
  background: rgba(239,68,68,0.25);
  text-decoration: line-through;
  border-radius: 2px;
  padding: 0 1px;
}
.tdf-char-add {
  background: rgba(16,185,129,0.25);
  border-radius: 2px;
  padding: 0 1px;
}

/* ── Empty State ──────────────────────────────────────────── */
.tdf-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  text-align: center;
  color: #5A7090;
  font-size: 14px;
  gap: 12px;
}
.tdf-empty-state svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}

/* ── Toast ────────────────────────────────────────────────── */
#tdf-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #10B981;
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  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);
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
}
#tdf-toast.tdf-toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
#tdf-toast.tdf-toast-error {
  background: #EF4444;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .tdf-input-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tdf-swap-col {
    padding-top: 0;
    padding-bottom: 0;
  }
  .tdf-swap-btn {
    width: 36px;
    height: 36px;
  }
  .tdf-options-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .tdf-view-toggle {
    margin-left: 0;
    width: 100%;
  }
  .tdf-view-pill {
    flex: 1;
    text-align: center;
  }
  .tdf-actions-row {
    flex-direction: column;
  }
  .tdf-btn {
    width: 100%;
    justify-content: center;
  }
  .tdf-diff-container {
    grid-template-columns: 1fr;
  }
  .tdf-stats-badges {
    gap: 8px;
  }
  .tdf-stat-badge {
    font-size: 12px;
    padding: 3px 10px;
  }
  .tdf-nav-bar {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* === WIDGET 1: HERO === */
.tdf-hero-section{text-align:center;padding:48px 20px 32px;max-width:800px;margin:0 auto}
.tdf-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}
.tdf-hero-badge svg{width:14px;height:14px;fill:#8B5CF6}
.tdf-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}
.tdf-hero-title span{color:#8B5CF6}
.tdf-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 === */
.tdf-trust-section{padding:40px 20px;max-width:900px;margin:0 auto}
.tdf-trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;text-align:center}
.tdf-trust-value{font-family:'DM Sans',sans-serif;font-size:clamp(28px,3.5vw,38px);font-weight:700;color:#FFFFFF;line-height:1}
.tdf-trust-value span{color:#8B5CF6}
.tdf-trust-label{font-size:13px;color:#5A7090;margin-top:6px;font-family:'DM Sans',sans-serif}
@media(max-width:600px){.tdf-trust-grid{grid-template-columns:repeat(2,1fr);gap:20px}}

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

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

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

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