/**
 * it3 design system — mirrors Next.js globals.css + Tailwind components
 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Quicksand:wght@500;600;700&display=swap');

:root {
  --primary: #ee6123;
  --primary-dark: #d9541a;
  --primary-light: #ff7a3d;
  --dark: #0d1117;
  --dark-surface: #0f172a;
  --dark-elevated: #111827;
  --text-on-dark: #e2e8f0;
  --text-muted-on-dark: #94a3b8;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --surface-border: #e2e8f0;
  --radius: 0.75rem;
  --shadow-soft: 0 2px 15px -3px rgba(0,0,0,0.07), 0 10px 20px -2px rgba(0,0,0,0.04);
  --shadow-glow: 0 0 40px -10px rgba(238,97,35,0.35);
  --shadow-card-hover: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.02);
  --shadow-elevated: 0 24px 48px -24px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06);
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Quicksand', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

body.it3-body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-on-dark);
  antialiased: true;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100vw;
  background-color: var(--dark-surface);
  background-image:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(238, 97, 35, 0.18), transparent 52%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(56, 189, 248, 0.14), transparent 48%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(238, 97, 35, 0.1), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #111827 45%, #0d1117 100%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.it3-main {
  flex: 1;
  padding-bottom: 0;
}

/* Background orbs (layout chrome) */
.it3-bg-orbs {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.it3-bg-orbs::before,
.it3-bg-orbs::after {
  content: '';
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
}
.it3-bg-orbs::before {
  top: -6rem; left: -5rem;
  width: 22rem; height: 22rem;
  background: rgba(238, 97, 35, 0.22);
}
.it3-bg-orbs::after {
  top: 5rem; right: 0;
  width: 24rem; height: 24rem;
  background: rgba(56, 189, 248, 0.18);
}

/* Components */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-primary:hover {
  box-shadow: var(--shadow-glow);
  color: #fff;
  text-decoration: none;
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.7; cursor: not-allowed; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: #374151;
  background: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}
.btn-ghost:hover {
  color: var(--primary);
  background: rgba(255,255,255,0.7);
  text-decoration: none;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(238,97,35,0.3);
  color: var(--primary);
  font-weight: 600;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline:hover {
  background: rgba(238,97,35,0.05);
  border-color: rgba(238,97,35,0.5);
  text-decoration: none;
}

.input-field {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid var(--surface-border);
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  background: var(--surface);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-size: 1rem;
  color: #111827;
  outline: none;
  transition: all 0.2s;
}
.input-field:focus {
  border-color: rgba(238,97,35,0.5);
  box-shadow: 0 0 0 4px rgba(238,97,35,0.1);
}
.input-field::placeholder { color: #9ca3af; }

/* Prevent inputs/selects overlapping in shared flex/grid rows */
.it3-form-row > *,
.it3-dash-shorten-fields > *,
.it3-cron-timing-row > *,
.it3-cron-fields > *,
.it3-advanced-grid > *,
.it3-404-search > *,
.it3-cf7-form .wpcf7-form-control-wrap {
  min-width: 0;
}

.card {
  background: var(--surface);
  backdrop-filter: none;
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  border: 1px solid var(--surface-border);
  overflow: hidden;
  color: #111827;
}

.glass {
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.45);
}

.text-primary { color: var(--primary); }
.gradient-text {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Header */
.it3-header {
  position: sticky;
  top: 0;
  z-index: 50;
}
.it3-header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.it3-logo img,
.it3-logo-img {
  height: 2.25rem;
  width: auto;
  max-width: none;
  object-fit: contain;
  display: block;
  background: transparent;
}
.it3-footer-logo { height: 2.5rem; }
.it3-logo:hover { opacity: 0.92; }
.it3-header .btn-ghost {
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.it3-header .btn-ghost:hover,
.it3-tools-wrap.is-open > .btn-ghost {
  color: #fff;
  background: rgba(238, 97, 35, 0.15);
  border-color: rgba(238, 97, 35, 0.35);
}
.it3-header .btn-primary {
  box-shadow: 0 4px 14px -4px rgba(238, 97, 35, 0.55);
}
.it3-nav { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.it3-nav-home { display: none; }
.it3-nav-tools-mobile { display: inline-flex; }
.it3-nav-user { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; display: none; }
@media (min-width: 640px) {
  .it3-nav-home { display: inline-flex; }
  .it3-nav-tools-mobile { display: none; }
  .it3-nav-user { display: inline-flex; }
}

/* Tools mega menu — dark theme */
.it3-tools-wrap { position: relative; display: none; }
@media (min-width: 640px) { .it3-tools-wrap { display: block; } }
.it3-mega {
  position: fixed;
  left: 0; right: 0;
  top: 4rem;
  padding: 0.75rem 0.75rem 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease;
  pointer-events: none;
  z-index: 100;
}
.it3-tools-wrap:hover .it3-mega,
.it3-tools-wrap:focus-within .it3-mega,
.it3-tools-wrap.is-open .it3-mega,
.it3-mega.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.it3-mega::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.75rem;
  height: 0.75rem;
}
.it3-mega-panel {
  max-width: 1400px;
  margin: 0 auto;
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.98) 0%, rgba(15, 23, 42, 0.98) 55%, rgba(13, 17, 23, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow:
    0 28px 56px -20px rgba(0, 0, 0, 0.65),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}
.it3-mega-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.it3-mega-head-title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #f1f5f9;
}
.it3-mega-head-link {
  font-size: 0.75rem;
  font-weight: 600;
  color: #fdba74;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.it3-mega-head-link:hover {
  color: #fff;
  text-decoration: none;
}
.it3-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
@media (max-width: 1024px) {
  .it3-mega-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .it3-mega-grid { grid-template-columns: 1fr; }
}
.it3-mega-col {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.it3-mega-col-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}
.it3-mega-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.5rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
  background: rgba(238, 97, 35, 0.15);
  border: 1px solid rgba(238, 97, 35, 0.3);
  font-size: 0.625rem;
  font-weight: 700;
  color: #fdba74;
}
.it3-mega-col ul {
  list-style: none;
  margin: 0;
  padding: 0.375rem;
  max-height: 18rem;
  overflow-y: auto;
  scrollbar-color: rgba(238, 97, 35, 0.4) rgba(255, 255, 255, 0.06);
}
.it3-mega-col ul::-webkit-scrollbar { width: 6px; }
.it3-mega-col ul::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.04); border-radius: 3px; }
.it3-mega-col ul::-webkit-scrollbar-thumb { background: rgba(238, 97, 35, 0.35); border-radius: 3px; }
.it3-mega-col li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.it3-mega-col li a:hover {
  background: rgba(238, 97, 35, 0.12);
  color: #fff;
  transform: translateX(2px);
}
.it3-mega-icon {
  flex-shrink: 0;
  width: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
}
.it3-mega-link-title {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.it3-mega-chevron {
  flex-shrink: 0;
  color: #475569;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.it3-mega-col li a:hover .it3-mega-chevron {
  color: #fdba74;
}

/* Hero */
.it3-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.it3-hero-mesh {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(238, 97, 35, 0.2), transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(56, 189, 248, 0.12), transparent 50%);
  opacity: 1;
}
.it3-hero-orb {
  pointer-events: none;
  position: absolute;
  border-radius: 9999px;
  filter: blur(64px);
}
.it3-hero-orb-1 { top: 5rem; left: 25%; width: 18rem; height: 18rem; background: rgba(238,97,35,0.18); animation: it3-float 6s ease-in-out infinite; }
.it3-hero-orb-2 { bottom: 5rem; right: 25%; width: 24rem; height: 24rem; background: rgba(56,189,248,0.15); animation: it3-float 6s ease-in-out infinite; animation-delay: -3s; }
@keyframes it3-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes it3-slide-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.it3-animate-slide-up { animation: it3-slide-up 0.4s ease-out; }

.it3-badge {
  display: inline-flex;
  border-radius: 9999px;
  background: rgba(238,97,35,0.15);
  border: 1px solid rgba(238, 97, 35, 0.35);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #fdba74;
}
.it3-hero h1 {
  margin: 1.25rem auto 0;
  max-width: 680px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  text-align: center;
}
.it3-hero h1 .text-primary {
  background: linear-gradient(to right, #fdba74, #fb923c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.it3-hero-sub {
  margin: 1.25rem auto 0;
  max-width: 560px;
  text-align: center;
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.6;
}
.it3-hero-fineprint {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 13px;
  color: #64748b;
}

.it3-tab-bar {
  display: inline-flex;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.375rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px -12px rgba(0, 0, 0, 0.4);
}
.it3-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: 1px solid transparent;
  background: transparent;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
}
.it3-tab.active {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--surface);
  color: var(--primary);
  box-shadow: var(--shadow-soft);
}

.it3-shorten-wrap { max-width: 42rem; margin: 2.5rem auto 0; padding: 0 1rem; }
.it3-shorten-card { padding: 1.5rem 2rem; transition: box-shadow 0.3s; }
.it3-shorten-card:hover { box-shadow: var(--shadow-card-hover); }

/* Tools index */
.it3-tools-index-shell {
  padding-bottom: 3rem;
}
.it3-tools-hero-v2 {
  display: grid;
  gap: 1.75rem;
  border-radius: 1.5rem;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  color: #fff;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(251, 146, 60, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(56, 189, 248, 0.25), transparent 50%),
    linear-gradient(135deg, #0f172a 0%, #1e3a5f 45%, #312e81 100%);
  box-shadow: 0 24px 48px -24px rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 900px) {
  .it3-tools-hero-v2 {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}
.it3-tools-hero-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(251, 191, 36, 0.95);
}
.it3-tools-hero-v2 h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}
.it3-tools-hero-lead {
  margin: 0.85rem 0 0;
  max-width: 40rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}
