/* ============================================================
   Webtymize SpeedCheck — Modern UI v2
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --wt-dark: #1F1E59;
  --wt-dark2: #2D2B7A;
  --wt-orange: #F16127;
  --wt-orange2: #E0541B;
  --wt-blue: #3792EB;
  --wt-bg: #F0F2FA;
  --wt-white: #FFFFFF;
  --wt-text: #1A1A2E;
  --wt-muted: #6B7280;
  --wt-border: #E2E5F0;
  --cl-good: #0CCE6B;
  --cl-mid: #FFA400;
  --cl-bad: #FF4E42;
  --bg-good: #F0FDF6;
  --bg-mid: #FFFBEB;
  --bg-bad: #FFF2F2;
  --br-good: #A7F3D0;
  --br-mid: #FDE68A;
  --br-bad: #FECACA;
  --r: 14px;
  --r-sm: 8px;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --sh: 0 1px 4px rgba(31, 30, 89, .06), 0 2px 8px rgba(31, 30, 89, .04);
  --sh2: 0 8px 32px rgba(31, 30, 89, .10);
}

/* ── RESET ── */
.wtsc-wrap,
.wtsc-wrap * {
  box-sizing: border-box;
}

.wtsc-wrap {
  font-family: var(--font);
  color: var(--wt-text);
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.wtsc-wrap h1,
.wtsc-wrap h2,
.wtsc-wrap h3,
.wtsc-wrap h4,
.wtsc-wrap p,
.wtsc-wrap ul,
.wtsc-wrap ol,
.wtsc-wrap li {
  margin: 0;
  padding: 0;
}

.wtsc-wrap a {
  color: var(--wt-blue);
  text-decoration: none;
}

/* ── TAM EKRAN ── */
.entry-content,
.post-content,
.page-content,
.wp-block-post-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body {
  overflow-x: hidden;
}

#wtsc-app,
.wtsc-wrap {
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  overflow-x: hidden;
  position: relative;
}

.wtsc-hero,
.wtsc-loading,
.wtsc-results {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden;
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.wtsc-hero {
  background: var(--wt-dark);
  background-image:
    radial-gradient(ellipse 70% 80% at 5% 80%, rgba(55, 146, 235, .18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 95% 5%, rgba(241, 97, 39, .15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 110%, rgba(45, 43, 122, .6) 0%, transparent 70%);
  min-height: calc(100vh - 25px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 24px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wtsc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .028) 1px, transparent 0);
  background-size: 36px 36px;
  pointer-events: none;
}

.wtsc-hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(55, 146, 235, .08);
  top: -180px;
  left: -120px;
  pointer-events: none;
}

.wtsc-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 36px;
}

.wtsc-hero h1 {
  color: #fff;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 auto 20px !important;
  max-width: 620px;
}

.wtsc-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--wt-orange) 0%, #FF9F6B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wtsc-hero-sub {
  color: rgba(255, 255, 255, .52);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 auto 40px !important;
  max-width: 460px;
  font-weight: 400;
}

/* Input */
.wtsc-search-row {
  display: flex;
  width: 100%;
  max-width: 100%;
  margin: 0 auto 14px;
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .11);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}

.wtsc-search-row:focus-within {
  border-color: rgba(241, 97, 39, .5);
  box-shadow: 0 0 0 4px rgba(241, 97, 39, .10), 0 8px 32px rgba(0, 0, 0, .15);
}

.wtsc-url-input {
  flex: 1;
  padding: 26px 28px;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 16px;
  font-family: var(--font);
  min-width: 0;
  font-weight: 500;
}

.wtsc-url-input::placeholder {
  color: rgba(255, 255, 255, .28);
  font-weight: 400;
}

.wtsc-btn-analyze {
  flex-shrink: 0;
  padding: 26px 36px;
  background: linear-gradient(135deg, var(--wt-orange), var(--wt-orange2));
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: .2px;
}

