.tcc-tool-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: 'DM Sans', sans-serif;
    color: #C8D8E8;
    font-size: 15px;
    line-height: 1.7;
    box-sizing: border-box;
  }
  .tcc-tool-container *, .tcc-tool-container *::before, .tcc-tool-container *::after {
    box-sizing: border-box;
  }
  .tcc-textarea-wrap {
    position: relative;
    margin-bottom: 14px;
  }
  .tcc-textarea {
    width: 100%;
    min-height: 160px;
    padding: 16px 18px;
    padding-bottom: 36px;
    background: #111B2E;
    border: 1px solid #8B5CF6;
    border-radius: 14px;
    color: #C8D8E8;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    resize: vertical;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .tcc-textarea::placeholder {
    color: #5A7090;
  }
  .tcc-textarea:focus {
    border-color: #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
  }
  .tcc-char-limit {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 12px;
    color: #5A7090;
    pointer-events: none;
    user-select: none;
    transition: color 0.3s;
  }
  .tcc-char-limit.tcc-warn {
    color: #F59E0B;
  }
  .tcc-char-limit.tcc-danger {
    color: #EF4444;
  }
  .tcc-btn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
  }
  .tcc-case-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 8px;
    background: #111B2E;
    border: 1px solid rgba(55,75,100,0.3);
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, background 0.2s;
    text-align: center;
    user-select: none;
  }
  .tcc-case-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139,92,246,0.08);
    border-color: rgba(139,92,246,0.4);
  }
  .tcc-case-btn.tcc-active {
    border: 1px solid #8B5CF6;
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
    background: rgba(139,92,246,0.06);
  }
  .tcc-case-btn-label {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 4px;
  }
  .tcc-case-btn-example {
    font-size: 11px;
    color: #5A7090;
    line-height: 1.3;
  }
  .tcc-output-wrap {
    position: relative;
    margin-bottom: 14px;
  }
  .tcc-output {
    width: 100%;
    min-height: 160px;
    padding: 16px 18px;
    background: #111B2E;
    border: 1px solid #8B5CF6;
    border-left: 3px solid #8B5CF6;
    border-radius: 14px;
    color: #FFFFFF;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    resize: vertical;
    outline: none;
    box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
  }
  .tcc-output::placeholder {
    color: #5A7090;
  }
  .tcc-action-row {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
  }
  .tcc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
    border: none;
    user-select: none;
  }
  .tcc-btn:hover {
    transform: translateY(-1px);
  }
  .tcc-btn-primary {
    background: #8B5CF6;
    color: #FFFFFF;
  }
  .tcc-btn-primary:hover {
    background: #7C3AED;
  }
  .tcc-btn-ghost {
    background: transparent;
    color: #8899AA;
    border: 1px solid rgba(55,75,100,0.3);
  }
  .tcc-btn-ghost:hover {
    background: rgba(55,75,100,0.15);
  }
  .tcc-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  .tcc-summary {
    font-size: 15px;
    color: #C8D8E8;
    padding: 12px 0;
    display: none;
  }
  .tcc-summary.tcc-visible {
    display: block;
  }
  .tcc-summary strong {
    color: #FFFFFF;
    font-weight: 700;
  }
  #tcc-toast {
    position: fixed;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: #10B981;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    z-index: 99999;
    pointer-events: none;
    transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 16px rgba(16,185,129,0.3);
  }
  #tcc-toast.tcc-toast-show {
    bottom: 32px;
  }
  @media (max-width: 768px) {
    .tcc-btn-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 480px) {
    .tcc-btn-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    .tcc-action-row {
      flex-direction: column;
    }
    .tcc-action-row .tcc-btn {
      width: 100%;
    }
  }

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

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

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