.it3-tools-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}
.it3-tools-hero-stat {
  padding: 0.85rem 1rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  text-align: center;
}
.it3-tools-hero-stat strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.it3-tools-hero-stat span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}
.it3-tools-toolbar {
  position: sticky;
  top: 4.5rem;
  z-index: 40;
  margin-top: 1.5rem;
  padding: 1.125rem 1.25rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(12px);
}
.it3-tools-toolbar-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
}
.it3-tools-search-field {
  flex: 1 1 16rem;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0 1rem;
  border-radius: 0.875rem;
  border: 1px solid #cbd5e1;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.it3-tools-search-field:focus-within {
  border-color: rgba(238, 97, 35, 0.55);
  box-shadow: 0 0 0 4px rgba(238, 97, 35, 0.12);
}
.it3-tools-search-icon {
  flex-shrink: 0;
  font-size: 1rem;
  opacity: 0.55;
}
.it3-tools-search-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0.875rem 0;
  font-size: 1rem;
  color: #0f172a;
  outline: none;
}
.it3-tools-search-field input::placeholder {
  color: #94a3b8;
}
.it3-tools-clear-btn {
  flex-shrink: 0;
  align-self: center;
  padding: 0.65rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #475569;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.it3-tools-clear-btn:hover {
  border-color: #cbd5e1;
  color: #0f172a;
  background: #fff;
}
.it3-tools-pills-wrap {
  margin-top: 0.875rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.it3-tools-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  min-width: min-content;
}
.it3-tools-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.it3-tools-pill:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}
.it3-tools-pill.is-active {
  border-color: rgba(238, 97, 35, 0.45);
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  color: #c2410c;
  box-shadow: 0 4px 14px -6px rgba(238, 97, 35, 0.45);
}
.it3-tools-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.35rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #f1f5f9;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #64748b;
}
.it3-tools-pill.is-active .it3-tools-pill-count {
  background: rgba(238, 97, 35, 0.15);
  color: #c2410c;
}
.it3-tools-result-meta {
  margin: 0.75rem 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
}
.it3-tools-results {
  margin-top: 1.75rem;
}
.it3-tools-section {
  margin-bottom: 2.5rem;
}
.it3-tools-section.is-empty {
  display: none;
}
.it3-tools-index--filtered .it3-tools-section-head {
  display: none;
}
.it3-tools-index--filtered .it3-tools-section:not(.is-empty) {
  margin-bottom: 1.5rem;
}
.it3-tools-index--filtered .it3-tools-section.is-empty {
  display: none;
}
.it3-tools-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
}
.it3-tools-section-head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.it3-tools-section-count {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.it3-tools-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.it3-tool-card-v2 {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 4px 20px -12px rgba(15, 23, 42, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}
.it3-tool-card-v2::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #f97316);
  opacity: 0;
  transition: opacity 0.22s;
}
.it3-tool-card-v2:hover {
  transform: translateY(-4px);
  border-color: rgba(238, 97, 35, 0.35);
  box-shadow: 0 20px 40px -20px rgba(238, 97, 35, 0.35);
}
.it3-tool-card-v2:hover::before {
  opacity: 1;
}
.it3-tool-card-v2.is-hidden {
  display: none !important;
}
.it3-tool-card-v2-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border: 1px solid rgba(238, 97, 35, 0.15);
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.875rem;
}
.it3-tool-card-v2[data-category="SEO"] .it3-tool-card-v2-icon {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-color: rgba(16, 185, 129, 0.2);
}
.it3-tool-card-v2[data-category="Developer"] .it3-tool-card-v2-icon {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border-color: rgba(99, 102, 241, 0.2);
}
.it3-tool-card-v2[data-category="Communication"] .it3-tool-card-v2-icon {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-color: rgba(59, 130, 246, 0.2);
}
.it3-tool-card-v2[data-category="Utility"] .it3-tool-card-v2-icon {
  background: linear-gradient(135deg, #fff7ed, #fed7aa);
  border-color: rgba(249, 115, 22, 0.2);
}
.it3-tool-card-v2[data-category="Image Tools"] .it3-tool-card-v2-icon {
  background: linear-gradient(135deg, #fdf4ff, #fae8ff);
  border-color: rgba(192, 38, 211, 0.2);
}
.it3-tool-card-v2[data-category="Marketing"] .it3-tool-card-v2-icon {
  background: linear-gradient(135deg, #fefce8, #fef08a);
  border-color: rgba(202, 138, 4, 0.2);
}
.it3-tool-card-v2-body {
  flex: 1;
  min-width: 0;
}
.it3-tool-card-v2-cat {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.it3-tool-card-v2-title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.it3-tool-card-v2-desc {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.it3-tool-card-v2-cta {
  margin-top: 1rem;
  padding-top: 0.875rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  transition: gap 0.2s;
}
.it3-tool-card-v2:hover .it3-tool-card-v2-cta span {
  display: inline-block;
  transform: translateX(3px);
  transition: transform 0.2s;
}
.it3-tool-card-v2-link {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}
.it3-tool-card-v2-link:focus-visible {
  outline: 3px solid rgba(238, 97, 35, 0.55);
  outline-offset: 2px;
}
.it3-tools-empty {
  margin-top: 2rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px dashed #cbd5e1;
  background: #f8fafc;
}
.it3-tools-empty-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.it3-tools-empty h2 {
  margin: 0;
  font-size: 1.25rem;
  color: #0f172a;
}
.it3-tools-empty p {
  margin: 0.5rem 0 1.25rem;
  color: #64748b;
  font-size: 0.9375rem;
}
.it3-tools-footnote {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  border-radius: 0.875rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #475569;
}

.it3-yt-meta {
  margin: 1rem 0 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.5;
}
.it3-yt-meta strong { color: #fff; }
.it3-yt-meta span { color: rgba(255, 255, 255, 0.55); font-size: 0.8125rem; }
.it3-yt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.it3-yt-tag-chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(238, 97, 35, 0.35);
  background: rgba(255, 247, 237, 0.95);
  color: #c2410c;
  font-size: 0.8125rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.it3-yt-tag-chip:hover { background: #ffedd5; transform: translateY(-1px); }
.it3-yt-tag-chip.is-copied { background: #dcfce7; border-color: #86efac; color: #166534; }
.it3-yt-thumb-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin-top: 1rem;
}
.it3-yt-thumb-card {
  border-radius: 0.875rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 24px -16px rgba(15, 23, 42, 0.35);
}
.it3-yt-thumb-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0f172a;
}
.it3-yt-thumb-info {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0.875rem 1rem;
}
.it3-yt-thumb-info strong { font-size: 0.875rem; color: #0f172a; }
.it3-yt-thumb-info span { font-size: 0.75rem; color: #64748b; }
.it3-yt-thumb-dl { align-self: flex-start; margin-top: 0.35rem; }

.it3-tools-hero {
  border-radius: 1.5rem;
  background: linear-gradient(to bottom right, #0284c7, #2563eb, #4338ca);
  padding: 2.5rem 2rem;
  color: #fff;
  box-shadow: var(--shadow-soft);
}
.it3-tools-hero h1 { color: #fff; font-size: 2.25rem; font-weight: 900; margin: 0; }
.it3-tool-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: all 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.it3-tool-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.08);
  text-decoration: none;
}
.it3-tool-card h3 { margin: 0.25rem 0; font-size: 1.125rem; font-weight: 700; color: #0f172a; }
.it3-tool-card .cat { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #64748b; }
.it3-tool-card .desc { font-size: 0.875rem; color: #475569; margin: 0.25rem 0 0; }
.it3-tool-card .link { margin-top: 1rem; font-weight: 600; color: var(--primary); }

.it3-grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

/* Tool page layout */
.it3-tool-page { min-height: 60vh; }
.it3-breadcrumb {
  font-size: 12px;
  color: var(--text-muted-on-dark);
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.it3-breadcrumb a { color: #cbd5e1; text-decoration: none; }
.it3-breadcrumb a:hover { color: #fdba74; }
.it3-breadcrumb span:last-child { color: #f1f5f9; font-weight: 500; }
.it3-tool-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 0.5rem; }
.it3-tool-icon { font-size: 28px; line-height: 1; }
.it3-tool-head h1 { font-size: 22px; font-weight: 700; margin: 0 0 4px; line-height: 1.2; }
.it3-tool-head p { font-size: 14px; color: #64748b; margin: 0; }
.it3-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  background: #ecfdf3;
  color: #166534;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.it3-tool-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px -8px rgba(15, 23, 42, 0.08);
}

.it3-output {
  margin-top: 1rem;
  padding: 1rem;
  background: #f1f5f9;
  border-radius: 0.75rem;
  font-family: ui-monospace, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

/* Footer — premium dark */
.it3-footer {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  background: linear-gradient(165deg, #0f172a 0%, #111827 42%, #0d1117 100%);
  color: #cbd5e1;
  padding: 0 0 clamp(1.75rem, 3vw, 2.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.it3-footer-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(238, 97, 35, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(56, 189, 248, 0.12), transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(238, 97, 35, 0.08), transparent 60%);
}
.it3-footer-inner {
  position: relative;
  z-index: 1;
  padding-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-bottom: 0.5rem;
}
.it3-footer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  margin: 0 0 3rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem);
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}
.it3-footer-kicker {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(238, 97, 35, 0.15);
  border: 1px solid rgba(238, 97, 35, 0.35);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fdba74;
}
.it3-footer-cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.it3-footer-cta-desc {
  margin: 0;
  max-width: 32rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #94a3b8;
}
.it3-footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.it3-footer-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.it3-footer-btn-ghost:hover {
  border-color: rgba(238, 97, 35, 0.5);
  background: rgba(238, 97, 35, 0.12);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}
.it3-footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  gap: 2.5rem 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 960px) {
  .it3-footer-main { grid-template-columns: 1fr; }
}
.it3-footer-brand-logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.it3-footer-logo {
  height: 2.75rem;
}
.it3-footer-tagline {
  margin: 0 0 1.25rem;
  max-width: 22rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.it3-footer-tagline-brand {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fdba74;
  letter-spacing: 0.01em;
}
.it3-footer-tagline-desc {
  display: block;
  color: #94a3b8;
  font-weight: 400;
}
.it3-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.it3-footer-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.it3-footer-social-label {
  display: block;
  margin-bottom: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}
.it3-footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.it3-footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}
@media (max-width: 1100px) {
  .it3-footer-columns { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .it3-footer-columns { grid-template-columns: 1fr; }
}
.it3-footer-col-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #f8fafc;
}
.it3-footer-col-title--spaced {
  margin-top: 1.75rem;
}
.it3-footer-col-icon {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.5rem;
  background: rgba(238, 97, 35, 0.15);
  font-size: 0.875rem;
  line-height: 1;
}
.it3-footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.it3-footer-links li {
  margin: 0;
}
.it3-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0;
  font-size: 0.875rem;
  line-height: 1.45;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
}
.it3-footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.2s;
}
.it3-footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}
.it3-footer-links a:hover::before {
  width: 0.75rem;
}
.it3-footer-link-accent {
  color: #fdba74 !important;
  font-weight: 600;
}
.it3-footer-link-accent:hover {
  color: #fff !important;
}
.it3-footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.75rem 1.5rem;
  padding-top: 1.75rem;
  font-size: 0.8125rem;
  color: #64748b;
}
.it3-footer-bottom-copy {
  justify-self: start;
}
.it3-footer-bottom p {
  margin: 0;
}
.it3-made-in-india {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-self: center;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(255, 153, 51, 0.18) 0%,
    rgba(255, 255, 255, 0.06) 48%,
    rgba(19, 136, 8, 0.16) 100%
  );
  border: 1px solid rgba(255, 153, 51, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 4px 24px rgba(255, 153, 51, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.it3-made-in-india:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 6px 28px rgba(255, 153, 51, 0.22);
}
.it3-made-in-india-flag {
  display: block;
  width: 1.75rem;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  flex-shrink: 0;
}
.it3-made-in-india-text {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  background: linear-gradient(90deg, #ff9933 0%, #ffffff 45%, #138808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.it3-made-in-india-text strong {
  font-weight: 800;
}
.it3-footer-bottom strong {
  color: #e2e8f0;
  font-weight: 600;
}
.it3-footer-bottom-tag {
  justify-self: end;
  text-align: right;
  font-style: italic;
  color: #475569;
}
.it3-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 0.5rem 1rem;
  border-radius: 0.625rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s, transform 0.15s;
}
.it3-social-btn:hover {
  border-color: rgba(238, 97, 35, 0.45);
  background: rgba(238, 97, 35, 0.12);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.it3-social-icon {
  display: inline-grid;
  place-items: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.375rem;
  background: rgba(15, 23, 42, 0.6);
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
.it3-social-icon--in {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .it3-footer-cta {
    padding: 1.25rem 1.25rem;
  }
  .it3-footer-cta-actions {
    width: 100%;
  }
  .it3-footer-cta-actions .btn-primary,
  .it3-footer-cta-actions .it3-footer-btn-ghost {
    flex: 1 1 auto;
    justify-content: center;
    min-width: calc(50% - 0.375rem);
  }
  .it3-footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .it3-footer-bottom-copy,
  .it3-footer-bottom-tag {
    justify-self: center;
    text-align: center;
  }
  .it3-made-in-india {
    order: -1;
  }
}

/* ─── Blog playlist grid (Flamingo Estate–inspired) ─── */
.it3-blog-page.it3-body,
body.it3-blog-page {
  background-color: var(--dark-surface);
  background-image:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(238, 97, 35, 0.18), transparent 52%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(56, 189, 248, 0.14), transparent 48%),
    linear-gradient(180deg, #0f172a 0%, #111827 45%, #0d1117 100%);
}

.it3-blog-playlist {
  min-height: calc(100vh - 160px);
  background: transparent;
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
}
.it3-blog-playlist-wrap {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .it3-blog-playlist-wrap { padding: 0 2rem; }
}

.it3-blog-playlist-head {
  margin-bottom: 2.5rem;
  max-width: 42rem;
}
.it3-blog-playlist-eyebrow {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fdba74;
}
.it3-blog-playlist-title {
  margin: 0.5rem 0 0;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
}
.it3-blog-playlist-lead {
  margin: 0.875rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #94a3b8;
}
.it3-blog-playlist-lead strong { color: #e2e8f0; font-weight: 600; }

.it3-blog-playlist-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.it3-blog-playlist-cats a {
  display: inline-flex;
  padding: 0.4rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid #e2ddd8;
  background: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s;
}
.it3-blog-playlist-cats a:hover,
.it3-blog-playlist-cats a.is-active {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 247, 237, 0.8);
}

.it3-blog-playlist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem 1.25rem;
}
@media (min-width: 540px) {
  .it3-blog-playlist-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .it3-blog-playlist-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem 1.5rem; }
}

.it3-playlist-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #ebe6e0;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s;
}
.it3-playlist-card:hover {
  transform: translateY(-4px);
  border-color: #d6d0c8;
  box-shadow: 0 12px 40px -12px rgba(15, 23, 42, 0.18);
}

.it3-playlist-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f3f0eb;
  text-decoration: none;
}
.it3-playlist-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.it3-playlist-card:hover .it3-playlist-card-media img {
  transform: scale(1.04);
}
.it3-playlist-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #fff7ed 0%, #ffedd5 100%);
}
.it3-playlist-card-placeholder span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.85;
}
.it3-playlist-card-play {
  position: absolute;
  right: 0.875rem;
  bottom: 0.875rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #0d0d0d;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
}
.it3-playlist-card:hover .it3-playlist-card-play {
  opacity: 1;
  transform: translateY(0);
}

.it3-playlist-card-body {
  padding: 1.125rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}
.it3-playlist-card-cat {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
}
.it3-playlist-card-cat:hover { text-decoration: underline; }
.it3-playlist-card-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.it3-playlist-card-title a {
  color: #0d0d0d;
  text-decoration: none;
  transition: color 0.2s;
}
.it3-playlist-card-title a:hover { color: var(--primary); }
.it3-playlist-card-meta {
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}
.it3-playlist-card-views {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}
.it3-playlist-card-views-icon {
  font-size: 0.8125rem;
  line-height: 1;
  opacity: 0.85;
}

.it3-blog-playlist-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 1rem;
  border: 1px dashed #d6d0c8;
  background: #fff;
  color: #6b7280;
}
.it3-blog-playlist-empty .btn-outline { margin-top: 1rem; display: inline-flex; }

.it3-blog-playlist-wrap .navigation.pagination,
.it3-blog-playlist-wrap .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 3rem;
}
.it3-blog-playlist-wrap .navigation.pagination h2 {
  display: none;
}
.it3-blog-playlist-wrap .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0 0.75rem;
  border-radius: 9999px;
  border: 1px solid #e2ddd8;
  background: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.2s;
}
.it3-blog-playlist-wrap .page-numbers:hover,
.it3-blog-playlist-wrap .page-numbers.current {
  border-color: var(--primary);
  background: rgba(238, 97, 35, 0.08);
  color: var(--primary);
}

/* ─── Blog single post ─── */
.it3-blog-single {
  background: transparent;
  padding: clamp(2.5rem, 5vw, 4rem) 0 0;
  min-height: calc(100vh - 160px);
}
.it3-blog-post {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1rem;
  color: #1a1a1a;
  line-height: 1.8;
  font-size: 17px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
}
@media (min-width: 640px) { .it3-blog-post { padding: 2.5rem 2rem; } }

.it3-blog-breadcrumb { margin-bottom: 1.25rem; color: var(--text-muted-on-dark); }
.it3-blog-breadcrumb a { color: #cbd5e1; }
.it3-blog-breadcrumb a:hover { color: #fdba74; }
.it3-blog-breadcrumb span:last-child {
  color: #f1f5f9;
  font-weight: 500;
  max-width: 12rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.it3-bp-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  align-items: center;
}
.it3-bp-cat-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-right: 0.25rem;
}
.it3-bp-cat {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.it3-bp-cat-primary {
  background: var(--primary);
  color: #fff;
}
.it3-bp-cat-primary:hover { background: var(--primary-dark); color: #fff; }
.it3-bp-cat-secondary {
  background: #fff;
  border: 1.5px solid #e2ddd8;
  color: #666;
}
.it3-bp-cat-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 247, 237, 0.8);
}

.it3-bp-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #0d0d0d;
  margin: 0 0 1.125rem;
}
.it3-bp-excerpt {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.it3-bp-meta {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
  margin-bottom: 1.875rem;
}
.it3-bp-avatar {
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.it3-bp-author-name {
  font-size: 0.875rem;
  font-weight: 700;
  display: block;
  color: #0d0d0d;
}
.it3-bp-author-date {
  font-size: 0.8125rem;
  color: #888;
  display: block;
}
.it3-bp-meta-sep {
  width: 1px;
  height: 1.625rem;
  background: #e2ddd8;
}
.it3-bp-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  border: 1px solid #e2ddd8;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #777;
}

.it3-bp-figure { margin: 0 0 1.875rem; }
.it3-bp-hero-img {
  border-radius: 1.125rem;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,.06), 0 16px 40px rgba(0,0,0,.14);
}
.it3-bp-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.it3-bp-body { color: #2e2e2e; }

/* Blog article content typography */
.it3-blog-content,
.it3-blog-content.entry-content {
  font-size: 17px;
  line-height: 1.8;
  color: #2e2e2e;
}
.it3-blog-content p { margin: 0 0 1.375rem; }
.it3-blog-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #0d0d0d;
  margin: 3.125rem 0 0.875rem;
  padding-top: 3.125rem;
  border-top: 1px solid #e8e4de;
}
.it3-blog-content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.it3-blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  color: #0d0d0d;
  margin: 1.875rem 0 0.625rem;
}
.it3-blog-content h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #334155;
  margin: 1.25rem 0 0.5rem;
}
.it3-blog-content ul,
.it3-blog-content ol {
  padding-left: 1.375rem;
  margin: 0 0 1.375rem;
}
.it3-blog-content li {
  margin-bottom: 0.5rem;
  line-height: 1.75;
}
.it3-blog-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(238, 97, 35, 0.35);
}
.it3-blog-content a:hover { text-decoration-color: var(--primary); }
.it3-blog-content blockquote {
  background: #fff8f3;
  border-left: 5px solid var(--primary);
  border-radius: 0 14px 14px 0;
  padding: 1.5rem 1.75rem;
  margin: 1.25rem 0;
  color: #4b5563;
}
.it3-blog-content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.875rem;
  margin: 1rem 0;
  box-shadow: 0 4px 16px -6px rgba(15, 23, 42, 0.15);
}
.it3-blog-content pre {
  background: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 0.85rem;
  overflow-x: auto;
  margin: 1rem 0;
}
.it3-blog-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9em;
}
.it3-blog-content hr {
  border: 0;
  border-top: 1px solid #cbd5e1;
  margin: 1.5rem 0;
}
.it3-blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.9375rem;
}
.it3-blog-content th,
.it3-blog-content td {
  border: 1px solid #e2e8f0;
  padding: 0.625rem 0.75rem;
  text-align: left;
}
.it3-blog-content th { background: #f8fafc; font-weight: 700; }

.it3-bp-cta {
  position: relative;
  overflow: hidden;
  background: #0d0d0d;
  border-radius: 1.125rem;
  padding: 2.75rem 2.25rem;
  text-align: center;
  margin: 3rem 0 0;
  color: #fff;
}
.it3-bp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 50% -20%, rgba(238, 97, 35, 0.45), transparent);
  pointer-events: none;
}
.it3-bp-cta-inner { position: relative; z-index: 1; }
.it3-bp-cta h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.625rem;
  border: none;
  padding: 0;
}
.it3-bp-cta p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 1.5rem;
}
.it3-bp-cta-btns {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  flex-wrap: wrap;
}
.it3-bp-btn-w {
  background: #fff;
  color: #0d0d0d;
  padding: 0.75rem 1.625rem;
  border-radius: 0.5625rem;
  font-weight: 800;
  font-size: 0.875rem;
  text-decoration: none;
}
.it3-bp-btn-o {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 0.75rem 1.625rem;
  border-radius: 0.5625rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}