.wtsc-btn-analyze:hover:not(:disabled) {
  filter: brightness(1.1);
}

.wtsc-btn-analyze:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.wtsc-spin {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .3);
  border-top-color: #fff;
  animation: wt-spin .7s linear infinite;
}

@keyframes wt-spin {
  to {
    transform: rotate(360deg);
  }
}

.wtsc-ssl-note {
  color: rgba(255, 255, 255, .28);
  font-size: 12px;
  margin-top: 10px !important;
  letter-spacing: .1px;
}

.wtsc-error-box {
  max-width: 600px;
  margin: 12px auto 0 !important;
  background: rgba(220, 38, 38, .08);
  border: 1px solid rgba(220, 38, 38, .2);
  color: #FCA5A5;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
}

/* ── HERO ALT ÖZELLİKLER BÖLÜMÜ ── */
.wtsc-hero-features {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 -40px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  background: rgba(0, 0, 0, .15);
  flex-shrink: 0;
}

.wtsc-feat {
  flex: 1;
  max-width: 220px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, .05);
  text-align: center;
}

.wtsc-feat:last-child {
  border-right: none;
}

.wtsc-feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.wtsc-feat-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .2px;
}

.wtsc-feat-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, .35);
  line-height: 1.5;
}

/* ════════════════════════════════════════
   LOADING
════════════════════════════════════════ */
.wtsc-loading {
  background: var(--wt-dark);
  background-image:
    radial-gradient(ellipse 70% 80% at 5% 80%, rgba(55, 146, 235, .12) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 95% 5%, rgba(241, 97, 39, .10) 0%, transparent 60%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 32px;
  text-align: center;
}

.wtsc-loading-inner {
  max-width: 400px;
  margin: 0 auto;
}

/* Animated rings */
.wtsc-loading-rings {
  display: inline-block;
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
}

.wtsc-loading-rings div {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--wt-orange);
  animation: wt-spin .9s linear infinite;
}

.wtsc-loading-rings div:nth-child(2) {
  inset: 9px;
  border-top-color: var(--wt-blue);
  animation-duration: 1.3s;
}

.wtsc-loading-rings div:nth-child(3) {
  inset: 18px;
  border-top-color: rgba(255, 255, 255, .3);
  animation-duration: 1.7s;
  animation-direction: reverse;
}

.wtsc-loading-rings div:nth-child(4) {
  inset: 27px;
  border-top-color: rgba(241, 97, 39, .4);
  animation-duration: .6s;
}

.wtsc-loading-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px !important;
  letter-spacing: -.01em;
}

.wtsc-loading-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 36px !important;
  line-height: 1.6;
}

.wtsc-loading-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.wtsc-lstep {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all .3s;
}

.wtsc-lstep-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

.wtsc-lstep.wls-active {
  color: rgba(255, 255, 255, .9);
  background: rgba(241, 97, 39, .12);
  border-color: rgba(241, 97, 39, .25);
}

.wtsc-lstep.wls-active .wtsc-lstep-dot {
  background: var(--wt-orange);
  box-shadow: 0 0 0 3px rgba(241, 97, 39, .2);
  animation: wt-pulse 1s infinite;
}

.wtsc-lstep.wls-done {
  color: var(--cl-good);
  background: rgba(12, 206, 107, .08);
  border-color: rgba(12, 206, 107, .2);
}

.wtsc-lstep.wls-done .wtsc-lstep-dot {
  background: var(--cl-good);
}

@keyframes wt-pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

/* ════════════════════════════════════════
   RESULTS
════════════════════════════════════════ */
@keyframes wt-fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.wtsc-results {
  background: var(--wt-bg);
  animation: wt-fadeUp .35s ease-out;
  will-change: auto;
}

