/**
 * 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;
}

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%;
  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; }

.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-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: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-top: 1.75rem;
  font-size: 0.8125rem;
  color: #64748b;
}
.it3-footer-bottom p {
  margin: 0;
}
.it3-footer-bottom strong {
  color: #e2e8f0;
  font-weight: 600;
}
.it3-footer-bottom-tag {
  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 {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── 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-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; min-width: 200px; }
}
.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: 1fr 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: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.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-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(1.5rem, 3vw, 2.5rem) 0 0;
}
.it3-dashboard-shell {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .it3-dashboard-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.75rem;
    padding: 0 1.5rem;
  }
}
.it3-dash-menu-toggle { display: inline-flex; }
@media (min-width: 1024px) {
  .it3-dash-menu-toggle { display: none; }
}

.it3-dash-sidebar {
  display: none;
}
.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.75rem;
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}
.it3-dash-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(238, 97, 35, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}
.it3-dash-avatar-sm { width: 1.5rem; height: 1.5rem; font-size: 0.6875rem; }
.it3-dash-user-name {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.it3-dash-user-email {
  margin: 0.125rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.it3-dash-nav {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.it3-dash-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.45);
  color: #334155;
  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.85); }
.it3-dash-nav-link.is-active {
  background: rgba(238, 97, 35, 0.1);
  border-color: rgba(238, 97, 35, 0.25);
  color: var(--primary);
}

.it3-dashboard-main { min-width: 0; }
.it3-dash-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .it3-dash-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.it3-dash-header h1 {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}
.it3-dash-header p {
  margin: 0.5rem 0 0;
  color: #64748b;
}
.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.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.625rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.75);
  font-size: 0.875rem;
  color: #334155;
}

.it3-dash-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1.5rem 0;
}
@media (min-width: 640px) {
  .it3-dash-stats { grid-template-columns: repeat(3, 1fr); }
}
.it3-dash-stat {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}
.it3-dash-stat p {
  margin: 0;
  font-size: 0.875rem;
  color: #64748b;
}
.it3-dash-stat strong {
  display: block;
  margin-top: 0.25rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: #0f172a;
}

.it3-dash-shorten-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .it3-dash-shorten-form { flex-direction: row; }
}
.it3-dash-shorten-form .input-field { flex: 1; }
.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-links-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75) !important;
  padding: 0 !important;
}
.it3-dash-links-head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
}
@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: rgba(255, 255, 255, 0.45); }
.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-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; }

/* ─── 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: 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;
}