.it3-bp-btn-o:hover { border-color: #fff; color: #fff; }

.it3-bp-tags-section {
  margin-top: 2.75rem;
  padding: 1.75rem;
  background: #fff;
  border: 1.5px solid #e2ddd8;
  border-radius: 1.125rem;
}
.it3-bp-tags-title {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.it3-bp-tags-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2ddd8;
}
.it3-bp-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.it3-bp-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.4375rem 0.9375rem;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid #e2ddd8;
  color: #3a3a3a;
  background: #faf9f7;
  transition: all 0.2s;
}
.it3-bp-hash { color: var(--primary); font-weight: 800; }
.it3-bp-tag:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.it3-bp-tag:hover .it3-bp-hash { color: #fff; }

.it3-bp-share {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid #e8e4de;
}
.it3-bp-share-lbl { font-size: 0.8125rem; font-weight: 700; color: #888; }
.it3-bp-share-btn {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 0.5625rem;
  background: #faf9f7;
  border: 1.5px solid #e2ddd8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 800;
  color: #0d0d0d;
  text-decoration: none;
  transition: all 0.2s;
}
.it3-bp-share-btn:hover {
  background: #0d0d0d;
  color: #fff;
  border-color: #0d0d0d;
}

.it3-bp-author {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #e2ddd8;
  border-radius: 1.125rem;
  padding: 1.5rem;
  margin-top: 1.75rem;
}
@media (max-width: 480px) { .it3-bp-author { flex-direction: column; } }
.it3-bp-author-av {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #0d9488);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.it3-bp-author-tag {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.2rem;
  display: block;
}
.it3-bp-author-name-lg {
  font-size: 1.0625rem;
  color: #0d0d0d;
}
.it3-bp-author-bio {
  font-size: 0.875rem;
  color: #777;
  line-height: 1.7;
  margin: 0.5rem 0 0.75rem;
}
.it3-bp-author-links { display: flex; gap: 0.4375rem; flex-wrap: wrap; }
.it3-bp-author-link {
  padding: 0.35rem 0.75rem;
  border-radius: 0.4375rem;
  background: #faf9f7;
  border: 1px solid #e2ddd8;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
  text-decoration: none;
}
.it3-bp-author-link:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.it3-bp-post-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.75rem;
}
.it3-bp-post-nav-spacer {
  display: block;
}
.it3-bp-post-nav-link {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.25rem 1.375rem;
  border: 1.5px solid #e2ddd8;
  border-radius: 1rem;
  background: #faf9f7;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 4.75rem;
}
.it3-bp-post-nav-prev {
  text-align: left;
}
.it3-bp-post-nav-next {
  text-align: right;
  align-items: flex-end;
}
.it3-bp-post-nav-link:hover {
  border-color: var(--primary);
  background: rgba(238, 97, 35, 0.06);
  box-shadow: 0 4px 20px rgba(238, 97, 35, 0.1);
}
.it3-bp-post-nav-dir {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}
.it3-bp-post-nav-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0d0d0d;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.it3-bp-post-nav-link:hover .it3-bp-post-nav-title {
  color: var(--primary-dark);
}
@media (max-width: 640px) {
  .it3-bp-post-nav {
    grid-template-columns: 1fr;
  }
  .it3-bp-post-nav-spacer {
    display: none;
  }
  .it3-bp-post-nav-next {
    text-align: left;
    align-items: flex-start;
  }
}

.it3-wrap { max-width: 72rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.it3-wrap-wide { max-width: 80rem; margin: 0 auto; padding-left: 1rem; padding-right: 1rem; }
.it3-wrap-wide.it3-footer-inner {
  padding-top: clamp(2.75rem, 5vw, 4.25rem);
  padding-bottom: 0.5rem;
}

/* Page shells — consistent vertical rhythm */
.it3-page-shell {
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: 0;
}
.it3-tool-page.it3-wrap-wide {
  padding-top: clamp(1.25rem, 3vw, 2rem);
  padding-bottom: 0;
}

.spinner {
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 9999px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Homepage sections */
.it3-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .it3-form-row { flex-direction: row; flex-wrap: wrap; align-items: stretch; }
  .it3-form-row .input-field { flex: 1 1 10rem; min-width: 0; }
}
.it3-advanced-toggle {
  margin-top: 0.75rem;
  background: none;
  border: none;
  padding: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}
.it3-advanced-toggle:hover { text-decoration: underline; }
.it3-advanced-grid {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
.it3-advanced-grid[hidden] {
  display: none !important;
}
@media (min-width: 640px) { .it3-advanced-grid:not([hidden]) { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }

.it3-form-error[hidden],
.it3-result-success[hidden],
#it3-qr-result[hidden],
#it3-qr-error[hidden],
#it3-shorten-error[hidden],
#it3-shorten-result[hidden] {
  display: none !important;
}
.it3-form-error {
  margin-top: 0.75rem;
  color: #dc2626;
  font-size: 0.875rem;
  font-weight: 500;
}
.it3-result-success {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(to right, #ecfdf5, #f0fdf4);
  border: 1px solid rgba(16,185,129,0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.it3-result-success.is-copied-flash {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.22);
}
.it3-copy-btn.is-copied {
  background: #047857 !important;
  border-color: #047857 !important;
  color: #fff !important;
}
.it3-copy-btn.is-copy-failed {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
}
.it3-qr-success.is-copied-flash {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}
.it3-qr-success {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(to right, #fff7ed, #fffbeb);
  border: 1px solid rgba(251,146,60,0.4);
}
@media (min-width: 640px) {
  .it3-qr-success { flex-direction: row; align-items: center; }
}
.it3-section-white {
  background: var(--surface);
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 -1px 0 rgba(15, 23, 42, 0.06);
}
.it3-section-slate {
  background: var(--surface-muted);
  padding: clamp(3rem, 6vw, 5rem) 0;
  color: #111827;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.it3-section-title {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.it3-section-sub {
  text-align: center;
  max-width: 480px;
  margin: 0.75rem auto 3rem;
  color: #4b5563;
  line-height: 1.6;
  font-size: 1.05rem;
}
.it3-features-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 68rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .it3-features-grid { grid-template-columns: repeat(3, 1fr); } }
.it3-feature-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  background: #fff;
  padding: 1.75rem;
  position: relative;
}
.it3-feature-popular { border: 2px solid var(--primary); }
.it3-popular-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}
.it3-feature-icon { font-size: 2rem; margin-bottom: 1rem; }
.it3-feature-card h3 { margin: 0 0 0.5rem; font-size: 1.25rem; font-weight: 600; color: #111827; }
.it3-feature-card p { margin: 0 0 1rem; font-size: 0.9375rem; line-height: 1.6; color: #4b5563; }
.it3-feature-card ul { list-style: none; margin: 0 0 1.25rem; padding: 0; font-size: 0.875rem; color: #4b5563; }
.it3-feature-card li { margin: 0.25rem 0; }
.it3-feature-link { font-size: 0.875rem; font-weight: 500; color: var(--primary); text-decoration: none; }
.it3-feature-link:hover { text-decoration: underline; }
.it3-usecases-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 68rem;
  margin: 0 auto;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .it3-usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .it3-usecases-grid { grid-template-columns: repeat(3, 1fr); } }
.it3-usecase-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  padding: 1.5rem;
}
.it3-usecase-icon { display: block; font-size: 1.75rem; margin-bottom: 0.75rem; }
.it3-usecase-card h3 { margin: 0 0 0.5rem; font-size: 1rem; font-weight: 600; color: #111827; }
.it3-usecase-card p { margin: 0; font-size: 0.875rem; line-height: 1.6; color: #4b5563; }
.it3-cta-box {
  max-width: 44rem;
  margin: 0 auto;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, #f97316 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  color: #fff;
}
.it3-cta-box h2 { margin: 0 0 0.75rem; font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 700; color: #fff; }
.it3-cta-box > p { margin: 0 0 2rem; color: rgba(255,255,255,0.85); line-height: 1.6; font-size: 1.05rem; }
.it3-cta-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.it3-cta-primary {
  display: inline-flex;
  border-radius: 0.5rem;
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  padding: 0.875rem 2rem;
  text-decoration: none;
  transition: transform 0.2s;
}
.it3-cta-primary:hover { transform: scale(1.02); color: var(--primary); }
.it3-cta-secondary {
  display: inline-flex;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: #fff;
  font-weight: 500;
  padding: 0.875rem 2rem;
  text-decoration: none;
}
.it3-cta-secondary:hover { background: rgba(255,255,255,0.1); color: #fff; }
.it3-cta-foot { margin: 1.25rem 0 0; font-size: 13px; color: rgba(255,255,255,0.6); }
.it3-cta-foot a { color: rgba(255,255,255,0.85); text-decoration: underline; }
.it3-tools-search-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .it3-tools-search-grid { grid-template-columns: minmax(0,1fr) 220px auto; align-items: stretch; }
}
.text-sm { font-size: 0.875rem; }

/* Auth pages */
.it3-auth-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}
.it3-auth-card {
  width: 100%;
  max-width: 28rem;
  padding: 2rem 2.5rem;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: #111827;
}
.it3-auth-title {
  margin: 0;
  text-align: center;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  font-weight: 700;
  color: #111827;
}
.it3-auth-sub {
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  color: #4b5563;
}
.it3-auth-sub a {
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}
.it3-auth-sub a:hover { text-decoration: underline; }
.it3-auth-form {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.it3-google-signin-block {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.it3-google-signin-wrap {
  display: flex;
  justify-content: center;
  min-height: 44px;
}
.it3-google-fallback-btn {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border: 1px solid #dadce0;
  border-radius: 0.5rem;
  background: #fff;
  color: #3c4043;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.it3-google-fallback-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.15);
}
.it3-google-fallback-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.it3-auth-google-hint {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #9ca3af;
  text-align: center;
}
.it3-auth-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0 0.25rem;
  color: #9ca3af;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.it3-auth-divider::before,
.it3-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}
.it3-auth-divider span {
  padding: 0 0.15rem;
}
.it3-auth-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.it3-auth-muted {
  font-weight: 400;
  color: #9ca3af;
}
.it3-auth-error {
  margin: 0;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #fef2f2;
  border: 1px solid rgba(254, 202, 202, 0.6);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 500;
}
.it3-auth-success {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  background: #f0fdf4;
  border: 1px solid rgba(134, 239, 172, 0.6);
  color: #15803d;
  font-size: 0.875rem;
  font-weight: 500;
}
.it3-auth-forgot {
  margin: -0.25rem 0 0;
  text-align: right;
  font-size: 0.875rem;
}
.it3-auth-forgot a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.it3-auth-forgot a:hover {
  text-decoration: underline;
}
.it3-auth-submit {
  width: 100%;
  padding: 0.875rem 1.5rem;
  margin-top: 0.25rem;
}

/* ─── Dashboard (Next.js parity) ─── */
.it3-dashboard-page .it3-dashboard-page,
body.it3-dashboard-page {
  background-color: var(--dark-surface);
  background-image:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(238, 97, 35, 0.18), transparent 52%),
    radial-gradient(ellipse 55% 45% at 92% 8%, rgba(56, 189, 248, 0.14), transparent 48%),
    linear-gradient(180deg, #0f172a 0%, #111827 45%, #0d1117 100%);
}
.it3-dashboard-page {
  padding: clamp(1rem, 2.5vw, 2rem) 0 3rem;
}
.it3-dashboard-shell {
  max-width: 88rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .it3-dashboard-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 1.5rem;
    padding: 0 1.5rem;
  }
}
.it3-dash-menu-toggle {
  display: inline-flex;
  align-self: start;
  border-radius: 9999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.25) !important;
}
@media (min-width: 1024px) {
  .it3-dash-menu-toggle { display: none; }
}

.it3-dash-sidebar {
  display: none;
  border-radius: 1.25rem;
  padding: 1rem;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.92) 0%, rgba(17, 24, 39, 0.88) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(16px);
}
.it3-dash-sidebar.is-open { display: block; }
@media (min-width: 1024px) {
  .it3-dash-sidebar {
    display: block;
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}

.it3-dash-user-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}
.it3-dash-avatar-wrap { flex-shrink: 0; }
.it3-dash-avatar,
.it3-dash-avatar-img {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.it3-dash-avatar:not(.it3-dash-avatar-img) {
  background: linear-gradient(135deg, rgba(238, 97, 35, 0.35), rgba(251, 146, 60, 0.2));
  color: #fff;
  font-size: 1.125rem;
  font-weight: 800;
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.it3-dash-avatar-img {
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 20px -8px rgba(238, 97, 35, 0.65);
}
.it3-dash-avatar-sm { width: 2rem; height: 2rem; font-size: 0.75rem; }
.it3-dash-avatar-md { width: 3.5rem; height: 3.5rem; font-size: 1.25rem; }
.it3-dash-avatar-lg { width: 3.75rem; height: 3.75rem; font-size: 1.35rem; }
.it3-dash-avatar-xl { width: 7.5rem; height: 7.5rem; font-size: 2rem; }
.it3-dash-avatar-hero {
  width: 5rem;
  height: 5rem;
  font-size: 1.75rem;
  border-width: 3px;
}
.it3-dash-user-name {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f8fafc;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.it3-dash-user-email {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: #94a3b8;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.it3-dash-provider-badge {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  background: rgba(66, 133, 244, 0.18);
  color: #93c5fd;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.it3-dash-nav {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.it3-dash-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.875rem;
  border-radius: 0.875rem;
  border: 1px solid transparent;
  background: transparent;
  color: #cbd5e1;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.it3-dash-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(3px);
}
.it3-dash-nav-link.is-active {
  background: linear-gradient(90deg, rgba(238, 97, 35, 0.22), rgba(238, 97, 35, 0.08));
  border-color: rgba(238, 97, 35, 0.35);
  color: #fdba74;
}
.it3-dash-nav-icon { font-size: 1.05rem; width: 1.35rem; text-align: center; }

.it3-dash-sidebar-foot {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.it3-dash-sidebar-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #94a3b8;
  text-decoration: none;
  padding: 0.35rem 0.5rem;
}
.it3-dash-sidebar-link:hover { color: #fff; }
.it3-dash-sidebar-logout { color: #fca5a5; }

.it3-dashboard-main { min-width: 0; }
.it3-dash-panel {
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 32px 64px -32px rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(12px);
}
.it3-dash-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #e2e8f0;
}
@media (min-width: 768px) {
  .it3-dash-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.it3-dash-page-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.it3-dash-header h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}
.it3-dash-header p {
  margin: 0.5rem 0 0;
  color: #64748b;
  line-height: 1.5;
}
.it3-dash-header-user { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; }
.it3-dash-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.45rem 0.875rem 0.45rem 0.45rem;
  border-radius: 9999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}

.it3-dash-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(120deg, #fff7ed 0%, #ffedd5 45%, #fef3c7 100%);
  border: 1px solid #fed7aa;
}
.it3-dash-welcome-kicker {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c2410c;
}
.it3-dash-welcome h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: #0f172a;
  letter-spacing: -0.02em;
}
.it3-dash-welcome p {
  margin: 0.35rem 0 0;
  color: #7c2d12;
  font-size: 0.9375rem;
}
@media (max-width: 640px) {
  .it3-dash-welcome { flex-direction: column; align-items: flex-start; }
  .it3-dash-avatar-hero { align-self: flex-end; }
}

.it3-dash-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 1.25rem;
}
.it3-dash-quick-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.95rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.it3-dash-quick-action:hover {
  border-color: rgba(238, 97, 35, 0.35);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -12px rgba(238, 97, 35, 0.55);
}

.it3-dash-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
@media (min-width: 640px) {
  .it3-dash-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .it3-dash-stats { grid-template-columns: repeat(4, 1fr); }
}
.it3-dash-stat {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 24px -18px rgba(15, 23, 42, 0.25);
  transition: transform 0.2s, box-shadow 0.2s;
}
.it3-dash-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -20px rgba(238, 97, 35, 0.35);
}
.it3-dash-stat-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.it3-dash-stat--links .it3-dash-stat-icon { background: #f3e8ff; }
.it3-dash-stat--files .it3-dash-stat-icon { background: #ffedd5; }
.it3-dash-stat--clicks .it3-dash-stat-icon { background: #d1fae5; }
.it3-dash-stat--domains .it3-dash-stat-icon { background: #dbeafe; }
.it3-dash-stat p {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 600;
}
.it3-dash-stat strong {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.it3-dash-shorten-card {
  margin-bottom: 1.5rem;
  padding: 1.125rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}
.it3-dash-shorten-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
}
.it3-dash-shorten-label span:first-child {
  font-size: 1.35rem;
  line-height: 1;
}
.it3-dash-shorten-label strong {
  display: block;
  font-size: 0.9375rem;
  color: #0f172a;
}
.it3-dash-shorten-label p {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}
.it3-dash-shorten-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .it3-dash-shorten-fields { flex-direction: row; align-items: center; }
}
.it3-dash-shorten-fields .input-field { flex: 1 1 10rem; min-width: 0; }
.it3-dash-shorten-form { margin-bottom: 0; }
.it3-dash-domain { width: auto !important; min-width: 120px; flex: 0 0 auto !important; }
.it3-dash-shorten-btn { min-width: 140px; white-space: nowrap; }

.it3-dash-profile-card { padding: 1.5rem !important; }
.it3-dash-settings-stack {
  display: grid;
  gap: 1.25rem;
  max-width: 760px;
}
.it3-dash-settings-card {
  overflow: visible !important;
}
.it3-dash-settings-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.it3-dash-settings-head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-dash-settings-head p {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}
.it3-dash-settings-body {
  padding: 1.5rem;
}
.it3-dash-profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .it3-dash-profile-layout { grid-template-columns: 220px minmax(0, 1fr); }
}
.it3-dash-profile-photo { text-align: center; }
.it3-dash-avatar-upload-wrap {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.it3-dash-avatar-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.875rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s;
}
.it3-dash-avatar-upload-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.it3-dash-avatar-remove { margin-top: 0.5rem; width: 100%; }
.it3-dash-google-security {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.it3-dash-google-security p { margin: 0.25rem 0 0; }

.it3-dash-links-card {
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  padding: 0 !important;
  border-radius: 1rem !important;
  box-shadow: 0 12px 32px -24px rgba(15, 23, 42, 0.2);
}
.it3-dash-links-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
@media (min-width: 640px) {
  .it3-dash-links-head {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.it3-dash-links-head h2 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-dash-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.it3-dash-search {
  width: 12rem;
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
  font-size: 0.875rem !important;
}
.it3-dash-count {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  background: rgba(226, 232, 240, 0.6);
  padding: 0.25rem 0.625rem;
  border-radius: 0.5rem;
}

.it3-dash-table-wrap { overflow-x: auto; }
.it3-dash-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.it3-dash-table thead tr {
  background: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.it3-dash-table th {
  text-align: left;
  padding: 1rem 1.25rem;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #64748b;
}
.it3-dash-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  vertical-align: middle;
}
.it3-dash-table tbody tr:hover { background: #fff7ed; }
.it3-dash-dest {
  max-width: 14rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #64748b;
}
@media (max-width: 767px) {
  .it3-dash-table .it3-dash-dest { display: none; }
  .it3-dash-table th:nth-child(3) { display: none; }
}

.it3-dash-short-cell {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.it3-dash-short-url {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  word-break: break-all;
}
.it3-dash-badge {
  display: inline-flex;
  padding: 0.25rem 0.625rem;
  border-radius: 0.625rem;
  font-size: 0.6875rem;
  font-weight: 800;
}
.it3-dash-badge-link { background: #f3e8ff; color: #6b21a8; }
.it3-dash-badge-transfer { background: #ffedd5; color: #c2410c; }
.it3-dash-badge-cron { background: #ede9fe; color: #6d28d9; }
.it3-dash-badge-clicks { background: #d1fae5; color: #065f46; }

.it3-dash-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: none;
  background: #f1f5f9;
  color: #64748b;
  cursor: pointer;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.2s;
}
.it3-dash-icon-btn:hover {
  background: rgba(238, 97, 35, 0.1);
  color: var(--primary);
}
.it3-dash-icon-btn.is-copied { background: #d1fae5; color: #047857; }
.it3-dash-icon-btn.is-copy-failed { background: #fee2e2; color: #b91c1c; }
.it3-dash-icon-btn.is-danger:hover { background: #fee2e2; color: #dc2626; }
.it3-dash-qr-cell { display: flex; align-items: center; gap: 0.35rem; }
.it3-dash-qr-thumb {
  border-radius: 0.625rem;
  border: 2px solid #e2e8f0;
  flex-shrink: 0;
}
.it3-dash-actions { text-align: right; white-space: nowrap; }

.it3-dash-empty {
  padding: 3rem 1.5rem;
  text-align: center;
  color: #64748b;
}
.it3-dash-empty-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.it3-dash-empty-link:hover { text-decoration: underline; }

.it3-dash-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
}
.it3-dash-loading-inline { min-height: 6rem; }
.it3-dash-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid rgba(238, 97, 35, 0.25);
  border-top-color: var(--primary);
  border-radius: 9999px;
  animation: it3-spin 0.7s linear infinite;
}
@keyframes it3-spin { to { transform: rotate(360deg); } }

.it3-dash-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.it3-dash-modal[hidden] { display: none !important; }
.it3-dash-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
}
.it3-dash-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 56rem;
  max-height: 90vh;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
}
.it3-dash-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.it3-dash-modal-head h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-dash-modal-close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 0.75rem;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.25rem;
  cursor: pointer;
}
.it3-dash-modal-body {
  padding: 1.5rem;
  max-height: calc(90vh - 4.5rem);
  overflow-y: auto;
}
.it3-dash-analytics-hero {
  padding: 1.25rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(238, 97, 35, 0.1), #fff7ed);
  border: 1px solid rgba(238, 97, 35, 0.15);
  margin-bottom: 1.25rem;
}
.it3-dash-analytics-hero p { margin: 0; font-size: 0.875rem; color: #64748b; }
.it3-dash-analytics-hero strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}
.it3-dash-analytics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .it3-dash-analytics-grid { grid-template-columns: repeat(2, 1fr); }
}
.it3-dash-analytics-block {
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.it3-dash-analytics-block h4 {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 800;
  color: #334155;
}
.it3-dash-analytics-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.it3-dash-analytics-block li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.8125rem;
}
.it3-dash-analytics-block li span {
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.it3-dash-recent-title {
  margin: 1.5rem 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
  color: #334155;
}
.it3-dash-recent-wrap { overflow-x: auto; border-radius: 1rem; border: 1px solid #e2e8f0; }
.it3-dash-recent-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8125rem;
}
.it3-dash-recent-table th,
.it3-dash-recent-table td {
  padding: 0.625rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
}
.it3-dash-recent-table th { background: #f8fafc; font-weight: 700; color: #475569; }
.it3-dash-muted { color: #94a3b8; }
.it3-dash-error { color: #b91c1c; padding: 1rem; }

/* ─── Compare pages ─── */
.it3-compare-wrap {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 1rem 0;
}
.it3-compare-wrap-narrow { max-width: 48rem; }
.it3-compare-hero {
  text-align: center;
  margin-bottom: 3rem;
}
.it3-compare-kicker {
  display: inline-flex;
  padding: 0.25rem 0.875rem;
  border-radius: 9999px;
  background: rgba(238, 97, 35, 0.15);
  border: 1px solid rgba(238, 97, 35, 0.35);
  color: #fdba74;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.it3-compare-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.2;
}
.it3-compare-hero p {
  margin: 0 auto;
  max-width: 35rem;
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.6;
}

.it3-compare-list {
  display: grid;
  gap: 1.125rem;
  margin-bottom: 3rem;
}
.it3-compare-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.375rem 1.5rem;
  border-radius: 1rem;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, #ffffff 0%, #faf9f7 100%);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.22s;
  position: relative;
  overflow: hidden;
}
.it3-compare-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity 0.22s;
}
@media (min-width: 640px) {
  .it3-compare-card {
    grid-template-columns: minmax(10rem, auto) 1fr auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 1.75rem;
  }
}
.it3-compare-card:hover {
  border-color: rgba(238, 97, 35, 0.45);
  box-shadow: 0 12px 32px rgba(238, 97, 35, 0.18), 0 0 0 1px rgba(238, 97, 35, 0.2);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}
.it3-compare-card:hover::before {
  opacity: 1;
}
.it3-compare-card:active {
  transform: translateY(-1px);
}
.it3-compare-card-matchup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.it3-compare-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}
.it3-compare-brand-it3 { color: var(--primary); font-weight: 800; }
.it3-compare-vs {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #64748b;
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
}
.it3-compare-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  min-width: 0;
}
.it3-compare-card-desc {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
}
.it3-compare-card-wins {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 0.25rem;
  margin: 0;
  padding: 0.35rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #166534;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border: 1px solid #86efac;
  border-radius: 9999px;
  line-height: 1.3;
}
.it3-compare-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.7rem 1.25rem;
  border-radius: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 4px 14px rgba(238, 97, 35, 0.35);
  transition: box-shadow 0.22s, transform 0.22s;
  justify-self: end;
}
.it3-compare-card-cta span {
  transition: transform 0.22s;
}
.it3-compare-card:hover .it3-compare-card-cta {
  box-shadow: 0 6px 20px rgba(238, 97, 35, 0.45);
}
.it3-compare-card:hover .it3-compare-card-cta span {
  transform: translateX(3px);
}
@media (max-width: 639px) {
  .it3-compare-card-cta {
    width: 100%;
    justify-self: stretch;
  }
}

.it3-compare-roundup,
.it3-compare-guides {
  padding: 1.5rem !important;
  margin-bottom: 1.25rem;
  text-align: center;
}
.it3-compare-guides { text-align: left; }
.it3-compare-roundup h2,
.it3-compare-guides h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.it3-compare-roundup p {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
}
.it3-compare-roundup-link {
  display: inline-flex;
  padding: 0.625rem 1.5rem;
  border-radius: 0.5rem;
  background: #eef2ff;
  color: #4338ca;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}
.it3-compare-guides ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.it3-compare-guides a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.it3-compare-guides a:hover { text-decoration: underline; }

.it3-compare-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.8125rem;
  color: var(--text-muted-on-dark);
  margin-bottom: 1.5rem;
}
.it3-compare-breadcrumb a {
  color: #cbd5e1;
  text-decoration: none;
}
.it3-compare-breadcrumb a:hover { color: #fdba74; }
.it3-compare-breadcrumb span:last-child { color: #f1f5f9; }

.it3-compare-single-head h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}
.it3-compare-single-head > p {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 42rem;
}
.it3-compare-verdict {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  background: #ecfdf3;
  border: 1px solid #86efac;
  align-items: flex-start;
}
.it3-compare-verdict-icon { font-size: 1.75rem; line-height: 1; }
.it3-compare-verdict strong {
  display: block;
  color: #166534;
  margin-bottom: 0.25rem;
}
.it3-compare-verdict p {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.it3-compare-table-section h2,
.it3-compare-breakdown h2 {
  margin: 0 0 1.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
.it3-compare-table-section,
.it3-compare-breakdown {
  margin: 3rem 0;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
}
.it3-cmp-table-wrap {
  overflow-x: auto;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  padding-top: 0.25rem;
}
.it3-cmp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 32rem;
}
.it3-cmp-table th,
.it3-cmp-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}
.it3-cmp-table thead th {
  background: #f8fafc;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}
.it3-cmp-table thead th:first-child { text-align: left; min-width: 11rem; }
.it3-cmp-table thead th.is-it3 {
  background: #fff7ed;
  padding-top: 1rem;
}
.it3-cmp-best-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  font-size: 0.625rem;
  font-weight: 800;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 10px rgba(238, 97, 35, 0.35);
}
.it3-cmp-tool-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 0;
}
.it3-cmp-table thead th.is-it3 .it3-cmp-tool-name { color: var(--primary); }
.it3-cmp-tool-tag { font-size: 0.75rem; color: #64748b; font-weight: 500; text-transform: none; letter-spacing: 0; }
.it3-cmp-table tbody td { text-align: center; }
.it3-cmp-table tbody td:first-child { text-align: left; }
.it3-cmp-table tbody td.is-it3 { background: rgba(238, 97, 35, 0.04); }
.it3-cmp-table tbody tr.is-even { background: #fff; }
.it3-cmp-table tbody tr:hover { background: #f8fafc; }
.it3-cmp-feature-name { font-size: 0.875rem; font-weight: 600; color: #0f172a; }
.it3-cmp-feature-desc { font-size: 0.75rem; color: #64748b; margin-top: 0.125rem; }
.it3-cmp-yes { color: #166534; font-size: 1.125rem; font-weight: 700; }
.it3-cmp-no { color: #b91c1c; font-size: 1.125rem; }
.it3-cmp-partial { color: #92400e; }
.it3-cmp-text { font-size: 0.8125rem; color: #0f172a; }
.it3-cmp-table tfoot td {
  background: #f8fafc;
  font-size: 0.8125rem;
  color: #64748b;
}
.it3-cmp-table tfoot td.is-it3 { background: #fff7ed; }
.it3-cmp-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid #94a3b8;
  color: #64748b;
  background: #fff;
}
.it3-cmp-visit.is-primary {
  background: #4338ca;
  border-color: #4338ca;
  color: #fff;
}

.it3-compare-breakdown-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}
.it3-compare-breakdown-last { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.it3-compare-breakdown-block h3 {
  margin: 0 0 0.75rem;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
}
.it3-compare-breakdown-block p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}
.it3-compare-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 540px) {
  .it3-compare-choose-grid { grid-template-columns: repeat(2, 1fr); }
}
.it3-compare-choose {
  padding: 1.25rem;
  border-radius: 0.625rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.it3-compare-choose-it3 {
  background: #ecfdf3;
  border-color: #86efac;
}
.it3-compare-choose strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}
.it3-compare-choose-it3 strong { color: #166534; }
.it3-compare-choose ul {
  margin: 0;
  padding-left: 1.125rem;
}
.it3-compare-choose li {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.it3-compare-cta {
  margin-top: 3rem;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  background: #4338ca;
  text-align: center;
  color: #fff;
}
.it3-compare-cta h2 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.it3-compare-cta > p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}
.it3-compare-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.it3-compare-cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  background: #fff;
  color: #4338ca;
  font-weight: 700;
  text-decoration: none;
}
.it3-compare-cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.it3-compare-guide-card {
  padding: 2rem !important;
}
.it3-compare-guide-card h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 900;
  color: #0f172a;
}
.it3-compare-guide-card p {
  margin: 0 0 1rem;
  color: #475569;
  line-height: 1.75;
}
.it3-compare-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* ─── Tool page hero + SEO content ─── */
.it3-tool-hero {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 45%, #4338ca 100%);
  color: #fff;
  padding: 2rem 1.5rem;
  margin: 1.5rem 0 1rem;
  box-shadow: var(--shadow-soft);
}
.it3-tool-hero-glow {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.2);
  filter: blur(40px);
  pointer-events: none;
}
.it3-tool-hero-inner {
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.it3-tool-hero-icon { font-size: 2.5rem; line-height: 1; flex-shrink: 0; }
.it3-tool-hero-cat {
  margin: 0;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.it3-tool-hero h1 {
  margin: 0.35rem 0 0;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #fff;
}
.it3-tool-hero-lead {
  margin: 0.75rem 0 0;
  max-width: 40rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}
.it3-tool-hero-cta {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  background: #fff;
  color: #2563eb;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}

.it3-tool-seo {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.it3-tool-seo-block {
  padding: 1.5rem !important;
}
.it3-tool-seo-block h2 {
  margin: 0 0 0.75rem;
  font-size: 1.375rem;
  font-weight: 900;
  color: #0f172a;
}
.it3-tool-seo-block p {
  margin: 0;
  color: #475569;
  line-height: 1.75;
}
.it3-tool-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: #334155;
  line-height: 1.75;
}
.it3-tool-steps li { margin-bottom: 0.35rem; }
.it3-tool-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .it3-tool-features { grid-template-columns: repeat(2, 1fr); }
}
.it3-tool-features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.5;
}
.it3-tool-features li span:first-child { color: #059669; font-weight: 700; }
.it3-tool-faq { display: grid; gap: 0.5rem; }
.it3-tool-faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: #fff;
}
.it3-tool-faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #0f172a;
  font-size: 0.875rem;
}
.it3-tool-faq-item p {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.65;
}

.it3-tool-explore {
  margin-top: 1.5rem;
  padding: 1.5rem !important;
  background: var(--surface) !important;
  border: 1px solid var(--surface-border);
  border-radius: 1rem;
  box-shadow: var(--shadow-elevated);
  color: #111827;
}
.it3-tool-explore h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
}
.it3-tool-explore-lead {
  margin: 0.5rem 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
}
.it3-tool-explore-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
@media (min-width: 640px) {
  .it3-tool-explore-grid { grid-template-columns: repeat(3, 1fr); }
}
.it3-tool-explore-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  text-decoration: none;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 600;
  transition: all 0.2s;
}
.it3-tool-explore-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff7ed;
}
.it3-tool-explore-all {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}
.it3-tool-explore-all:hover { text-decoration: underline; }
.it3-tool-explore-empty {
  margin: 0.5rem 0 1rem;
  font-size: 0.875rem;
  color: #64748b;
  text-align: center;
}


/* ─── 404 page ─── */
.it3-404 {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 10rem);
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.it3-404-glow {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(238, 97, 35, 0.2), transparent 55%),
    radial-gradient(ellipse 55% 45% at 85% 20%, rgba(56, 189, 248, 0.12), transparent 50%);
}
.it3-404-inner {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}
.it3-404-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(238, 97, 35, 0.15);
  border: 1px solid rgba(238, 97, 35, 0.35);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fdba74;
}
.it3-404-title {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
}
.it3-404-lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #94a3b8;
}
.it3-404-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.it3-404-search {
  display: grid;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto 1.5rem;
}
@media (min-width: 640px) {
  .it3-404-search { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
}
.it3-404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.875rem;
}
.it3-404-links a {
  color: #cbd5e1;
  text-decoration: none;
}
.it3-404-links a:hover { color: #fdba74; }
.it3-404-links span { color: #475569; }

/* ─── Contact & Feedback pages (CF7) ─── */
.it3-contact-page,
.it3-feedback-page {
  padding-bottom: 2.5rem;
  color: #111827;
}
.it3-contact-hero,
.it3-feedback-hero {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}
.it3-contact-kicker,
.it3-feedback-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdba74;
}
.it3-contact-hero h1,
.it3-feedback-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
}
.it3-contact-lead,
.it3-feedback-lead {
  margin: 1rem auto 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.it3-contact-layout,
.it3-feedback-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .it3-contact-layout,
  .it3-feedback-layout {
    grid-template-columns: minmax(260px, 320px) 1fr;
  }
}
.it3-contact-aside,
.it3-feedback-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.it3-contact-info-card,
.it3-contact-links-card,
.it3-feedback-tips-card,
.it3-feedback-alt-card {
  padding: 1.25rem 1.5rem;
}
.it3-contact-info-card h2,
.it3-contact-links-card h2,
.it3-feedback-tips-card h2 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-contact-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.it3-contact-info-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #475569;
}
.it3-contact-info-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}
.it3-contact-info-list strong {
  display: block;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.it3-contact-info-list a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.it3-contact-info-list a:hover { text-decoration: underline; }
.it3-contact-quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.it3-contact-quick-links a {
  display: block;
  padding: 0.625rem 0.875rem;
  border-radius: 0.625rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.it3-contact-quick-links a:hover {
  border-color: rgba(249, 115, 22, 0.35);
  background: #fff7ed;
  color: var(--primary);
}
.it3-feedback-tip {
  display: flex;
  gap: 0.75rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.it3-feedback-tip:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.it3-feedback-tip-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.it3-feedback-tip strong {
  display: block;
  font-size: 0.875rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
.it3-feedback-tip p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}
.it3-feedback-alt-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}
.it3-feedback-alt-card a {
  color: var(--primary);
  font-weight: 600;
}
.it3-contact-form-card,
.it3-feedback-form-card {
  padding: clamp(1.5rem, 3vw, 2rem) !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}
.it3-contact-form-head {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}
.it3-contact-form-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-contact-form-head p {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}
.it3-required {
  color: #ea580c;
  font-weight: 700;
}
.it3-form-fallback {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}
.it3-form-fallback a { color: var(--primary); font-weight: 600; }

/* CF7 form elements */
.it3-cf7-form { margin: 0; }
.it3-cf7-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .it3-cf7-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.it3-cf7-field { display: flex; flex-direction: column; gap: 0.5rem; }
.it3-cf7-field-full { grid-column: 1 / -1; }
.it3-cf7-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
}
.it3-cf7-input,
.it3-cf7-textarea,
.it3-cf7-select,
.it3-cf7-form select.it3-cf7-select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  background: #fff;
  color: #111827;
  font-size: 1rem;
  line-height: 1.4;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.it3-cf7-select,
.it3-cf7-form select.it3-cf7-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.it3-cf7-textarea { min-height: 10rem; resize: vertical; }
.it3-cf7-input:focus,
.it3-cf7-textarea:focus,
.it3-cf7-select:focus {
  outline: none;
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}
.it3-cf7-actions { grid-column: 1 / -1; padding-top: 0.5rem; }
.it3-cf7-submit,
.it3-cf7-form input[type="submit"].it3-cf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  border: none;
  border-radius: 0.75rem;
  padding: 0.9375rem 1.75rem;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  transition: transform 0.15s, box-shadow 0.2s, filter 0.2s;
}
.it3-cf7-submit:hover,
.it3-cf7-form input[type="submit"].it3-cf7-submit:hover {
  filter: brightness(1.05);
  box-shadow: 0 10px 28px rgba(234, 88, 12, 0.42);
  transform: translateY(-1px);
}
.it3-cf7-form .wpcf7-not-valid-tip {
  font-size: 0.8125rem;
  color: #dc2626;
  margin-top: 0.35rem;
}
.it3-cf7-form .wpcf7-form-control-wrap { display: block; }
.it3-cf7-form .wpcf7-response-output {
  margin: 1.25rem 0 0;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  border-width: 1px;
  font-size: 0.875rem;
  font-weight: 500;
}
.it3-cf7-form .wpcf7 form.sent .wpcf7-response-output {
  border-color: #86efac;
  background: #ecfdf3;
  color: #166534;
}
.it3-cf7-form .wpcf7 form.invalid .wpcf7-response-output,
.it3-cf7-form .wpcf7 form.unaccepted .wpcf7-response-output,
.it3-cf7-form .wpcf7 form.failed .wpcf7-response-output {
  border-color: #fecaca;
  background: #fef2f2;
  color: #b91c1c;
}
.it3-cf7-form .wpcf7-spinner { margin-left: 0.75rem; }

/* Legacy form page aliases */
.it3-form-page { color: #111827; }

/* ─── About page ─── */
.it3-about-page {
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  padding-bottom: 2.5rem;
}
.it3-about-hero {
  text-align: center;
  margin-bottom: 0;
  padding: clamp(1rem, 3vw, 2rem) 0;
}
.it3-about-kicker {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  background: rgba(238, 97, 35, 0.12);
  border: 1px solid rgba(238, 97, 35, 0.28);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fdba74;
}
.it3-about-tagline-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
}
.it3-about-tagline {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #fdba74 55%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.it3-about-lead {
  margin: 0 auto;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #94a3b8;
}
.it3-about-mission {
  padding: clamp(1.5rem, 3vw, 2.25rem) !important;
  margin-bottom: 0;
  flex-shrink: 0;
}
.it3-about-mission h2,
.it3-about-values h2,
.it3-about-cta h2 {
  margin: 0 0 0.875rem;
  font-size: 1.375rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-about-mission p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
  font-size: 1rem;
}
.it3-about-quote {
  margin: 1.5rem 0 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--primary);
  border-radius: 0 0.75rem 0.75rem 0;
  background: linear-gradient(90deg, rgba(238, 97, 35, 0.08), transparent);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  font-style: normal;
  color: #0f172a;
  line-height: 1.35;
}
.it3-about-quote cite {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  font-style: normal;
  color: #64748b;
}
.it3-about-grid {
  display: grid;
  gap: 1.25rem;
  margin: 0;
  align-items: stretch;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .it3-about-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .it3-about-grid { grid-template-columns: repeat(4, 1fr); }
}
.it3-about-card {
  padding: 1.25rem !important;
  height: auto;
  min-height: 0;
  position: relative;
  z-index: 1;
}
.it3-about-icon {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.625rem;
}
.it3-about-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-about-card p {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.55;
}
.it3-about-values {
  padding: clamp(1.5rem, 3vw, 2rem) !important;
  margin: 0;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  isolation: isolate;
}
.it3-about-values-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .it3-about-values-list { grid-template-columns: repeat(2, 1fr); }
}
.it3-about-values-list li {
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.55;
}
.it3-about-values-list strong { color: #0f172a; }
.it3-about-cta {
  padding: clamp(1.75rem, 4vw, 2.5rem) !important;
  margin: 0;
  text-align: center;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #fff;
}
.it3-about-cta-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdba74;
}
.it3-about-cta h2 {
  color: #fff !important;
  font-size: clamp(1.375rem, 3vw, 1.75rem);
}
.it3-about-cta > p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: #94a3b8;
  line-height: 1.6;
}
.it3-about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
}
.it3-about-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #e2e8f0;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.it3-about-btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
}
.it3-hero-tagline {
  display: block;
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fdba74;
}

/* WPBakery Page Builder — content pages */
.it3-page-shell--vc {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.it3-page-hero--vc {
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.it3-page-hero--vc h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #0f172a;
  line-height: 1.15;
}
.it3-vc-content {
  color: #334155;
  line-height: 1.7;
  font-size: 1rem;
}
.it3-wpbakery-page .it3-vc-content .vc_row {
  margin-left: 0;
  margin-right: 0;
}
.it3-wpbakery-page .it3-vc-content .wpb_content_element {
  margin-bottom: 1.25rem;
}
.it3-wpbakery-page .it3-vc-content h2,
.it3-wpbakery-page .it3-vc-content h3,
.it3-wpbakery-page .it3-vc-content h4 {
  font-family: var(--font-heading);
  color: #0f172a;
  font-weight: 800;
  line-height: 1.25;
}
.it3-wpbakery-page .it3-vc-content a {
  color: var(--primary);
  font-weight: 600;
}
.it3-wpbakery-page .it3-vc-content a:hover {
  text-decoration: underline;
}
.it3-wpbakery-page .it3-vc-content .wpb_text_column ul,
.it3-wpbakery-page .it3-vc-content .wpb_text_column ol {
  padding-left: 1.25rem;
  margin: 0.75rem 0;
}
.it3-wpbakery-page .it3-vc-content .vc_btn3-container .vc_general.vc_btn3 {
  border-radius: 0.75rem;
  font-weight: 700;
  padding: 0.75rem 1.25rem;
}
.it3-wpbakery-page .it3-vc-content .wpcf7 {
  max-width: 40rem;
}
.it3-wpbakery-page .it3-vc-content .wpcf7 input[type="text"],
.it3-wpbakery-page .it3-vc-content .wpcf7 input[type="email"],
.it3-wpbakery-page .it3-vc-content .wpcf7 textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}
.it3-wpbakery-page .it3-vc-content .wpcf7 input[type="submit"] {
  border: none;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font-weight: 700;
  padding: 0.875rem 1.5rem;
  cursor: pointer;
}

/* Legal pages */
.it3-legal-page { padding-bottom: 2.5rem; color: #111827; }
.it3-legal-hero {
  text-align: center;
  padding: clamp(2rem, 5vw, 3.5rem) 1rem clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1.5rem;
  border-radius: 1.25rem;
  background: linear-gradient(145deg, #0f172a 0%, #1e293b 55%, #334155 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}
.it3-legal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fdba74;
}
.it3-legal-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  line-height: 1.15;
}
.it3-legal-lead {
  margin: 1rem auto 0;
  max-width: 42rem;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
}
.it3-legal-updated {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}
.it3-legal-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .it3-legal-layout { grid-template-columns: 240px 1fr; }
}
.it3-legal-toc {
  padding: 1.25rem 1.5rem;
  position: sticky;
  top: 5.5rem;
}
.it3-legal-toc h2 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}
.it3-legal-toc ol {
  margin: 0;
  padding-left: 1.125rem;
  font-size: 0.875rem;
  line-height: 1.6;
}
.it3-legal-toc a {
  color: #334155;
  text-decoration: none;
  font-weight: 500;
}
.it3-legal-toc a:hover { color: var(--primary); text-decoration: underline; }
.it3-legal-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.it3-legal-section {
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.it3-legal-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.it3-legal-section h2 {
  margin: 0 0 0.875rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-legal-section p {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: #475569;
}
.it3-legal-list {
  margin: 0.5rem 0 0;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}
.it3-legal-list li { margin-bottom: 0.5rem; }
.it3-legal-list strong { color: #0f172a; }
.it3-legal-section a { color: var(--primary); font-weight: 600; }
.it3-legal-footer-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #64748b;
}
.it3-legal-footer-note a { color: var(--primary); font-weight: 600; }

/* FAQ page */
.it3-faq-page { padding-bottom: 2.5rem; color: #111827; }
.it3-faq-hero {
  text-align: center;
  padding: clamp(2rem, 5vw, 3rem) 1rem;
  margin-bottom: 1.5rem;
}
.it3-faq-kicker {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
}
.it3-faq-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #0f172a;
}
.it3-faq-lead {
  margin: 0.75rem auto 0;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #475569;
}
.it3-faq-grid {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}
.it3-faq-item {
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.it3-faq-item[open] {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.it3-faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 700;
  font-size: 1rem;
  color: #0f172a;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.it3-faq-item summary::-webkit-details-marker { display: none; }
.it3-faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #64748b;
  font-size: 1.125rem;
  font-weight: 700;
  transition: transform 0.2s, background 0.2s;
}
.it3-faq-item[open] summary::after {
  content: '−';
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary);
}
.it3-faq-answer {
  padding: 0 1.25rem 1.125rem;
  border-top: 1px solid #f1f5f9;
}
.it3-faq-answer p {
  margin: 0.875rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #475569;
}
.it3-faq-answer a { color: var(--primary); font-weight: 600; }
.it3-faq-cta {
  margin-top: 2rem;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(145deg, #fff7ed, #fff);
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.it3-faq-cta h2 {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 900;
  color: #0f172a;
}
.it3-faq-cta > p {
  margin: 0.5rem 0 0;
  color: #475569;
  font-size: 0.9375rem;
}
.it3-faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

/* HTML sitemap page — classic hierarchical tree */
.it3-sitemap-page { padding-bottom: 2.5rem; color: #111827; }
.it3-sitemap-hero {
  text-align: center;
  padding: clamp(1.75rem, 4vw, 2.75rem) 1rem 1.25rem;
}
.it3-sitemap-kicker {
  margin: 0 0 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}
.it3-sitemap-hero h1 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.it3-sitemap-lead {
  margin: 0.65rem auto 0;
  max-width: 38rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: #64748b;
}
.it3-sitemap-lead a { color: var(--primary); font-weight: 600; }

.it3-sitemap-panel {
  max-width: 52rem;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}
.it3-sitemap-site-root {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.35rem;
  background: linear-gradient(90deg, #0f172a, #1e293b);
  border-bottom: 3px solid var(--primary);
}
.it3-sitemap-site-icon {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  font-size: 1rem;
}
.it3-sitemap-site-root a {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #f8fafc;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.it3-sitemap-site-root a:hover { color: #fdba74; }

.it3-sitemap-nav {
  padding: 1.35rem 1.35rem 1.5rem;
}

.it3-sitemap-tree {
  list-style: none;
  margin: 0;
  padding: 0;
}
.it3-sitemap-tree--root {
  display: grid;
  gap: 0.15rem;
}
.it3-sitemap-tree--branch {
  margin: 0.35rem 0 0.5rem;
  padding: 0.35rem 0 0.35rem 1rem;
  border-left: 2px solid #e2e8f0;
}
.it3-sitemap-tree-item {
  position: relative;
  padding: 0.28rem 0;
}
.it3-sitemap-tree-item--top {
  padding: 0.55rem 0;
  border-bottom: 1px solid #f1f5f9;
}
.it3-sitemap-tree-item--top:last-child { border-bottom: 0; }

.it3-sitemap-tree-link,
.it3-sitemap-tree-label {
  display: inline-block;
  font-size: 0.9375rem;
  line-height: 1.45;
}
.it3-sitemap-tree-item--top > .it3-sitemap-tree-link,
.it3-sitemap-tree-item--top > .it3-sitemap-tree-label {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}
.it3-sitemap-tree-item--parent > .it3-sitemap-tree-label {
  font-weight: 700;
  color: #334155;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.it3-sitemap-tree--branch .it3-sitemap-tree-item--parent > .it3-sitemap-tree-label {
  font-size: 0.8125rem;
  color: #64748b;
}
.it3-sitemap-tree-link {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.15s ease;
}
.it3-sitemap-tree-item--top > .it3-sitemap-tree-link {
  color: #0f172a;
}
.it3-sitemap-tree-link:hover {
  color: var(--primary);
  text-decoration: underline;
}
.it3-sitemap-tree--branch .it3-sitemap-tree-link {
  color: #475569;
  font-size: 0.875rem;
}
.it3-sitemap-tree--branch .it3-sitemap-tree-link::before {
  content: '›';
  margin-right: 0.4rem;
  color: #cbd5e1;
  font-weight: 700;
}
.it3-sitemap-tree--branch .it3-sitemap-tree-link:hover::before {
  color: var(--primary);
}

.it3-sitemap-footer-meta {
  max-width: 52rem;
  margin: 1.25rem auto 0;
  text-align: center;
}
.it3-sitemap-footer-meta p {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}
.it3-sitemap-footer-meta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}
.it3-sitemap-footer-meta a:hover { text-decoration: underline; }
.it3-sitemap-note { color: #94a3b8 !important; }

@media (min-width: 768px) {
  .it3-sitemap-nav { padding: 1.5rem 1.75rem 1.75rem; }
  .it3-sitemap-tree--branch {
    padding-left: 1.25rem;
    margin-left: 0.25rem;
  }
}

.it3-dash-form-card { max-width: 760px; }
.it3-dash-settings-form { display: grid; gap: 1rem; margin-top: 0; }
.it3-dash-profile-form { margin-top: 0; }
.it3-dash-field { display: grid; gap: 0.35rem; }
.it3-dash-field span { font-size: 0.8125rem; font-weight: 700; color: #334155; }
.it3-dash-field-hint {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #94a3b8;
}
.it3-dash-field-readonly,
.it3-dash-field input:disabled {
  background: #f1f5f9 !important;
  color: #64748b !important;
  border-color: #e2e8f0 !important;
  cursor: not-allowed;
  box-shadow: none;
}
.it3-dash-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
}
.it3-dash-photo-hint { margin: 0; font-size: 0.8125rem; line-height: 1.45; }
.it3-dash-security-foot { margin: 0.25rem 0 0; font-size: 0.875rem; }
.it3-dash-security-foot a { color: var(--primary); font-weight: 600; text-decoration: none; }
.it3-dash-security-foot a:hover { text-decoration: underline; }
.it3-dash-pref-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.875rem 1rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}
.it3-dash-pref-note-icon { flex-shrink: 0; line-height: 1.4; }
.it3-dash-pref-note p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #9a3412;
}
.it3-dash-pref-list {
  display: grid;
  gap: 0.75rem;
}
.it3-dash-pref-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.125rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.875rem;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.it3-dash-pref-item:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px -18px rgba(15, 23, 42, 0.35);
}
.it3-dash-pref-item:has(input:checked) {
  border-color: rgba(238, 97, 35, 0.45);
  background: rgba(255, 247, 237, 0.55);
}
.it3-dash-pref-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}
.it3-dash-pref-copy strong {
  font-size: 0.9375rem;
  color: #0f172a;
}
.it3-dash-pref-copy span {
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}
.it3-dash-pref-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}
.it3-dash-pref-switch {
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  border-radius: 999px;
  background: #cbd5e1;
  transition: background 0.2s;
  flex-shrink: 0;
}
.it3-dash-pref-switch::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.15rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.2);
  transition: transform 0.2s;
}
.it3-dash-pref-item:has(input:checked) .it3-dash-pref-switch {
  background: linear-gradient(to right, var(--primary), var(--primary-light));
}
.it3-dash-pref-item:has(input:checked) .it3-dash-pref-switch::after {
  transform: translateX(1.25rem);
}
.it3-dash-form-msg { margin: 0.5rem 0 0; font-size: 0.875rem; }
.it3-dash-form-msg.is-success { color: #15803d; }
.it3-dash-form-msg.is-error { color: #b91c1c; }
.it3-dash-check-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  cursor: pointer;
}
.it3-dash-check-row input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  margin: 0;
  flex-shrink: 0;
}
.it3-dash-email-prefs-card { margin-top: 0; }
.it3-email-prefs-form .it3-dash-check-row { margin-bottom: 1rem; }
.it3-email-prefs-page .it3-auth-card { text-align: left; }
.it3-dash-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.it3-dash-help-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.it3-dash-help-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -16px rgba(15, 23, 42, 0.35);
}
.it3-dash-help-card h3 { margin: 0 0 0.35rem; font-size: 1.05rem; color: #0f172a; }
.it3-dash-help-card p { margin: 0; font-size: 0.875rem; color: #64748b; }

.it3-dash-qr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}
.it3-dash-qr-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  align-items: flex-start;
}
.it3-dash-qr-preview {
  flex-shrink: 0;
  border-radius: 8px;
  background: #fff;
}
.it3-dash-qr-meta { min-width: 0; flex: 1; }
.it3-dash-qr-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.it3-dash-qr-actions .btn-outline {
  font-size: 0.8125rem;
  padding: 0.4rem 0.75rem;
}