/* ── STRATEGY BAR ── */
.wtsc-strat-bar {
  background: var(--wt-white);
  border-bottom: 1px solid var(--wt-border);
  padding: 0 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.wtsc-strat-tabs {
  display: flex;
  gap: 2px;
}

.wtsc-strat-tab {
  padding: 16px 22px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  color: var(--wt-muted);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all .15s;
  letter-spacing: .1px;
}

.wtsc-strat-tab:hover {
  color: var(--wt-dark);
}

.wtsc-strat-tab.active {
  color: var(--wt-dark);
  border-bottom-color: var(--wt-orange);
}

.wtsc-url-bar {
  margin-left: auto;
  font-size: 12px;
  color: var(--wt-muted);
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.wtsc-url-bar strong {
  color: var(--wt-text);
  font-weight: 700;
}

/* ── PANEL ── */
.wtsc-panel {
  padding: 0 0 40px;
}

/* ── SCORE SECTION ── */
.wtsc-score-section {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 36px 32px;
  background: var(--wt-white);
  border-bottom: 1px solid var(--wt-border);
  flex-wrap: wrap;
}

/* Gauge */
.wtsc-gauge-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

.wtsc-gauge-wrap {
  position: relative;
  width: 152px;
  height: 152px;
}

.wtsc-gauge-svg {
  width: 152px;
  height: 152px;
  transform: rotate(-90deg);
}

.wtsc-gauge-bg {
  fill: none;
  stroke: #ECEEF7;
  stroke-width: 9;
}

.wtsc-gauge-arc {
  fill: none;
  stroke: #E2E5F0;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
  transition: stroke-dashoffset 1.3s cubic-bezier(.4, 0, .2, 1), stroke .3s;
}

.wtsc-gauge-arc.wga-good {
  stroke: var(--cl-good);
}

.wtsc-gauge-arc.wga-mid {
  stroke: var(--cl-mid);
}

.wtsc-gauge-arc.wga-bad {
  stroke: var(--cl-bad);
}

.wtsc-gauge-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wtsc-gauge-num {
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  color: var(--wt-dark);
  letter-spacing: -.03em;
}

.wtsc-gauge-num.wgn-good {
  color: var(--cl-good);
}

.wtsc-gauge-num.wgn-mid {
  color: var(--cl-mid);
}

.wtsc-gauge-num.wgn-bad {
  color: var(--cl-bad);
}

.wtsc-gauge-sub {
  font-size: 12px;
  color: #B8BDD0;
  font-weight: 600;
  margin-top: 3px;
}

.wtsc-score-status {
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .3px;
  text-transform: uppercase;
}

.wtsc-score-status.wss-good {
  background: var(--bg-good);
  color: #059669;
  border: 1px solid var(--br-good);
}

.wtsc-score-status.wss-mid {
  background: var(--bg-mid);
  color: #D97706;
  border: 1px solid var(--br-mid);
}

.wtsc-score-status.wss-bad {
  background: var(--bg-bad);
  color: #DC2626;
  border: 1px solid var(--br-bad);
}

/* Verdict */
.wtsc-verdict-col {
  flex: 1;
  min-width: 280px;
}

.wtsc-verdict {
  border-radius: var(--r);
  padding: 24px 26px;
  border: 1.5px solid;
}

.vv-good {
  background: var(--bg-good);
  border-color: var(--br-good);
}

.vv-mid {
  background: var(--bg-mid);
  border-color: var(--br-mid);
}

.vv-bad {
  background: var(--bg-bad);
  border-color: var(--br-bad);
}

.vv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.vv-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.vv-good .vv-icon-wrap {
  background: rgba(12, 206, 107, .1);
}

.vv-mid .vv-icon-wrap {
  background: rgba(255, 164, 0, .1);
}

.vv-bad .vv-icon-wrap {
  background: rgba(255, 78, 66, .1);
}

.vv-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--wt-dark);
  letter-spacing: -.01em;
}

.vv-desc {
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 16px;
}

.vv-tips {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(0, 0, 0, .07);
}

.vv-tips li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

.vv-tip-num {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--wt-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  margin-top: 1px;
}