/* === WIDGET 5: SEO / ENGAGE === */
.tcc-engage-section{padding:60px 20px;max-width:1000px;margin:0 auto;font-family:'DM Sans',sans-serif}
.tcc-engage-grid{display:grid;grid-template-columns:1fr 300px;gap:48px}
.tcc-engage-main h2{font-size:clamp(22px,3vw,30px);font-weight:700;color:#FFFFFF;margin:0 0 16px;line-height:1.3}
.tcc-engage-main h3{font-size:20px;font-weight:700;color:#FFFFFF;margin:40px 0 16px}
.tcc-engage-main p{color:#C8D8E8;font-size:15px;line-height:1.7;margin:0 0 14px}
.tcc-engage-main a{color:#8B5CF6;text-decoration:none}
.tcc-engage-main a:hover{text-decoration:underline}
.tcc-engage-table-wrap{overflow-x:auto;margin-bottom:16px}
.tcc-engage-table{width:100%;border-collapse:collapse;font-size:14px}
.tcc-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)}
.tcc-engage-table td{padding:10px 14px;border-bottom:1px solid rgba(55,75,100,0.15);color:#C8D8E8}
.tcc-engage-table tr:hover td{background:rgba(55,75,100,0.08)}
.tcc-engage-benefits{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-bottom:16px}
.tcc-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}
.tcc-engage-benefit-card:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(139,92,246,0.08)}
.tcc-engage-benefit-icon{width:44px;height:44px;border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:12px}
.tcc-engage-benefit-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.tcc-engage-benefit-desc{font-size:13px;color:#8899AA;line-height:1.5}
.tcc-engage-features{margin-bottom:16px}
.tcc-engage-feature{display:flex;align-items:flex-start;gap:10px;padding:8px 0;font-size:14px;color:#C8D8E8}
.tcc-engage-feature svg{flex-shrink:0;margin-top:2px}
.tcc-engage-steps{display:grid;gap:14px;margin-bottom:16px}
.tcc-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}
.tcc-engage-step-card:hover{transform:translateY(-2px)}
.tcc-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}
.tcc-engage-step-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:4px}
.tcc-engage-step-desc{font-size:13px;color:#8899AA;line-height:1.5}
.tcc-engage-accordion{margin-bottom:16px}
.tcc-engage-acc-item{border:1px solid rgba(55,75,100,0.3);border-radius:12px;margin-bottom:10px;overflow:hidden}
.tcc-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}
.tcc-engage-acc-icon{font-size:18px;color:#8B5CF6;transition:transform 0.3s;flex-shrink:0;margin-left:12px}
.tcc-engage-acc-item.active .tcc-engage-acc-icon{transform:rotate(45deg)}
.tcc-engage-acc-body{max-height:0;overflow:hidden;transition:max-height 0.4s ease,padding 0.3s ease;padding:0 18px}
.tcc-engage-acc-item.active .tcc-engage-acc-body{max-height:300px;padding:0 18px 16px}
.tcc-engage-acc-body p{font-size:14px;color:#8899AA;line-height:1.6;margin:0}
.tcc-engage-usecases{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
.tcc-engage-usecase-card{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px;transition:transform 0.25s}
.tcc-engage-usecase-card:hover{transform:translateY(-2px)}
.tcc-engage-usecase-icon{font-size:24px;margin-bottom:10px}
.tcc-engage-usecase-title{font-size:15px;font-weight:700;color:#FFFFFF;margin-bottom:6px}
.tcc-engage-usecase-desc{font-size:13px;color:#8899AA;line-height:1.5}
.tcc-engage-usecase-desc a{color:#8B5CF6;text-decoration:none}
.tcc-engage-usecase-desc a:hover{text-decoration:underline}

/* Sidebar */
.tcc-engage-sidebar{position:sticky;top:100px;align-self:start;display:flex;flex-direction:column;gap:20px}
.tcc-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}
.tcc-engage-cta-title{font-size:18px;font-weight:700;color:#FFFFFF;margin-bottom:8px}
.tcc-engage-cta-text{font-size:13px;color:#8899AA;line-height:1.5;margin:0 0 16px}
.tcc-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}
.tcc-engage-cta-btn:hover{background:#7C3AED;transform:translateY(-1px)}
.tcc-engage-info-box,.tcc-engage-nav-box,.tcc-engage-related-box{background:#111B2E;border:1px solid rgba(55,75,100,0.3);border-radius:14px;padding:20px}
.tcc-engage-info-title,.tcc-engage-nav-title,.tcc-engage-related-title{font-size:14px;font-weight:700;color:#FFFFFF;margin-bottom:12px;text-transform:uppercase;letter-spacing:0.5px}
.tcc-engage-info-list{list-style:none;padding:0;margin:0}
.tcc-engage-info-list li{font-size:13px;color:#8899AA;padding:6px 0;border-bottom:1px solid rgba(55,75,100,0.15)}
.tcc-engage-info-list li:last-child{border-bottom:none}
.tcc-engage-info-list strong{color:#C8D8E8}
.tcc-engage-nav-list{list-style:none;padding:0;margin:0}
.tcc-engage-nav-list li{padding:5px 0}
.tcc-engage-nav-list a{font-size:13px;color:#8B5CF6;text-decoration:none}
.tcc-engage-nav-list a:hover{text-decoration:underline}
.tcc-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)}
.tcc-engage-related-link:last-child{border-bottom:none}
.tcc-engage-related-link:hover{color:#8B5CF6}
.tcc-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){.tcc-engage-grid{grid-template-columns:1fr}.tcc-engage-sidebar{position:static}.tcc-engage-benefits,.tcc-engage-usecases{grid-template-columns:1fr}}

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

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