/* ── Cron scheduler (/tools/cron/) ── */
.it3-cron-page .it3-cron-feature-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
}
.it3-cron-feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.8125rem;
  font-weight: 600;
  box-shadow: 0 2px 8px -4px rgba(15, 23, 42, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.it3-cron-feature-pill:hover {
  border-color: #c7d2fe;
  box-shadow: 0 6px 16px -8px rgba(79, 70, 229, 0.35);
  transform: translateY(-1px);
}
.it3-cron-panel {
  position: relative;
  overflow: visible;
  padding: 0;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  box-shadow:
    0 32px 64px -40px rgba(15, 23, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}
.it3-cron-app { padding: 1.35rem 1.35rem 1.1rem; }
.it3-cron-panel-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid #e2e8f0;
}
.it3-cron-panel-head h2 {
  margin: 0 0 0.3rem;
  font-size: clamp(1.2rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}
.it3-cron-panel-head p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: #64748b;
}
.it3-cron-panel-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.it3-cron-utc-pill,
.it3-cron-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.it3-cron-utc-pill {
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  border: 1px solid #c7d2fe;
  color: #4338ca;
}
.it3-cron-live-pill {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 1px solid #86efac;
  color: #166534;
}
.it3-cron-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
  animation: it3-cron-pulse 2s ease-in-out infinite;
}
@keyframes it3-cron-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.92); }
}
.it3-cron-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .it3-cron-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.it3-cron-stat {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 20px -16px rgba(15, 23, 42, 0.25);
}
.it3-cron-stat-val {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.1;
}
.it3-cron-stat-label {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}
.it3-cron-stat--ok .it3-cron-stat-val { color: #15803d; }
.it3-cron-stat--err .it3-cron-stat-val { color: #b91c1c; }
.it3-cron-guest-banner {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  border: 2px solid #f97316;
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 45%, #fef3c7 100%);
  box-shadow: 0 12px 30px -18px rgba(234, 88, 12, 0.55);
}
.it3-cron-guest-banner-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.it3-cron-guest-banner-copy strong {
  display: block;
  font-size: 1.125rem;
  color: #9a3412;
  margin-bottom: 0.35rem;
}
.it3-cron-guest-banner-copy p {
  margin: 0 0 0.85rem;
  color: #7c2d12;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.it3-cron-guest-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.it3-cron-layout {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.it3-cron-jobs-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: -0.15rem 0 0.85rem;
}
.it3-cron-limit-msg--inline {
  margin: 0;
  flex: 1 1 12rem;
}
.it3-cron-msg--banner {
  margin: 0 0 1rem;
}
.it3-cron-form {
  padding: 1.25rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.22);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.it3-cron-form.is-editing {
  border-color: #fdba74;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.15), 0 16px 40px -28px rgba(234, 88, 12, 0.2);
}
.it3-cron-form-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.it3-cron-form-title-wrap {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.it3-cron-form-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.it3-cron-form-head h3 {
  margin: 0 0 0.2rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.it3-cron-form-sub {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}
.it3-cron-limit {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 800;
}
.it3-cron-limit-bar {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc(var(--pct, 0) * 1%);
  background: linear-gradient(90deg, rgba(238, 97, 35, 0.12), rgba(238, 97, 35, 0.22));
  pointer-events: none;
}
.it3-cron-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .it3-cron-fields { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
}
.it3-cron-field {
  display: grid;
  gap: 0.35rem;
}
.it3-cron-field span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}
.it3-cron-field--wide { grid-column: 1 / -1; }
.it3-cron-url-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.it3-cron-url-prefix {
  position: absolute;
  left: 0.75rem;
  font-size: 0.95rem;
  pointer-events: none;
  opacity: 0.55;
}
.it3-cron-url-input { padding-left: 2.35rem !important; }
.it3-cron-schedule-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid #c7d2fe;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(238, 242, 255, 0.75) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.it3-cron-schedule-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}
.it3-cron-schedule-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e0e7ff;
  font-size: 1rem;
  flex-shrink: 0;
}
.it3-cron-schedule-head h4 {
  margin: 0 0 0.15rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #312e81;
}
.it3-cron-schedule-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.45;
}
.it3-cron-schedule-hint strong { color: #4338ca; }
.it3-cron-quick-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}
.it3-cron-quick-preset {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #e0e7ff;
  background: #fff;
  color: #4338ca;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, transform 0.12s, box-shadow 0.15s;
}
.it3-cron-quick-preset:hover:not(:disabled) {
  border-color: #a5b4fc;
  background: #eef2ff;
  transform: translateY(-1px);
}
.it3-cron-quick-preset.is-active {
  border-color: var(--primary, #ee6123);
  background: linear-gradient(135deg, rgba(238, 97, 35, 0.12), rgba(238, 97, 35, 0.06));
  color: #c2410c;
  box-shadow: 0 4px 12px -6px rgba(238, 97, 35, 0.45);
}
.it3-cron-quick-preset:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.it3-cron-common-row {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.it3-cron-common-row span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4338ca;
}
.it3-cron-expr {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  padding: 0.55rem;
  border-radius: 12px;
  background: #0f172a;
  border: 1px solid #1e293b;
}
@media (max-width: 520px) {
  .it3-cron-expr { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.it3-cron-expr-seg {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.25rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}
.it3-cron-expr-key {
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #64748b;
}
.it3-cron-expr-val {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #38bdf8;
  background: transparent;
  padding: 0;
}
.it3-cron-timing-grid { display: grid; gap: 0.65rem; }
.it3-cron-timing-row {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr) minmax(0, 1.25fr);
  gap: 0.65rem;
  align-items: center;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(199, 210, 254, 0.6);
}
@media (max-width: 640px) {
  .it3-cron-timing-row { grid-template-columns: 1fr; }
}
.it3-cron-timing-cell {
  min-width: 0;
  display: block;
  width: 100%;
}
.it3-cron-timing-cell .input-field {
  display: block;
  width: 100%;
}
.it3-cron-timing-preset {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
  background-image: none;
  padding-right: 2rem;
}
.it3-cron-timing-input.is-applied {
  border-color: rgba(238, 97, 35, 0.65);
  box-shadow: 0 0 0 3px rgba(238, 97, 35, 0.18);
}
.it3-cron-timing-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: #475569;
}
.it3-cron-preview {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0.85rem 0 0;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: #fff;
  border: 1px dashed #c7d2fe;
  font-size: 0.875rem;
  color: #4338ca;
  font-weight: 600;
  line-height: 1.45;
}
.it3-cron-preview-icon { flex-shrink: 0; opacity: 0.7; }
.it3-cron-preview--warn {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #b91c1c;
}
.it3-cron-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}
.it3-cron-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.it3-cron-limit-msg,
.it3-cron-msg {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
}
.it3-cron-msg--error { color: #b91c1c; }
.it3-cron-msg--ok { color: #15803d; }
.it3-cron-jobs {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 16px 40px -28px rgba(15, 23, 42, 0.18);
  min-height: 12rem;
}
.it3-cron-jobs-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid #f1f5f9;
}
.it3-cron-jobs-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.it3-cron-jobs-head span {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.it3-cron-job-list { display: grid; gap: 0.75rem; }
.it3-cron-job-card {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding: 0.95rem 0.95rem 0.95rem 1.1rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.it3-cron-job-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px -20px rgba(15, 23, 42, 0.28);
  transform: translateY(-1px);
}
.it3-cron-job-card.is-editing {
  border-color: #fdba74;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.12);
}
.it3-cron-job-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #cbd5e1;
}
.it3-cron-job-card--ok .it3-cron-job-accent { background: linear-gradient(180deg, #22c55e, #16a34a); }
.it3-cron-job-card--err .it3-cron-job-accent { background: linear-gradient(180deg, #ef4444, #dc2626); }
.it3-cron-job-card--idle .it3-cron-job-accent { background: linear-gradient(180deg, #94a3b8, #64748b); }
@media (min-width: 900px) {
  .it3-cron-job-card {
    grid-template-columns: 1.45fr 1fr auto;
    align-items: center;
  }
}
.it3-cron-job-title-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}
.it3-cron-job-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef2ff, #e0e7ff);
  color: #4338ca;
  font-size: 0.875rem;
  font-weight: 800;
  flex-shrink: 0;
}
.it3-cron-job-card h4 {
  margin: 0 0 0.2rem;
  font-size: 0.9375rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}
.it3-cron-editing-tag {
  display: inline-block;
  margin-left: 0.25rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #ffedd5;
  color: #c2410c;
  font-size: 0.625rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  vertical-align: middle;
}
.it3-cron-job-url {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  word-break: break-all;
  text-decoration: none;
  line-height: 1.4;
}
.it3-cron-job-url:hover { text-decoration: underline; }
.it3-cron-job-schedule {
  margin: 0.45rem 0 0;
  font-size: 0.8125rem;
  color: #475569;
}
.it3-cron-job-cron {
  display: inline-block;
  margin-top: 0.35rem;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  background: #0f172a;
  font-family: ui-monospace, monospace;
  font-size: 0.6875rem;
  color: #7dd3fc;
}
.it3-cron-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
}
.it3-cron-meta-chip {
  font-size: 0.6875rem;
  color: #64748b;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.it3-cron-meta-chip strong { color: #334155; font-weight: 700; }
.it3-cron-meta-chip--http strong { color: #0369a1; }
.it3-cron-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 800;
}
.it3-cron-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}
.it3-cron-status--ok { background: #dcfce7; color: #166534; }
.it3-cron-status--err { background: #fee2e2; color: #b91c1c; }
.it3-cron-status--idle { background: #e2e8f0; color: #475569; }
.it3-cron-job-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  min-width: 6.75rem;
}
.it3-cron-job-actions .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  padding: 0.45rem 0.7rem;
  width: 100%;
}
.it3-cron-empty,
.it3-cron-guest-preview {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
}
.it3-cron-empty-icon {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.65rem;
  opacity: 0.85;
}
.it3-cron-empty h4 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-cron-empty p,
.it3-cron-muted {
  margin: 0;
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.55;
  max-width: 22rem;
  margin-inline: auto;
}
.it3-cron-skeleton-list { display: grid; gap: 0.65rem; }
.it3-cron-skeleton-card {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
}
.it3-cron-skeleton-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: it3-cron-shimmer 1.2s ease-in-out infinite;
}
.it3-cron-skeleton-lines {
  flex: 1;
  display: grid;
  gap: 0.4rem;
}
.it3-cron-skeleton-lines span {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
  background-size: 200% 100%;
  animation: it3-cron-shimmer 1.2s ease-in-out infinite;
}
.it3-cron-skeleton-lines span:nth-child(1) { width: 55%; }
.it3-cron-skeleton-lines span:nth-child(2) { width: 80%; }
.it3-cron-skeleton-lines span:nth-child(3) { width: 40%; }
@keyframes it3-cron-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.it3-cron-footnote {
  margin: 1.1rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid #e2e8f0;
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.5;
}

/* Tool testing banner */
.it3-tool-testing-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid #fde68a;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  color: #854d0e;
  font-size: 0.875rem;
}
.it3-tool-testing-badge {
  display: inline-flex;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #f59e0b;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.it3-tool-testing-banner p { margin: 0; }
.it3-tool-testing-banner a { color: #b45309; font-weight: 700; }

/* PDF tools UI */
.it3-pdf-tool .it3-pdf-intro { margin: 0 0 0.85rem; color: #64748b; font-size: 0.875rem; line-height: 1.5; }
.it3-pdf-drop {
  margin-bottom: 0.75rem;
  padding: 1rem;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.it3-pdf-drop:hover { border-color: #94a3b8; background: #f1f5f9; }
.it3-pdf-drop input[type="file"] { display: none; }
.it3-pdf-drop-title { margin: 0 0 0.25rem; font-weight: 700; color: #0f172a; font-size: 0.875rem; }
.it3-pdf-drop-hint { margin: 0; font-size: 0.8125rem; color: #64748b; word-break: break-word; }
.it3-pdf-field { display: grid; gap: 0.35rem; margin-bottom: 0.75rem; }
.it3-pdf-field span { font-size: 0.75rem; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; }
.it3-pdf-actions { margin: 0.5rem 0 0.75rem; }
.it3-pdf-status { margin: 0; padding: 0.65rem 0.8rem; border-radius: 10px; font-size: 0.875rem; background: #f8fafc; border: 1px solid #e2e8f0; color: #475569; }
.it3-pdf-status.is-busy { background: #eff6ff; border-color: #bfdbfe; color: #1d4ed8; }
.it3-pdf-status.is-ok { background: #f0fdf4; border-color: #bbf7d0; color: #166534; }
.it3-pdf-status.is-error { background: #fef2f2; border-color: #fecaca; color: #b91c1c; }

/* Cron add/edit form modal */
body.it3-cron-modal-open {
  overflow: hidden;
}
.it3-cron-form-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background:
    radial-gradient(circle at 22% 10%, rgba(238, 97, 35, 0.22), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(99, 102, 241, 0.2), transparent 24rem),
    rgba(15, 23, 42, 0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}
.it3-cron-form-panel {
  width: min(96vw, 68rem);
  max-height: calc(100vh - 1.5rem);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.34);
}
.it3-cron-form-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  padding: 0.72rem 0.85rem 0.62rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.75);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(248, 250, 252, 0.94) 58%, rgba(255, 237, 213, 0.75) 100%);
}
.it3-cron-form-modal-head-copy {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  min-width: 0;
}
.it3-cron-form-modal-head .it3-cron-form-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 10px;
  font-size: 0.95rem;
  box-shadow: 0 8px 18px -12px rgba(67, 56, 202, 0.9);
}
.it3-cron-form-modal-head-copy h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-cron-form-modal-head-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.it3-cron-form-close {
  border: 0;
  background: rgba(241, 245, 249, 0.88);
  color: #475569;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 8px;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.it3-cron-form-close:hover { background: #e2e8f0; color: #0f172a; }
.it3-cron-form-modal-body {
  padding: 0;
  overflow: visible;
}
.it3-cron-form.is-modal {
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0.7rem 0.85rem 0.85rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.it3-cron-form.is-modal .it3-cron-fields {
  grid-template-columns: minmax(12rem, 0.75fr) minmax(0, 1.55fr);
  gap: 0.55rem;
  margin-bottom: 0.6rem;
}
.it3-cron-form.is-modal .it3-cron-field--wide {
  grid-column: auto;
}
.it3-cron-form.is-modal .it3-cron-field {
  gap: 0.22rem;
}
.it3-cron-form.is-modal .it3-cron-field span,
.it3-cron-form.is-modal .it3-cron-common-row span,
.it3-cron-form.is-modal .it3-cron-timing-label {
  font-size: 0.62rem;
  letter-spacing: 0.075em;
}
.it3-cron-form.is-modal .input-field {
  min-height: 2.15rem;
  padding: 0.48rem 0.7rem;
  border-radius: 10px;
  font-size: 0.84rem;
}
.it3-cron-form.is-modal .it3-cron-url-input {
  padding-left: 2rem !important;
}
.it3-cron-form.is-modal .it3-cron-url-prefix {
  left: 0.65rem;
  font-size: 0.8rem;
}
.it3-cron-form.is-modal .it3-cron-schedule-card {
  padding: 0.65rem;
  border-radius: 15px;
  background:
    radial-gradient(circle at 10% 0%, rgba(238, 97, 35, 0.12), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 255, 0.84));
}
.it3-cron-form.is-modal .it3-cron-schedule-head {
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.48rem;
}
.it3-cron-form.is-modal .it3-cron-schedule-icon {
  width: 1.8rem;
  height: 1.8rem;
  border-radius: 9px;
  font-size: 0.85rem;
}
.it3-cron-form.is-modal .it3-cron-schedule-head h4 {
  font-size: 0.86rem;
}
.it3-cron-form.is-modal .it3-cron-schedule-hint {
  font-size: 0.72rem;
  line-height: 1.25;
}
.it3-cron-form.is-modal .it3-cron-quick-presets {
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}
.it3-cron-form.is-modal .it3-cron-quick-preset {
  padding: 0.28rem 0.52rem;
  font-size: 0.68rem;
  box-shadow: 0 8px 18px -16px rgba(15, 23, 42, 0.45);
}
.it3-cron-form.is-modal .it3-cron-common-row {
  gap: 0.22rem;
  margin-bottom: 0.5rem;
}
.it3-cron-form.is-modal .it3-cron-expr {
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  padding: 0.36rem;
  border-radius: 10px;
}
.it3-cron-form.is-modal .it3-cron-expr-seg {
  gap: 0.12rem;
  padding: 0.24rem 0.2rem;
  border-radius: 7px;
}
.it3-cron-form.is-modal .it3-cron-expr-key {
  font-size: 0.5rem;
}
.it3-cron-form.is-modal .it3-cron-expr-val {
  font-size: 0.72rem;
}
.it3-cron-form.is-modal .it3-cron-timing-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.38rem;
}
.it3-cron-form.is-modal .it3-cron-timing-row {
  grid-template-columns: 1fr;
  gap: 0.28rem;
  align-content: start;
  padding: 0.42rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px -22px rgba(15, 23, 42, 0.45);
}
.it3-cron-form.is-modal .it3-cron-timing-preset {
  padding-right: 1.45rem;
}
.it3-cron-form.is-modal .it3-cron-preview {
  align-items: center;
  margin-top: 0.5rem;
  padding: 0.52rem 0.68rem;
  border-radius: 10px;
  font-size: 0.76rem;
  line-height: 1.25;
}
.it3-cron-form.is-modal .it3-cron-form-actions {
  justify-content: flex-end;
  gap: 0.5rem;
  margin-top: 0.62rem;
}
.it3-cron-form.is-modal .it3-cron-form-actions .btn-outline,
.it3-cron-form.is-modal .it3-cron-form-actions .btn-primary {
  min-height: 2.15rem;
  padding: 0.52rem 0.9rem;
  border-radius: 10px;
  font-size: 0.86rem;
}
.it3-cron-form.is-modal .it3-cron-msg,
.it3-cron-form.is-modal .it3-cron-limit-msg {
  margin-top: 0.45rem;
  font-size: 0.75rem;
}
@media (max-width: 900px) {
  .it3-cron-form-backdrop {
    align-items: flex-start;
    overflow: auto;
  }
  .it3-cron-form-panel {
    width: min(100%, 42rem);
    max-height: none;
  }
  .it3-cron-form-modal-body {
    overflow: visible;
  }
  .it3-cron-form.is-modal .it3-cron-fields,
  .it3-cron-form.is-modal .it3-cron-timing-grid {
    grid-template-columns: 1fr;
  }
}

/* Premium cron form modal treatment */
.it3-cron-form-backdrop {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.it3-cron-form-panel {
  position: relative;
  isolation: isolate;
  background: #fff;
}
.it3-cron-form-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  z-index: 2;
  background: linear-gradient(90deg, #ee6123, #ff9b55, #6366f1, #38bdf8);
}
.it3-cron-form-modal-head {
  position: relative;
  overflow: hidden;
  border-bottom: 0;
  color: #fff;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 122, 61, 0.42), transparent 13rem),
    radial-gradient(circle at 82% 0%, rgba(99, 102, 241, 0.34), transparent 15rem),
    linear-gradient(135deg, #111827 0%, #172033 48%, #0f172a 100%);
}
.it3-cron-form-modal-head::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
}
.it3-cron-form-modal-head .it3-cron-form-icon {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(238, 97, 35, 0.98), rgba(255, 122, 61, 0.92));
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 12px 24px -14px rgba(238, 97, 35, 0.9), inset 0 1px 0 rgba(255,255,255,0.22);
}
.it3-cron-form-modal-head-copy h3 {
  color: #fff;
  letter-spacing: -0.025em;
}
.it3-cron-form-modal-head .it3-cron-form-sub {
  color: rgba(226, 232, 240, 0.82);
}
.it3-cron-form-modal-head .it3-cron-limit {
  color: #fff;
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.16);
}
.it3-cron-form-modal-head .it3-cron-limit-bar {
  background: linear-gradient(90deg, rgba(238, 97, 35, 0.42), rgba(255, 122, 61, 0.24));
}
.it3-cron-form-close {
  color: #e2e8f0;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
}
.it3-cron-form-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.18);
}
.it3-cron-form.is-modal {
  background:
    radial-gradient(circle at 0% 0%, rgba(238, 97, 35, 0.06), transparent 16rem),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.it3-cron-form.is-modal .it3-cron-field {
  padding: 0.48rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 12px 28px -26px rgba(15, 23, 42, 0.45);
}
.it3-cron-form.is-modal .it3-cron-field span,
.it3-cron-form.is-modal .it3-cron-common-row span {
  color: #475569;
}
.it3-cron-form.is-modal .input-field {
  border-color: #dbe3ef;
  background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
}
.it3-cron-form.is-modal .input-field:focus {
  border-color: rgba(238, 97, 35, 0.58);
  box-shadow: 0 0 0 3px rgba(238, 97, 35, 0.12);
}
.it3-cron-form.is-modal .it3-cron-schedule-card {
  border-color: rgba(129, 140, 248, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 40px -34px rgba(67, 56, 202, 0.65);
}
.it3-cron-form.is-modal .it3-cron-schedule-icon {
  color: #7c2d12;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  border-color: #fed7aa;
}
.it3-cron-form.is-modal .it3-cron-quick-preset {
  border-color: transparent;
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: #334155;
}
.it3-cron-form.is-modal .it3-cron-quick-preset:hover:not(:disabled),
.it3-cron-form.is-modal .it3-cron-quick-preset.is-active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ee6123, #ff7a3d);
  box-shadow: 0 12px 22px -16px rgba(238, 97, 35, 0.85);
}
.it3-cron-form.is-modal .it3-cron-common-row {
  padding: 0.48rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(226, 232, 240, 0.82);
}
.it3-cron-form.is-modal .it3-cron-expr {
  background:
    radial-gradient(circle at 16% 0%, rgba(56, 189, 248, 0.16), transparent 8rem),
    linear-gradient(135deg, #101827, #0b1120);
  border-color: rgba(56, 189, 248, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.it3-cron-form.is-modal .it3-cron-expr-seg {
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.055);
}
.it3-cron-form.is-modal .it3-cron-timing-row {
  border-color: rgba(226, 232, 240, 0.82);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(248,250,252,0.9));
}
.it3-cron-form.is-modal .it3-cron-timing-label {
  display: inline-flex;
  width: fit-content;
  padding: 0.12rem 0.38rem;
  border-radius: 999px;
  color: #4338ca;
  background: #eef2ff;
}
.it3-cron-form.is-modal .it3-cron-preview {
  color: #0f172a;
  border: 1px solid rgba(251, 146, 60, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 247, 237, 0.95), rgba(239, 246, 255, 0.92));
}
.it3-cron-form.is-modal .it3-cron-preview-icon {
  color: #ee6123;
  opacity: 1;
}
.it3-cron-form.is-modal .it3-cron-form-actions {
  padding-top: 0.6rem;
  border-top: 1px solid rgba(226, 232, 240, 0.78);
}
.it3-cron-form.is-modal .it3-cron-form-actions .btn-primary {
  min-width: 10rem;
  background: linear-gradient(135deg, #ee6123, #ff7a3d 54%, #fb923c);
  box-shadow: 0 16px 28px -18px rgba(238, 97, 35, 0.95);
}
.it3-cron-form.is-modal .it3-cron-form-actions .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 34px -18px rgba(238, 97, 35, 1);
}
.it3-cron-form.is-modal .it3-cron-form-actions .btn-outline {
  color: #475569;
  border-color: #dbe3ef;
  background: #fff;
}

/* Cron run history modal */
.it3-cron-history-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100050;
  background: rgba(15, 23, 42, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.it3-cron-history-panel {
  width: min(100%, 58rem);
  max-height: min(92vh, 880px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin: 0;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
}
.it3-cron-history-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.it3-cron-history-head-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  min-width: 0;
}
.it3-cron-history-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #166534;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}
.it3-cron-history-live-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: it3-cron-live-pulse 1.6s ease-in-out infinite;
}
@keyframes it3-cron-live-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45); }
  50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}
.it3-cron-history-head h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}
.it3-cron-history-close {
  border: 0;
  background: #f1f5f9;
  color: #475569;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.it3-cron-history-close:hover { background: #e2e8f0; color: #0f172a; }
.it3-cron-history-body {
  padding: 1rem 1.1rem 1.1rem;
  overflow: auto;
}
.it3-cron-history-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}
.it3-cron-history-stat {
  text-align: center;
  padding: 0.65rem 0.5rem;
  border-radius: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.it3-cron-history-stat strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}
.it3-cron-history-stat span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}
.it3-cron-history-stat.is-ok { background: #f0fdf4; border-color: #bbf7d0; }
.it3-cron-history-stat.is-ok strong { color: #166534; }
.it3-cron-history-stat.is-err { background: #fef2f2; border-color: #fecaca; }
.it3-cron-history-stat.is-err strong { color: #b91c1c; }
.it3-cron-history-url {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
  word-break: break-all;
}
.it3-cron-history-url span { font-weight: 700; color: #475569; }
.it3-cron-history-url a { color: var(--primary, #ee6123); font-weight: 600; }
.it3-cron-upcoming {
  margin: 0 0 1rem;
  padding: 0;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px -24px rgba(15, 23, 42, 0.28);
}
.it3-cron-upcoming.is-paused {
  background: #f8fafc;
}
.it3-cron-upcoming-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}
.it3-cron-upcoming-head-copy {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.it3-cron-upcoming-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  font-size: 1rem;
  flex-shrink: 0;
}
.it3-cron-upcoming-head h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.it3-cron-upcoming-head p {
  margin: 0.12rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}
.it3-cron-upcoming-cron {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: #0f172a;
  color: #f8fafc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 0;
}
.it3-cron-upcoming-timeline {
  display: grid;
  gap: 0;
  padding: 0.65rem 0.85rem 0.85rem;
}
.it3-cron-upcoming-slot {
  display: grid;
  grid-template-columns: 2.1rem 1fr;
  gap: 0.65rem;
  align-items: stretch;
}
.it3-cron-upcoming-slot-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 0.55rem;
}
.it3-cron-upcoming-slot-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: #e2e8f0;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 800;
  flex-shrink: 0;
}
.it3-cron-upcoming-slot.is-next .it3-cron-upcoming-slot-num {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  box-shadow: 0 4px 12px -4px rgba(37, 99, 235, 0.65);
}
.it3-cron-upcoming-slot-line {
  flex: 1;
  width: 2px;
  min-height: 0.65rem;
  margin: 0.25rem 0;
  background: linear-gradient(180deg, #cbd5e1 0%, #e2e8f0 100%);
  border-radius: 999px;
}
.it3-cron-upcoming-slot-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem 0.85rem;
  padding: 0.65rem 0.8rem;
  margin-bottom: 0.45rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.it3-cron-upcoming-slot.is-next .it3-cron-upcoming-slot-card {
  border-color: #93c5fd;
  background: linear-gradient(180deg, #eff6ff 0%, #f8fafc 100%);
  box-shadow: 0 8px 20px -16px rgba(37, 99, 235, 0.55);
}
.it3-cron-upcoming-slot-main {
  display: grid;
  gap: 0.3rem;
  min-width: 0;
}
.it3-cron-upcoming-slot-badge {
  display: inline-flex;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1d4ed8;
  background: #dbeafe;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
}
.it3-cron-upcoming-slot-badge.is-later {
  color: #64748b;
  background: #e2e8f0;
}
.it3-cron-upcoming-slot-when {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.55rem;
}
.it3-cron-upcoming-slot-date {
  font-size: 0.84rem;
  font-weight: 800;
  color: #0f172a;
}
.it3-cron-upcoming-slot-time {
  font-size: 0.8rem;
  font-weight: 600;
  color: #475569;
  font-variant-numeric: tabular-nums;
}
.it3-cron-upcoming-rel {
  flex-shrink: 0;
  min-width: 7.6rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #1e40af;
  background: #fff;
  border: 1px solid #bfdbfe;
  padding: 0.35rem 0.7rem;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 2px 8px -6px rgba(37, 99, 235, 0.35);
}
.it3-cron-upcoming-slot.is-next .it3-cron-upcoming-rel {
  color: #fff;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: transparent;
}
.it3-cron-history-note {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  color: #94a3b8;
}
.it3-cron-history-list { display: grid; gap: 0.45rem; }
.it3-cron-history-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.it3-cron-history-item.is-ok { border-color: #bbf7d0; }
.it3-cron-history-item.is-err { border-color: #fecaca; }
.it3-cron-history-item summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.65rem;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  list-style: none;
  font-size: 0.8125rem;
}
.it3-cron-history-item summary::-webkit-details-marker { display: none; }
.it3-cron-history-item-status { font-weight: 800; }
.it3-cron-history-item.is-ok .it3-cron-history-item-status { color: #166534; }
.it3-cron-history-item.is-err .it3-cron-history-item-status { color: #b91c1c; }
.it3-cron-history-item-time { color: #334155; font-weight: 600; }
.it3-cron-history-item-http,
.it3-cron-history-item-ms {
  font-size: 0.6875rem;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 700;
}
.it3-cron-history-item-body {
  padding: 0.55rem 0.85rem 0.85rem;
  border-top: 1px solid #f1f5f9;
}
.it3-cron-preview-heading {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}
.it3-cron-preview-kv {
  display: grid;
  gap: 0.35rem;
  max-height: 22rem;
  overflow: auto;
  padding: 0.15rem 0;
}
.it3-cron-preview-row {
  display: grid;
  grid-template-columns: minmax(8rem, 38%) 1fr;
  gap: 0.65rem 1rem;
  align-items: start;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.it3-cron-preview-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  line-height: 1.4;
  word-break: break-word;
}
.it3-cron-preview-value {
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
  word-break: break-word;
}
.it3-cron-preview-text {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.8125rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
  max-height: 22rem;
  overflow: auto;
}
.it3-cron-preview-empty {
  margin: 0;
  font-size: 0.8125rem;
  color: #94a3b8;
  font-style: italic;
}
.it3-cron-history-item-error {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: #b91c1c;
  font-weight: 600;
}