/* ── SECTION ── */
.wtsc-section {
  background: var(--wt-white);
  margin: 20px 36px;
  border-radius: var(--r);
  border: 1px solid var(--wt-border);
  box-shadow: 0 1px 3px rgba(31, 30, 89, .05), 0 1px 8px rgba(31, 30, 89, .04);
  overflow: hidden;
}

.wtsc-section-head {
  padding: 18px 24px 16px;
  border-bottom: 1px solid #F3F5FB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.wtsc-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.wtsc-section-icon {
  font-size: 18px;
  width: 40px;
  height: 40px;
  background: var(--wt-bg);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--wt-border);
}

.wtsc-section-title strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--wt-dark);
  letter-spacing: -.01em;
}

.wtsc-section-note {
  font-size: 12px;
  color: var(--wt-muted);
  display: block;
  margin-top: 2px;
  font-weight: 500;
}

/* ── METRİKLER ── */
.wtsc-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(172px, 1fr));
  gap: 14px;
  padding: 20px 24px;
}

.wtsc-metric-card {
  border-radius: var(--r);
  border: 1px solid;
  overflow: hidden;
  transition: box-shadow .15s;
  cursor: default;
}

.wtsc-metric-card:hover {
  box-shadow: var(--sh2);
}

.wmc-good {
  background: var(--bg-good);
  border-color: var(--br-good);
}

.wmc-mid {
  background: var(--bg-mid);
  border-color: var(--br-mid);
}

.wmc-bad {
  background: var(--bg-bad);
  border-color: var(--br-bad);
}

.wmc-na {
  background: #FAFBFF;
  border-color: var(--wt-border);
}

.wmc-body {
  padding: 16px 18px 18px;
}

.wmc-val-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.wmc-val {
  font-size: 32px;
  font-weight: 900;
  color: var(--wt-dark);
  line-height: 1;
  letter-spacing: -.02em;
  flex-shrink: 0;
  max-width: 100%;
  word-break: break-word;
}

.wmc-good .wmc-val {
  color: #059669;
}

.wmc-mid .wmc-val {
  color: #D97706;
}

.wmc-bad .wmc-val {
  color: #DC2626;
}

.wmc-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0;
  flex-shrink: 0;
}

.wtsc-badge-cwv {
  background: var(--wt-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 5px;
  letter-spacing: .3px;
}

.wtsc-badge-weight {
  background: rgba(107, 114, 128, .12);
  color: var(--wt-muted);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid rgba(107, 114, 128, .15);
}

.wmc-label {
  font-size: 12px;
  font-weight: 800;
  color: var(--wt-text);
  margin-bottom: 4px;
  letter-spacing: .1px;
}

.wmc-desc {
  font-size: 11px;
  color: var(--wt-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.wmc-thresholds {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.wth {
  font-size: 11px;
  font-weight: 500;
  color: #C0C5D4;
  padding: 1px 0;
}

.wth-active.wth-good {
  color: #059669;
  font-weight: 700;
}

.wth-active.wth-mid {
  color: #D97706;
  font-weight: 700;
}

.wth-active.wth-bad {
  color: #DC2626;
  font-weight: 700;
}

.wtsc-metrics-footer {
  padding: 12px 24px 16px;
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--wt-muted);
  font-weight: 600;
  flex-wrap: wrap;
  border-top: 1px solid #F3F5FB;
}

.wml-good {
  color: var(--cl-good);
}

.wml-mid {
  color: var(--cl-mid);
}

.wml-bad {
  color: var(--cl-bad);
}

.wml-hint {
  color: #B8BDD0;
  font-weight: 500;
  margin-left: auto;
}

.wtsc-no-data {
  padding: 20px 24px;
  color: var(--wt-muted);
  font-size: 14px;
}

/* ── ÖNERİ / TEŞHİS ── */
.wtsc-rec {
  border-bottom: 1px solid #F3F5FB;
}

.wtsc-rec:last-child {
  border-bottom: none;
}

.wtsc-rec-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  cursor: pointer;
  transition: background .1s;
  user-select: none;
}

.wtsc-rec-trigger:hover {
  background: #FAFBFF;
}

.wtsc-rec.open .wtsc-rec-trigger {
  background: #F5F7FF;
}

.wtsc-rec-num {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--wt-bg);
  border: 1.5px solid var(--wt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--wt-dark);
}

.wtsc-rec-main {
  flex: 1;
  min-width: 0;
}

.wtsc-rec-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--wt-dark);
  margin-bottom: 3px;
  letter-spacing: -.01em;
}

.wtsc-rec-why {
  font-size: 12.5px;
  color: var(--wt-muted);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wtsc-rec-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.wtsc-savings {
  font-size: 12px;
  font-weight: 700;
  color: var(--wt-orange);
  background: rgba(241, 97, 39, .07);
  border: 1px solid rgba(241, 97, 39, .15);
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.wtsc-diff {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .3px;
  white-space: nowrap;
  border: 1px solid;
}

.wdiff-easy {
  background: var(--bg-good);
  color: #059669;
  border-color: var(--br-good);
}

.wdiff-mid {
  background: var(--bg-mid);
  color: #D97706;
  border-color: var(--br-mid);
}

.wdiff-hard {
  background: var(--bg-bad);
  color: #DC2626;
  border-color: var(--br-bad);
}

.wtsc-chev {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--wt-bg);
  border: 1px solid var(--wt-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #9CA3AF;
  transition: transform .2s, background .15s;
  flex-shrink: 0;
}

.wtsc-rec.open .wtsc-chev {
  transform: rotate(180deg);
  background: #EEF0FC;
}

.wtsc-rec-body {
  display: none;
  padding: 0 24px 22px 68px;
  background: #FAFBFF;
  border-top: 1px solid #F0F2FB;
  animation: wt-expand .2s ease;
}

@keyframes wt-expand {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.wtsc-rec.open .wtsc-rec-body {
  display: block;
}

.wtsc-rec-detail {
  font-size: 13.5px;
  color: #4B5563;
  line-height: 1.7;
  padding: 16px 0;
  border-bottom: 1px dashed #E5E7EB;
  margin-bottom: 16px !important;
}

.wtsc-rec-steps-lbl {
  font-size: 13px;
  font-weight: 800;
  color: var(--wt-dark);
  margin-bottom: 12px !important;
  letter-spacing: -.01em;
}

.wtsc-rec-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px !important;
}

.wtsc-rec-steps li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ws-num {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--wt-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}

.wtsc-badge-pct {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #374151;
  background: #E5E7EB;
  border: 1px solid #D1D5DB;
  border-radius: 4px;
  padding: 3px 6px;
  line-height: 1;
  white-space: nowrap;
}

.wtsc-rec-meta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.wtsc-who {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--wt-muted);
  background: var(--wt-bg);
  border: 1px solid var(--wt-border);
  padding: 3px 10px;
  border-radius: 100px;
}

/* ── DOSYA LİSTESİ ── */
.wtsc-items-wrap {
  margin: 0 0 18px;
  border: 1px solid var(--wt-border);
  border-radius: var(--r-sm);
  overflow: hidden;
}

.wtsc-items-head {
  display: grid;
  grid-template-columns: 1fr 85px 95px;
  gap: 8px;
  padding: 9px 14px;
  background: var(--wt-bg);
  font-size: 11px;
  font-weight: 700;
  color: var(--wt-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
  border-bottom: 1px solid var(--wt-border);
}

.wtsc-item-row {
  display: grid;
  grid-template-columns: 1fr 85px 95px;
  gap: 8px;
  padding: 9px 14px;
  border-top: 1px solid #F3F5FB;
  align-items: center;
  background: var(--wt-white);
  transition: background .1s;
}

.wtsc-item-row:hover {
  background: #FAFBFF;
}

.wtsc-item-url {
  font-size: 12px;
  color: var(--wt-blue);
  font-family: monospace;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wtsc-item-size {
  font-size: 12px;
  color: var(--wt-muted);
  text-align: right;
  font-weight: 600;
}

.wtsc-item-save {
  font-size: 12px;
  font-weight: 800;
  color: var(--cl-bad);
  text-align: right;
}

/* ── FOOTER ── */
.wtsc-results-footer {
  padding: 24px 36px;
  border-top: 1px solid var(--wt-border);
  background: linear-gradient(180deg, var(--wt-bg) 0%, var(--wt-white) 100%);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.wtsc-cache-note {
  font-size: 12px;
  color: var(--wt-muted);
  font-weight: 500;
  padding: 0;
  margin: 0;
}

.wtsc-app-footer {
  padding: 4px 16px;
  background: linear-gradient(180deg, var(--wt-bg) 0%, var(--wt-white) 100%);
  border-top: 1px solid var(--wt-border);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.wtsc-credit-link {
  font-size: 10px;
  color: var(--wt-muted);
  text-decoration: none;
  transition: color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 100%;
  text-align: center;
}

.wtsc-credit-link strong {
  color: var(--wt-text);
  font-weight: 700;
}

.wtsc-credit-link:hover {
  color: var(--wt-dark);
}

.wtsc-btn-reset {
  padding: 12px 28px;
  background: var(--wt-dark);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: background .15s, transform .1s;
  letter-spacing: .1px;
}

.wtsc-btn-reset:hover {
  background: var(--wt-dark2);
  transform: translateY(-1px);
}

.wtsc-btn-reset:active {
  transform: none;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 768px) {
  .wtsc-hero {
    padding: 0 20px 0;
    min-height: calc(100svh - 25px);
  }

  .wtsc-hero-inner {
    padding: 32px 0 28px;
  }

  .wtsc-hero h1 {
    font-size: clamp(22px, 7vw, 30px);
    letter-spacing: -.02em;
  }

  .wtsc-hero-sub {
    font-size: 14px;
    margin-bottom: 28px !important;
  }

  .wtsc-search-row {
    flex-direction: column;
    border-radius: var(--r-sm);
    max-width: 100%;
  }

  .wtsc-url-input {
    padding: 16px 18px;
  }

  .wtsc-btn-analyze {
    padding: 15px 20px;
    justify-content: center;
    border-radius: 0 0 var(--r-sm) var(--r-sm);
    font-size: 15px;
  }

  .wtsc-hero-features {
    margin: 0 -20px 0;
    gap: 0;
  }

  .wtsc-feat {
    padding: 18px 12px;
    max-width: none;
    flex: 1;
  }

  .wtsc-feat-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .wtsc-feat-label {
    font-size: 11px;
  }

  .wtsc-feat-desc {
    display: none;
  }

  .wtsc-strat-bar {
    padding: 0 16px;
    gap: 8px;
  }

  .wtsc-strat-tab {
    padding: 14px 16px;
    font-size: 13px;
  }

  .wtsc-url-bar {
    display: none;
  }

  .wtsc-score-section {
    padding: 24px 16px 20px;
    gap: 16px;
    flex-direction: column;
    align-items: center;
  }

  .wtsc-gauge-col {
    min-width: unset;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .wtsc-gauge-wrap {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
  }

  .wtsc-gauge-svg {
    width: 120px;
    height: 120px;
  }

  .wtsc-gauge-num {
    font-size: 36px;
  }

  .wtsc-gauge-sub {
    font-size: 11px;
  }

  .wtsc-score-status {
    font-size: 11px;
  }

  .wtsc-verdict-col {
    min-width: 100%;
    width: 100%;
  }

  .wtsc-verdict {
    padding: 18px 20px;
  }

  .vv-title {
    font-size: 15px;
  }

  .vv-desc {
    font-size: 13px;
  }

  .vv-tips li {
    font-size: 12px;
  }

  .wtsc-section {
    margin: 12px 12px;
    border-radius: var(--r-sm);
  }

  .wtsc-section-head {
    padding: 14px 16px 12px;
  }

  .wtsc-section-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .wtsc-section-title strong {
    font-size: 14px;
  }

  .wtsc-section-note {
    font-size: 11px;
  }

  .wtsc-metrics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 12px;
  }

  .wmc-body {
    padding: 12px 14px 14px;
  }

  .wmc-val {
    font-size: 22px;
  }

  .wmc-label {
    font-size: 11px;
  }

  .wmc-desc {
    font-size: 10px;
  }

  .wtsc-rec-trigger {
    padding: 12px 14px;
    gap: 10px;
  }

  .wtsc-rec-num {
    width: 26px;
    height: 26px;
    font-size: 11px;
    border-radius: 6px;
  }

  .wtsc-rec-title {
    font-size: 13px;
  }

  .wtsc-rec-why {
    font-size: 11.5px;
  }

  .wtsc-rec-right {
    gap: 6px;
  }

  .wtsc-savings {
    font-size: 11px;
    padding: 2px 8px;
  }

  .wtsc-diff {
    font-size: 10px;
    padding: 2px 8px;
  }

  .wtsc-rec-body {
    padding: 0 14px 16px 14px;
  }

  .wtsc-rec-detail {
    font-size: 13px;
  }

  .wtsc-rec-steps-lbl {
    font-size: 12px;
  }

  .ws-txt {
    font-size: 12px;
  }

  .wtsc-items-head {
    grid-template-columns: 1fr 70px;
    padding: 8px 12px;
  }

  .wtsc-items-head span:last-child {
    display: none;
  }

  .wtsc-item-row {
    grid-template-columns: 1fr 70px;
    padding: 8px 12px;
  }

  .wtsc-item-size {
    display: none;
  }

  .wtsc-item-url {
    font-size: 11px;
  }

  .wtsc-results-footer {
    padding: 14px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .wtsc-btn-reset {
    text-align: center;
    padding: 12px;
    width: 100%;
  }

  .wtsc-app-footer {
    padding: 8px 16px;
    justify-content: center;
  }

  .wtsc-loading {
    padding: 40px 20px;
    min-height: 100svh;
  }

  .wtsc-loading-steps {
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .wtsc-hero {
    padding: 0 16px 0;
  }

  .wtsc-hero h1 {
    font-size: clamp(20px, 8vw, 26px);
  }

  .wtsc-hero-sub {
    font-size: 13px;
    margin-bottom: 24px !important;
  }

  .wtsc-ssl-note {
    font-size: 11px;
  }

  .wtsc-hero-features {
    margin: 0 -16px 0;
  }

  .wtsc-feat {
    padding: 14px 8px;
  }

  .wtsc-feat-label {
    font-size: 10px;
  }

  .wtsc-gauge-wrap {
    width: 100px;
    height: 100px;
  }

  .wtsc-gauge-svg {
    width: 100px;
    height: 100px;
  }

  .wtsc-gauge-num {
    font-size: 30px;
  }

  .wtsc-metrics-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .wtsc-rec-right {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: flex-end;
  }

  .wtsc-rec-body {
    padding: 0 12px 14px 12px;
  }

  .wtsc-section {
    margin: 10px 8px;
  }

  .wtsc-score-section {
    padding: 20px 12px 16px;
  }

  .wtsc-loading-steps {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .wtsc-lstep {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .wtsc-hero h1 {
    font-size: 19px;
  }

  .wtsc-strat-tab {
    padding: 12px 10px;
    font-size: 12px;
  }

  .wtsc-gauge-wrap {
    width: 88px;
    height: 88px;
  }

  .wtsc-gauge-svg {
    width: 88px;
    height: 88px;
  }

  .wtsc-gauge-num {
    font-size: 26px;
  }

  .wmc-val {
    font-size: 20px;
  }

  .wtsc-hero-features {
    flex-wrap: wrap;
  }

  .wtsc-feat {
    min-width: 50%;
  }
}