:root {
  --slate-950: #07152f;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-100: #dbeafe;
  --blue-50: #eff6ff;
  --sky-300: #7dd3fc;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--slate-900);
  font-family: Arial, "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.eyebrow {
  margin: 0;
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2 {
  margin: 12px 0 0;
  color: var(--slate-950);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.16;
  font-weight: 900;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 900;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.25);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--slate-200);
  color: var(--slate-950);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #07152f, #1d4ed8);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.18);
}

.brand-mark.light {
  background: var(--white);
  color: var(--slate-950);
}

.brand strong {
  display: block;
  color: var(--slate-950);
}

.brand small {
  display: block;
  color: var(--slate-500);
  font-size: 0.75rem;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  gap: 4px;
  align-items: center;
}

.primary-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--slate-700);
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--blue-100);
  border-radius: 6px;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 10px 14px;
  font-weight: 900;
}

.hero {
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
  padding: 88px 0;
}

.hero-grid,
.two-col,
.case-grid,
.ai-grid,
.checkup-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.hero h1 {
  margin: 20px 0 0;
  max-width: 760px;
  color: var(--slate-950);
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  line-height: 1.14;
  font-weight: 900;
}

.hero p {
  color: var(--slate-600);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.dashboard,
.panel {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.1);
}

.dashboard {
  padding: 20px;
}

.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--slate-200);
  padding-bottom: 16px;
}

.dashboard-head p,
.form-head p {
  margin: 0;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-head h2,
.form-head h2 {
  margin: 8px 0 0;
  font-size: 1.35rem;
}

.badge-dark {
  align-self: flex-start;
  border-radius: 6px;
  background: var(--slate-950);
  color: var(--white);
  padding: 9px 12px;
  font-size: 0.75rem;
  font-weight: 900;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.metric-card,
.small-card {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--slate-50);
  padding: 16px;
}

.metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--slate-950);
  font-size: 1.75rem;
}

.bar-chart {
  display: flex;
  height: 144px;
  align-items: end;
  gap: 12px;
  margin-top: 20px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--slate-50);
  padding: 20px;
}

.bar-chart span {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(to top, var(--blue-700), var(--sky-300));
}

.card-grid,
.service-grid,
.industry-grid {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}

.card-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
}

.industry-grid {
  grid-template-columns: repeat(5, 1fr);
}

.problem-card,
.service-card,
.industry-card,
.case-card,
.flow-card {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.problem-card {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--slate-50);
}

.problem-label,
.flow-number {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-700);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px var(--slate-200);
}

.flow-wrap {
  margin-top: 40px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.flow-card {
  position: relative;
  background: var(--slate-50);
  text-align: center;
}

.flow-card h3,
.service-card h3,
.industry-card h3,
.case-card h3 {
  margin: 14px 0 0;
  color: var(--slate-950);
}

.flow-card p,
.service-card p,
.industry-card p,
.case-card p {
  margin: 10px 0 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--blue-100);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.icon-box {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-700);
  box-shadow: inset 0 0 0 1px var(--blue-100);
}

.sd-icon {
  width: 24px;
  height: 24px;
}

.industry-visual {
  display: grid;
  height: 96px;
  place-items: center;
  border-radius: 8px;
  background: var(--slate-50);
  color: var(--blue-700);
  box-shadow: inset 0 0 0 1px var(--slate-200);
}

.case-grid {
  grid-template-columns: 1fr 1.2fr;
  align-items: stretch;
  margin-top: 40px;
}

.case-list {
  display: grid;
  gap: 16px;
}

.chart-panel {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--slate-50);
  padding: 24px;
}

.chart-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.chart-svg {
  margin-top: 24px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--white);
  padding: 16px;
}

.ai-section {
  background: var(--slate-950);
  color: var(--white);
}

.ai-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.ai-section .section-heading h2,
.ai-section .section-heading p {
  color: var(--white);
}

.ai-section .section-heading p:not(.eyebrow) {
  color: var(--slate-300);
}

.ai-board {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
}

.ai-board-inner {
  border-radius: 8px;
  background: var(--white);
  color: var(--slate-950);
  padding: 20px;
}

.ai-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  border-radius: 8px;
  background: var(--slate-50);
  padding: 14px;
}

.progress {
  margin-top: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--slate-200);
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue-600);
}

.cta-box {
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--slate-50);
  padding: 40px;
}

.cta-box-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.page-hero {
  border-bottom: 1px solid var(--slate-200);
  background: var(--white);
  padding: 88px 0;
}

.page-hero h1 {
  margin: 16px 0 0;
  max-width: 860px;
  color: var(--slate-950);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.15;
}

.page-hero p {
  max-width: 760px;
  color: var(--slate-600);
  line-height: 1.8;
}

.sd-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.08);
}

.form-head {
  border-radius: 8px;
  background: var(--slate-950);
  color: var(--white);
  padding: 20px;
}

.form-head p {
  color: var(--sky-300);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sd-form label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-weight: 800;
}

.sd-form input,
.sd-form textarea,
.sd-form select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}

.sd-form textarea {
  min-height: 128px;
}

.form-note {
  color: var(--slate-500);
  font-size: 0.82rem;
}

.site-footer {
  background: var(--slate-950);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0;
}

.site-footer h2 {
  margin: 0 0 16px;
  font-size: 1rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: var(--slate-300);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer-copy {
  max-width: 420px;
  margin-top: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--slate-200);
    border-radius: 8px;
    background: var(--white);
    padding: 12px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.14);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .case-grid,
  .ai-grid,
  .checkup-grid,
  .cta-box-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .card-grid,
  .industry-grid,
  .flow-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .section,
  .hero,
  .page-hero {
    padding: 64px 0;
  }

  .metric-grid,
  .service-grid,
  .card-grid,
  .industry-grid,
  .flow-grid,
  .chart-metrics,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 2.15rem;
  }
}

.elementor-front-page .elementor,
.elementor-page-content .elementor,
.entry-content .elementor {
  width: 100%;
}

.sight-image-slot img {
  display: block;
  width: 100%;
  min-height: 180px;
  object-fit: cover;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--slate-50), var(--blue-50));
}

.sight-image-slot-label .elementor-heading-title {
  display: inline-flex;
  margin-top: 10px;
  border: 1px dashed var(--slate-300);
  border-radius: 999px;
  background: var(--slate-50);
  color: var(--slate-600);
  padding: 8px 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

/* Elementor editable homepage draft */
.sight-el-home {
  --sight-el-navy: #07152f;
  --sight-el-blue: #2563eb;
  --sight-el-soft: #f6f9ff;
  color: var(--slate-950);
}

.sight-el-home .elementor-heading-title,
.sight-el-home h1,
.sight-el-home h2,
.sight-el-home h3 {
  letter-spacing: 0;
}

.sight-el-section {
  padding: 86px 0;
}

.sight-el-section .elementor-container {
  max-width: 1160px;
}

.sight-el-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--slate-200);
  background:
    radial-gradient(circle at 82% 16%, rgba(125, 211, 252, .26), transparent 30%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #eef5ff 100%);
}

.sight-el-hero .elementor-container {
  min-height: 680px;
  align-items: center;
}

.sight-el-eyebrow .elementor-heading-title {
  color: var(--sight-el-blue);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sight-el-hero-title .elementor-heading-title {
  color: #06142c;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.05;
  font-weight: 950;
}

.sight-el-lead {
  color: var(--slate-600);
  font-size: 1.08rem;
  line-height: 1.85;
}

.sight-el-visual-card,
.sight-el-card,
.sight-el-image-frame {
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .09);
  overflow: hidden;
}

.sight-el-visual-card {
  padding: 18px;
  transform: translateY(0);
  transition: transform .28s ease, box-shadow .28s ease;
}

.sight-el-visual-card:hover,
.sight-el-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
}

.sight-el-image-frame img,
.sight-el-visual-card img,
.sight-el-card img {
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #eaf2ff, #f8fafc);
}

.sight-el-image-label .elementor-heading-title {
  display: inline-flex;
  border: 1px dashed rgba(37, 99, 235, .28);
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: var(--sight-el-blue);
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 900;
}

.sight-el-problems {
  background: var(--white);
}

.sight-el-problem-grid .elementor-widget-icon-box,
.sight-el-service-grid .elementor-widget-icon-box,
.sight-el-ai-grid .elementor-widget-icon-box,
.sight-el-case-card,
.sight-el-flow-card {
  height: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, .07);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sight-el-problem-grid .elementor-widget-icon-box:hover,
.sight-el-service-grid .elementor-widget-icon-box:hover,
.sight-el-ai-grid .elementor-widget-icon-box:hover,
.sight-el-case-card:hover,
.sight-el-flow-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, .28);
  box-shadow: 0 22px 58px rgba(15, 23, 42, .11);
}

.sight-el-system,
.sight-el-ai {
  background: linear-gradient(135deg, #07152f, #10284d);
  color: var(--white);
}

.sight-el-system .elementor-heading-title,
.sight-el-system .sight-el-lead,
.sight-el-ai .elementor-heading-title,
.sight-el-ai .sight-el-lead {
  color: var(--white);
}

.sight-el-system .sight-el-flow-card,
.sight-el-ai .sight-el-ai-grid .elementor-widget-icon-box {
  background: rgba(255,255,255,.94);
  color: var(--slate-950);
}

.sight-el-service-grid .elementor-widget-image img,
.sight-el-ai-grid .elementor-widget-image img,
.sight-el-case-card .elementor-widget-image img {
  min-height: 150px;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
}

.sight-el-cta {
  background:
    linear-gradient(135deg, rgba(7,21,47,.93), rgba(37,99,235,.82)),
    radial-gradient(circle at 85% 20%, rgba(125,211,252,.35), transparent 34%);
  color: #fff;
}

.sight-el-cta .elementor-heading-title,
.sight-el-cta .sight-el-lead {
  color: #fff;
}

@media (max-width: 767px) {
  .sight-el-section {
    padding: 58px 0;
  }

  .sight-el-hero .elementor-container {
    min-height: auto;
  }

  .sight-el-hero-title .elementor-heading-title {
    font-size: 2.35rem;
  }

  .sight-el-lead {
    font-size: .98rem;
  }

  .sight-el-card,
  .sight-el-visual-card {
    border-radius: 18px;
  }
}

/* Stable homepage test page v2 */
.sight-test-full-width {
  overflow: hidden;
  background: #fff;
}

.sight-test-v2 {
  --test-navy: #07152f;
  --test-navy-2: #10284d;
  --test-blue: #2563eb;
  --test-cyan: #68c7ef;
  --test-soft: #f5f8fd;
  --test-line: #dbe5f2;
  color: #07152f;
  font-family: inherit;
}

.sight-test-v2 *,
.sight-test-v2 *::before,
.sight-test-v2 *::after {
  box-sizing: border-box;
}

.sight-test-v2 .test-container {
  width: min(100% - 40px, 1160px);
  margin: 0 auto;
}

.sight-test-v2 .test-section {
  padding: 88px 0;
}

.sight-test-v2 .test-eyebrow {
  margin: 0 0 14px;
  color: var(--test-blue);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sight-test-v2 h1,
.sight-test-v2 h2,
.sight-test-v2 h3,
.sight-test-v2 p {
  margin-top: 0;
  letter-spacing: 0;
}

.sight-test-v2 h1 {
  max-width: 680px;
  color: #06142c;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.05;
  font-weight: 950;
}

.sight-test-v2 h2 {
  color: #07152f;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  font-weight: 950;
}

.sight-test-v2 h3 {
  color: #07152f;
  font-size: 1.08rem;
  font-weight: 900;
}

.sight-test-v2 p {
  color: #526178;
  font-size: 1rem;
  line-height: 1.85;
}

.sight-test-v2 .test-lead {
  max-width: 720px;
  font-size: 1.08rem;
}

.sight-test-v2 .test-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 54px;
  align-items: center;
}

.sight-test-v2 .test-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sight-test-v2 .test-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sight-test-v2 .test-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--test-line);
  background:
    radial-gradient(circle at 82% 14%, rgba(104,199,239,.34), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #fff 46%, #eef5ff 100%);
}

.sight-test-v2 .test-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 80%);
  pointer-events: none;
}

.sight-test-v2 .test-hero .test-container {
  position: relative;
  z-index: 1;
}

.sight-test-v2 .test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}

.sight-test-v2 .test-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid var(--test-blue);
  border-radius: 8px;
  background: var(--test-blue);
  color: #fff;
  padding: 0 22px;
  font-weight: 900;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.sight-test-v2 .test-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, .24);
}

.sight-test-v2 .test-btn.secondary {
  background: #fff;
  color: #07152f;
  border-color: var(--test-line);
}

.sight-test-v2 .test-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sight-test-v2 .test-pills span {
  border: 1px solid var(--test-line);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #07152f;
  padding: 8px 12px;
  font-size: .88rem;
  font-weight: 900;
}

.sight-test-v2 .visual-panel,
.sight-test-v2 .image-slot,
.sight-test-v2 .test-card {
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .09);
}

.sight-test-v2 .visual-panel {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.sight-test-v2 .image-slot {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.sight-test-v2 .image-slot img {
  display: block;
  width: 100%;
  min-height: 240px;
  object-fit: cover;
  background: linear-gradient(135deg, #eaf2ff, #f8fafc);
  opacity: .72;
}

.sight-test-v2 .image-slot figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  width: fit-content;
  max-width: calc(100% - 32px);
  border: 1px dashed rgba(37, 99, 235, .28);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--test-blue);
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.sight-test-v2 .dashboard-frame {
  overflow: hidden;
  border: 1px solid var(--test-line);
  border-radius: 20px;
  background: #fff;
}

.sight-test-v2 .dashboard-top {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--test-line);
  padding: 14px;
}

.sight-test-v2 .dashboard-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #bfdbfe;
}

.sight-test-v2 .dashboard-body {
  padding: 22px;
}

.sight-test-v2 .chart-lines {
  height: 190px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, transparent 0 34%, rgba(37,99,235,.82) 35% 38%, transparent 39%),
    linear-gradient(165deg, transparent 0 46%, rgba(104,199,239,.75) 47% 50%, transparent 51%),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(148,163,184,.22) 37px);
}

.sight-test-v2 .metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.sight-test-v2 .metric-row div {
  border: 1px solid var(--test-line);
  border-radius: 14px;
  padding: 14px;
}

.sight-test-v2 .metric-row strong {
  display: block;
  color: #07152f;
  font-size: 1.45rem;
}

.sight-test-v2 .test-card {
  height: 100%;
  padding: 22px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.sight-test-v2 .test-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, .32);
  box-shadow: 0 26px 68px rgba(15, 23, 42, .12);
}

.sight-test-v2 .icon-badge {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
  color: var(--test-blue);
  font-size: .82rem;
  font-weight: 950;
}

.sight-test-v2 .dark-section {
  background: linear-gradient(135deg, var(--test-navy), var(--test-navy-2));
}

.sight-test-v2 .dark-section h2,
.sight-test-v2 .dark-section h3,
.sight-test-v2 .dark-section .test-eyebrow {
  color: #fff;
}

.sight-test-v2 .dark-section p {
  color: #c7d4e8;
}

.sight-test-v2 .dark-section .test-card {
  background: rgba(255,255,255,.95);
}

.sight-test-v2 .dark-section .test-card h3 {
  color: #07152f;
}

.sight-test-v2 .dark-section .test-card p {
  color: #526178;
}

.sight-test-v2 .flow-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.sight-test-v2 .flow-step {
  position: relative;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  padding: 18px;
}

.sight-test-v2 .flow-step strong {
  display: block;
  color: #7dd3fc;
  font-size: .78rem;
  margin-bottom: 22px;
}

.sight-test-v2 .flow-step span {
  color: #fff;
  font-weight: 900;
}

.sight-test-v2 .service-card .image-slot,
.sight-test-v2 .ai-card .image-slot,
.sight-test-v2 .case-card .image-slot {
  min-height: 160px;
  margin: -4px -4px 18px;
}

.sight-test-v2 .service-card .image-slot img,
.sight-test-v2 .ai-card .image-slot img,
.sight-test-v2 .case-card .image-slot img {
  min-height: 160px;
}

.sight-test-v2 .case-card {
  padding: 18px;
}

.sight-test-v2 .case-meta {
  color: var(--test-blue);
  font-size: .82rem;
  font-weight: 900;
}

.sight-test-v2 .cta-panel {
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 78% 18%, rgba(125,211,252,.32), transparent 32%),
    linear-gradient(135deg, #07152f, #12315e);
  padding: 44px;
}

.sight-test-v2 .cta-panel h2,
.sight-test-v2 .cta-panel p {
  color: #fff;
}

@media (max-width: 980px) {
  .sight-test-v2 .test-grid-2,
  .sight-test-v2 .test-grid-3,
  .sight-test-v2 .test-grid-4,
  .sight-test-v2 .flow-strip {
    grid-template-columns: 1fr 1fr;
  }

  .sight-test-v2 .test-hero {
    min-height: auto;
    padding: 78px 0;
  }
}

@media (max-width: 640px) {
  .sight-test-v2 .test-container {
    width: min(100% - 28px, 1160px);
  }

  .sight-test-v2 .test-section {
    padding: 58px 0;
  }

  .sight-test-v2 .test-grid-2,
  .sight-test-v2 .test-grid-3,
  .sight-test-v2 .test-grid-4,
  .sight-test-v2 .flow-strip,
  .sight-test-v2 .metric-row {
    grid-template-columns: 1fr;
  }

  .sight-test-v2 h1 {
    font-size: 2.35rem;
  }

  .sight-test-v2 h2 {
    font-size: 1.9rem;
  }

  .sight-test-v2 .visual-panel,
  .sight-test-v2 .cta-panel {
    padding: 18px;
    border-radius: 20px;
  }
}

/* Sight inner-page design system, aligned with the preferred homepage */
.sight-inner-system {
  --inner-navy: #06142c;
  --inner-navy-2: #10284d;
  --inner-blue: #2563eb;
  --inner-sky: #6cc8f0;
  --inner-line: #dbe5f2;
  --inner-soft: #f5f8fd;
  color: #06142c;
}

.sight-inner-system .elementor-section {
  overflow: hidden;
}

.sight-inner-system .elementor-container {
  max-width: 1160px;
}

.sight-inner-hero {
  position: relative;
  border-bottom: 1px solid var(--inner-line);
  background:
    radial-gradient(circle at 78% 15%, rgba(108, 200, 240, .28), transparent 31%),
    linear-gradient(135deg, #f8fbff 0%, #fff 48%, #eef5ff 100%);
}

.sight-inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}

.sight-inner-section {
  padding: 86px 0;
}

.sight-inner-dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(108, 200, 240, .18), transparent 34%),
    linear-gradient(135deg, var(--inner-navy), var(--inner-navy-2));
}

.sight-inner-dark .elementor-heading-title,
.sight-inner-dark .elementor-widget-text-editor,
.sight-inner-dark p {
  color: #fff;
}

.sight-inner-eyebrow .elementor-heading-title {
  color: var(--inner-blue);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sight-inner-dark .sight-inner-eyebrow .elementor-heading-title {
  color: #7dd3fc;
}

.sight-inner-title .elementor-heading-title {
  color: #06142c;
  font-size: clamp(2.35rem, 4.5vw, 4.45rem);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
}

.sight-inner-h2 .elementor-heading-title {
  color: #06142c;
  font-size: clamp(1.9rem, 3vw, 2.85rem);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: 0;
}

.sight-inner-dark .sight-inner-title .elementor-heading-title,
.sight-inner-dark .sight-inner-h2 .elementor-heading-title {
  color: #fff;
}

.sight-inner-lead,
.sight-inner-lead p,
.sight-inner-card .elementor-widget-text-editor,
.sight-inner-card p {
  color: #526178;
  font-size: 1rem;
  line-height: 1.85;
}

.sight-inner-dark .sight-inner-lead,
.sight-inner-dark .sight-inner-lead p {
  color: #c7d4e8;
}

.sight-inner-visual,
.sight-inner-card,
.sight-inner-image {
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 22px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 22px 70px rgba(15, 23, 42, .09);
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.sight-inner-visual:hover,
.sight-inner-card:hover {
  transform: translateY(-5px);
  border-color: rgba(37, 99, 235, .3);
  box-shadow: 0 28px 80px rgba(15, 23, 42, .14);
}

.sight-inner-card {
  height: 100%;
  padding: 22px;
}

.sight-inner-dark .sight-inner-card {
  background: rgba(255,255,255,.95);
}

.sight-inner-dark .sight-inner-card .elementor-heading-title,
.sight-inner-dark .sight-inner-card p,
.sight-inner-dark .sight-inner-card .elementor-widget-text-editor {
  color: #06142c;
}

.sight-inner-image img,
.sight-inner-visual img,
.sight-inner-card img {
  display: block;
  width: 100%;
  min-height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #eaf2ff, #f8fafc);
  opacity: .76;
}

.sight-inner-image-label .elementor-heading-title {
  display: inline-flex;
  max-width: 100%;
  border: 1px dashed rgba(37, 99, 235, .3);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--inner-blue);
  padding: 8px 12px;
  font-size: .82rem;
  font-weight: 900;
}

.sight-inner-icon .elementor-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
  color: var(--inner-blue);
}

.sight-inner-icon .elementor-icon-box-title {
  margin-bottom: 8px;
  color: #06142c;
  font-weight: 950;
}

.sight-inner-dashboard {
  padding: 20px;
}

.sight-inner-dashboard .elementor-widget-wrap {
  border: 1px solid var(--inner-line);
  border-radius: 20px;
  background: #fff;
}

.sight-inner-button .elementor-button {
  border-radius: 8px;
  background: var(--inner-blue);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 99, 235, .22);
}

.sight-inner-button .elementor-button:hover {
  transform: translateY(-2px);
}

.sight-inner-case .sight-inner-image img,
.sight-inner-service .sight-inner-image img,
.sight-inner-ai .sight-inner-image img {
  min-height: 160px;
}

.sight-inner-system .elementor-column {
  min-width: 0;
}

.sight-inner-card .elementor-heading-title {
  overflow-wrap: anywhere;
}

.sight-inner-card .elementor-widget-heading h3,
.sight-inner-card .elementor-icon-box-title {
  font-size: 1.06rem;
  line-height: 1.28;
}

.sight-inner-card .elementor-widget-text-editor p {
  margin-bottom: 0;
}

.sight-inner-stat .elementor-widget-wrap {
  border: 1px solid rgba(148, 163, 184, .26);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  padding: 20px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.sight-inner-stat .elementor-heading-title {
  color: var(--inner-blue);
  font-size: 2rem;
  font-weight: 950;
}

.sight-inner-process .elementor-widget-wrap {
  border-left: 2px solid rgba(37, 99, 235, .22);
  padding-left: 20px;
}

.sight-inner-mini-label .elementor-heading-title {
  display: inline-flex;
  border: 1px solid rgba(125, 211, 252, .32);
  border-radius: 999px;
  background: rgba(239, 246, 255, .84);
  color: var(--inner-blue);
  padding: 7px 10px;
  font-size: .78rem;
  font-weight: 950;
}

.sight-inner-card .sight-inner-image {
  margin-bottom: 16px;
}

.sight-inner-card .sight-inner-image img {
  min-height: 150px;
  border-radius: 16px;
}

.sight-inner-wide-visual .sight-inner-image img,
.sight-inner-wide-visual img {
  min-height: 320px;
}

.sight-inner-form-shell {
  border-radius: 24px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, .12);
}

.sight-inner-form-shell input,
.sight-inner-form-shell select,
.sight-inner-form-shell textarea {
  width: 100%;
  border: 1px solid var(--inner-line);
  border-radius: 12px;
  padding: 13px 14px;
}

.sight-inner-form-shell label {
  display: grid;
  gap: 8px;
  color: #06142c;
  font-weight: 900;
  margin-bottom: 14px;
}

@media (max-width: 767px) {
  .sight-inner-section {
    padding: 58px 0;
  }

  .sight-inner-title .elementor-heading-title {
    font-size: 2.3rem;
  }

  .sight-inner-card {
    padding: 18px;
    border-radius: 18px;
  }

  .sight-inner-system .elementor-column {
    width: 100% !important;
  }

  .sight-inner-image img,
  .sight-inner-visual img,
  .sight-inner-card img,
  .sight-inner-wide-visual .sight-inner-image img,
  .sight-inner-wide-visual img {
    min-height: 190px;
  }

  .sight-inner-card .elementor-widget-heading h3,
  .sight-inner-card .elementor-icon-box-title {
    font-size: 1rem;
  }
}

/* Visual-first homepage refresh */
.home-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--slate-200);
  background:
    radial-gradient(circle at 80% 18%, rgba(125, 211, 252, 0.28), transparent 30%),
    linear-gradient(135deg, #f8fafc 0%, #ffffff 48%, #eef5ff 100%);
  padding: 96px 0 104px;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: 4%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.14), transparent 62%);
  filter: blur(8px);
  animation: sightGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.home-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.home-hero-copy h1 {
  margin: 18px 0 0;
  color: var(--slate-950);
  font-size: clamp(2.15rem, 4.05vw, 3.55rem);
  line-height: 1.13;
  font-weight: 900;
}

.home-hero-copy p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--slate-600);
  font-size: 1.04rem;
  line-height: 1.85;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  border: 1px solid rgba(29, 78, 216, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--slate-700);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.brand-command {
  position: relative;
  min-height: 560px;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.12s linear;
}

.command-main,
.float-card,
.audit-visual,
.growth-flow,
.service-tile,
.logo-wall article,
.case-tile,
.ai-workbench,
.visual-cta {
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
}

.command-main {
  position: absolute;
  inset: 32px 38px 20px 0;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  padding: 24px;
  animation: sightDashboardFloat 6.5s ease-in-out infinite;
}

.command-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.command-top span,
.float-card span {
  display: block;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-top strong {
  display: block;
  margin-top: 8px;
  color: var(--slate-950);
  font-size: 1.35rem;
}

.command-top em {
  border-radius: 999px;
  background: var(--slate-950);
  color: var(--white);
  padding: 8px 12px;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 900;
}

.command-chart {
  margin-top: 24px;
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  padding: 18px;
}

.command-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.command-metrics div,
.float-card {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  padding: 16px;
}

.command-metrics strong {
  display: block;
  margin-top: 7px;
  color: var(--slate-950);
  font-size: 1.65rem;
}

.command-metrics small {
  color: var(--slate-500);
  font-weight: 800;
}

.float-card {
  position: absolute;
  width: 210px;
  z-index: 2;
  animation: sightCardFloat 5.8s ease-in-out infinite;
}

.float-card strong {
  display: block;
  margin-top: 8px;
  color: var(--slate-950);
  line-height: 1.35;
}

.float-card p {
  margin: 8px 0 0;
  color: var(--slate-500);
  font-size: 0.82rem;
}

.float-ads {
  top: 0;
  right: 0;
  animation-delay: -1s;
}

.float-line {
  right: 14px;
  bottom: 54px;
  animation-delay: -2.2s;
}

.float-ai {
  left: 10px;
  bottom: 0;
  width: 240px;
  animation-delay: -3.4s;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 78px;
  margin-top: 14px;
}

.mini-bars i {
  flex: 1;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--sky-300), var(--blue-700));
  transform-origin: bottom;
  animation: sightBarPulse 3.6s ease-in-out infinite;
}

.mini-bars i:nth-child(2) {
  animation-delay: .2s;
}

.mini-bars i:nth-child(3) {
  animation-delay: .4s;
}

.mini-bars i:nth-child(4) {
  animation-delay: .6s;
}

.visual-section .split-visual {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 52px;
  align-items: center;
}

.problem-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.problem-map span {
  border: 1px solid var(--slate-200);
  border-radius: 12px;
  background: var(--slate-50);
  padding: 16px 18px;
  color: var(--slate-800);
  font-weight: 900;
}

.audit-visual {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 20px;
  align-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fafc, #ffffff);
  padding: 26px;
}

.audit-ring {
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #fff 0 42%, transparent 43%),
    conic-gradient(from 35deg, #1d4ed8, #7dd3fc, #dbeafe, #1d4ed8);
  animation: sightRingRotate 12s linear infinite;
}

.audit-ring span {
  color: var(--slate-950);
  font-weight: 900;
}

.audit-stack {
  display: grid;
  gap: 14px;
}

.audit-stack div {
  border: 1px solid var(--slate-200);
  border-radius: 14px;
  background: var(--white);
  padding: 16px;
}

.audit-stack strong {
  color: var(--blue-700);
  font-size: 0.85rem;
}

.audit-stack p {
  margin: 8px 0 0;
  color: var(--slate-950);
  font-weight: 900;
}

.growth-visual-section {
  background: linear-gradient(180deg, var(--slate-950), #0c2448);
  color: var(--white);
}

.growth-visual-section .section-heading h2,
.growth-visual-section .section-heading p {
  color: var(--white);
}

.growth-visual-section .section-heading p:not(.eyebrow) {
  color: var(--slate-300);
}

.growth-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  padding: 24px;
}

.growth-flow::before {
  content: "";
  position: absolute;
  left: 46px;
  right: 46px;
  top: 88px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #7dd3fc, transparent);
  animation: sightFlowLine 4.8s ease-in-out infinite;
}

.growth-node {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--slate-950);
  padding: 20px 14px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}

.growth-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.growth-node span {
  color: var(--blue-700);
  font-size: 0.78rem;
  font-weight: 900;
}

.node-icon {
  width: 48px;
  height: 48px;
  margin: 14px auto;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.15), rgba(125, 211, 252, 0.32)),
    radial-gradient(circle at 35% 35%, #fff, transparent 42%);
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.16);
  animation: sightNodePulse 3.4s ease-in-out infinite;
}

.growth-node h3 {
  margin: 0;
  font-size: 1.08rem;
}

.growth-node p {
  margin: 8px 0 0;
  color: var(--slate-600);
  font-size: 0.85rem;
  font-weight: 800;
}

.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.service-tile {
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  padding: 18px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(29, 78, 216, 0.28);
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.13);
}

.service-visual {
  min-height: 146px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, #f8fafc, #eaf3ff);
  padding: 16px;
}

.tile-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: var(--white);
  color: var(--blue-700);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.tile-screen {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.tile-screen span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: var(--white);
}

.tile-screen span:nth-child(2) {
  width: 76%;
  background: #dbeafe;
}

.tile-screen span:nth-child(3) {
  width: 56%;
  background: #bfdbfe;
}

.service-tile h3 {
  margin: 18px 0 0;
  color: var(--slate-950);
}

.service-tile p {
  margin: 10px 0 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.industry-wall-section {
  background: var(--slate-50);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.logo-wall article {
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
  padding: 16px;
  text-align: center;
}

.industry-scene {
  height: 138px;
  border-radius: 14px;
  background-color: #eef6ff;
  background-image:
    linear-gradient(135deg, rgba(29, 78, 216, 0.20), transparent),
    radial-gradient(circle at 72% 32%, #fff, transparent 22%),
    linear-gradient(90deg, transparent 0 20%, rgba(255,255,255,.72) 20% 44%, transparent 44% 100%);
  box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.08);
}

.scene-shop { background-color: #f5f7fb; }
.scene-edu { background-color: #eef2ff; }
.scene-engineer { background-color: #f8fafc; }
.scene-pro { background-color: #eef7f9; }

.logo-wall strong {
  display: block;
  margin-top: 16px;
  color: var(--slate-950);
  font-size: 1.08rem;
}

.logo-wall span {
  display: block;
  margin-top: 6px;
  color: var(--slate-500);
  font-size: 0.82rem;
  font-weight: 800;
}

.case-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.home-case-section .section-heading h2,
.home-case-section .section-heading p {
  color: var(--white);
}

.home-case-section .section-heading p:not(.eyebrow) {
  color: var(--slate-300);
}

.case-carousel {
  display: grid;
  grid-auto-columns: minmax(290px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  margin-top: 42px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.case-carousel::-webkit-scrollbar {
  height: 8px;
}

.case-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.5);
}

.enhanced-case {
  min-width: 290px;
  scroll-snap-align: start;
  transition: transform .22s ease, box-shadow .22s ease;
}

.enhanced-case:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.case-tile {
  overflow: hidden;
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  background: var(--white);
}

.case-image {
  display: flex;
  min-height: 190px;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(7, 21, 47, 0.86), rgba(29, 78, 216, 0.34)),
    linear-gradient(90deg, rgba(255,255,255,.12) 0 18%, transparent 18% 100%);
}

.case-commerce {
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.82), rgba(85, 183, 255, 0.34)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.18) 0 28px, transparent 28px 56px);
}

.case-service {
  background:
    linear-gradient(145deg, rgba(7, 21, 47, 0.88), rgba(51, 65, 85, 0.45)),
    radial-gradient(circle at 70% 30%, rgba(255,255,255,.34), transparent 24%);
}

.case-image span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--slate-950);
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 900;
}

.case-body {
  padding: 20px;
}

.case-body h3 {
  margin: 10px 0 0;
  color: var(--slate-950);
}

.case-body p:not(.eyebrow) {
  color: var(--slate-600);
  line-height: 1.7;
}

.case-body strong {
  display: block;
  border-top: 1px solid var(--slate-200);
  margin-top: 16px;
  padding-top: 14px;
  color: var(--slate-800);
  font-size: 0.9rem;
}

.ai-lab-section {
  background: linear-gradient(135deg, #07152f, #0f2443);
  color: var(--white);
}

.ai-lab-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.ai-lab-section .section-heading h2,
.ai-lab-section .section-heading p {
  color: var(--white);
}

.ai-lab-section .section-heading p:not(.eyebrow) {
  color: var(--slate-300);
}

.ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ai-tags span {
  border: 1px solid rgba(125, 211, 252, 0.24);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: var(--white);
  padding: 9px 12px;
  font-weight: 900;
}

.ai-workbench {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background: rgba(255,255,255,.08);
  padding: 18px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.32);
}

.ai-capability-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(241,245,249,.93));
  color: var(--slate-950);
  padding: 18px;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.ai-capability-card::before {
  content: "";
  position: absolute;
  inset: -40% -15% auto auto;
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(96,165,250,.26), transparent 68%);
  pointer-events: none;
}

.ai-capability-card:hover {
  transform: translateY(-7px);
  border-color: rgba(125, 211, 252, 0.42);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.22);
}

.ai-card-head {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.ai-card-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eff6ff, #bfdbfe);
  color: var(--brand-blue);
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.16);
}

.ai-card-icon svg {
  width: 21px;
  height: 21px;
}

.ai-card-head h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.ai-capability-card p {
  position: relative;
  min-height: 78px;
  margin: 0 0 16px;
  color: var(--slate-600);
  font-size: .92rem;
  line-height: 1.75;
}

.ai-card-visual {
  position: relative;
  overflow: hidden;
  min-height: 118px;
  border: 1px solid rgba(148, 163, 184, .28);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.74), rgba(219,234,254,.62)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(148,163,184,.18) 24px);
}

.ai-card-visual img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  opacity: .46;
  filter: saturate(.92);
  transform: scale(1.02);
  transition: transform .35s ease, opacity .35s ease;
}

.ai-card-visual span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(37, 99, 235, .18);
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--brand-blue-dark);
  padding: 7px 11px;
  font-size: .82rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
}

.ai-capability-card:hover .ai-card-visual img {
  opacity: .64;
  transform: scale(1.07);
}

.ai-image span {
  display: block;
  height: 94px;
  margin-top: 18px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 70% 28%, #fff 0 14%, transparent 15%),
    linear-gradient(135deg, #dbeafe, #93c5fd 48%, #0f4c81);
}

.ai-copy p,
.ai-flow p {
  margin-top: 34px;
  color: var(--slate-600);
  font-weight: 900;
  line-height: 1.7;
}

.mini-line {
  height: 98px;
  margin-top: 18px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, transparent 0 38%, rgba(29,78,216,.72) 39% 43%, transparent 44%),
    linear-gradient(#eef2f7 1px, transparent 1px);
  background-size: 100% 100%, 100% 24px;
}

.visual-cta {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 34px;
  align-items: center;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--slate-950), #12315e);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: center;
}

.trust-cards {
  display: grid;
  gap: 14px;
}

.trust-cards div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  background: var(--white);
  padding: 18px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.trust-cards strong {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: .82rem;
}

.trust-cards span {
  color: var(--slate-950);
  font-weight: 900;
}

@keyframes sightDashboardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes sightCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes sightGlow {
  from { opacity: .55; transform: scale(.96); }
  to { opacity: 1; transform: scale(1.06); }
}

@keyframes sightBarPulse {
  0%, 100% { transform: scaleY(.88); }
  50% { transform: scaleY(1); }
}

@keyframes sightRingRotate {
  to { transform: rotate(360deg); }
}

@keyframes sightFlowLine {
  0%, 100% { opacity: .45; transform: scaleX(.86); }
  50% { opacity: 1; transform: scaleX(1); }
}

@keyframes sightNodePulse {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.16), 0 0 0 rgba(125, 211, 252, 0); }
  50% { box-shadow: inset 0 0 0 1px rgba(29, 78, 216, 0.24), 0 0 28px rgba(125, 211, 252, .38); }
}

.visual-cta h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.18;
}

.visual-cta p:not(.eyebrow) {
  color: var(--slate-300);
  line-height: 1.75;
}

.cta-graphic {
  display: grid;
  gap: 14px;
}

.cta-graphic span {
  display: block;
  height: 72px;
  border-radius: 16px;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.12);
}

.cta-graphic span:nth-child(2) {
  width: 84%;
  margin-left: auto;
}

.cta-graphic span:nth-child(3) {
  width: 68%;
}

@media (max-width: 980px) {
  .home-hero-grid,
  .visual-section .split-visual,
  .ai-lab-grid,
  .visual-cta,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .brand-command {
    min-height: 520px;
  }

  .growth-flow,
  .service-showcase,
  .case-showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .logo-wall {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  .home-hero {
    padding: 72px 0;
  }

  .home-hero-copy h1 {
    font-size: 2.12rem;
  }

  .brand-command {
    min-height: auto;
  }

  .command-main,
  .float-card {
    position: relative;
    inset: auto;
    width: auto;
  }

  .brand-command,
  .command-main {
    display: grid;
    gap: 14px;
  }

  .command-metrics,
  .problem-map,
  .audit-visual,
  .growth-flow,
  .service-showcase,
  .logo-wall,
  .case-showcase,
  .ai-workbench {
    grid-template-columns: 1fr;
  }

  .growth-flow::before {
    left: 48px;
    right: auto;
    top: 48px;
    bottom: 48px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, #7dd3fc, transparent);
  }
}


/* Sight logo replacement - added by Codex 2026-06-19 */
.site-header .brand,
.site-footer .footer-brand{
  display:inline-flex;
  align-items:center;
  gap:0;
}
.site-header .brand .brand-mark,
.site-header .brand strong,
.site-header .brand small,
.site-footer .footer-brand .brand-mark,
.site-footer .footer-brand strong,
.site-footer .footer-brand p{
  display:none !important;
}
.site-header .brand::before,
.site-footer .footer-brand::before{
  content:"";
  display:block;
  background-repeat:no-repeat;
  background-position:left center;
  background-size:contain;
  flex:0 0 auto;
}
.site-header .brand::before{
  width:210px;
  height:61px;
  background-image:url('https://sight.com.tw/wp-content/uploads/2026/06/sight-logo-blue-scaled-1-scaled.png');
}
.site-footer .footer-brand::before{
  width:235px;
  height:64px;
  background-image:url('https://sight.com.tw/wp-content/uploads/2026/06/sight-logo-white.png');
}
@media (max-width: 767px){
	.site-header .brand::before{width:168px;height:49px;}
  .site-footer .footer-brand::before{width:210px;height:58px;}
}

/* Homepage image upgrade - Codex 2026-06-20 */
body.home .service-tile .service-visual{position:relative;min-height:150px;overflow:hidden;border-radius:18px;background-size:cover!important;background-position:center!important;border:1px solid rgba(188,215,245,.85)}
body.home .service-tile .service-visual:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(4,23,54,.04),rgba(4,23,54,.58));z-index:1}
body.home .service-tile .tile-icon{position:absolute;left:18px;top:18px;z-index:2;background:rgba(255,255,255,.92);box-shadow:0 12px 28px rgba(0,31,84,.16)}
body.home .service-tile .tile-screen{display:none}
body.home .service-tile:nth-child(1) .service-visual{background-image:url('https://images.unsplash.com/photo-1611162618071-b39a2ec055fb?auto=format&fit=crop&w=900&q=82')!important}
body.home .service-tile:nth-child(2) .service-visual{background-image:url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=82')!important}
body.home .service-tile:nth-child(3) .service-visual{background-image:url('https://images.unsplash.com/photo-1562577309-4932fdd64cd1?auto=format&fit=crop&w=900&q=82')!important}
body.home .service-tile:nth-child(4) .service-visual{background-image:url('https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=900&q=82')!important}
body.home .service-tile:nth-child(5) .service-visual{background-image:url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&w=900&q=82')!important}
body.home .service-tile:nth-child(6) .service-visual{background-image:url('https://images.unsplash.com/photo-1677442136019-21780ecad995?auto=format&fit=crop&w=900&q=82')!important}
body.home .case-image{min-height:220px;background-size:cover!important;background-position:center!important;position:relative;overflow:hidden}
body.home .case-image:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(3,20,48,.08),rgba(3,20,48,.56))}
body.home .case-image span{position:absolute;left:18px;bottom:18px;z-index:1;background:rgba(255,255,255,.92);color:#001a3d;border:1px solid rgba(207,224,245,.95)}
body.home .case-image.case-medical{background-image:url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?auto=format&fit=crop&w=1100&q=82')!important}
body.home .case-image.case-commerce{background-image:url('https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?auto=format&fit=crop&w=1100&q=82')!important}
body.home .case-image.case-service{background-image:url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1100&q=82')!important}
body.home .ai-card-visual{min-height:132px;overflow:hidden;background-size:cover!important;background-position:center!important;position:relative}
body.home .ai-card-visual img{display:none!important}
body.home .ai-card-visual:before{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(4,23,54,.32))}
body.home .ai-card-visual span{position:absolute;left:16px;bottom:14px;z-index:1;background:rgba(255,255,255,.92);color:#001a3d;border:1px solid rgba(188,215,245,.95)}
body.home .ai-capability-card:nth-child(1) .ai-card-visual{background-image:url('https://images.unsplash.com/photo-1559028012-481c04fa702d?auto=format&fit=crop&w=900&q=82')!important}
body.home .ai-capability-card:nth-child(2) .ai-card-visual{background-image:url('https://images.unsplash.com/photo-1455390582262-044cdead277a?auto=format&fit=crop&w=900&q=82')!important}
body.home .ai-capability-card:nth-child(3) .ai-card-visual{background-image:url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=900&q=82')!important}
body.home .ai-capability-card:nth-child(4) .ai-card-visual{background-image:url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=900&q=82')!important}

/* WordPress editable menu support - Codex 2026-06-23 */
.primary-nav-menu,
.footer-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
}

.primary-nav-menu li,
.footer-nav-menu li {
  margin: 0;
  padding: 0;
}

.primary-nav-menu a {
  display: block;
}

.site-footer .footer-nav-menu a {
  display: block;
  margin: 0 0 10px;
  color: var(--slate-300);
  font-size: 0.92rem;
  line-height: 1.7;
}

.site-footer .footer-nav-menu a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .primary-nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
}

/* Header menu CTA from editable WordPress menu - Codex 2026-06-23 */
.primary-nav-menu a[href*="/brand-checkup/"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 7px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
  border: 1px solid rgba(37, 99, 235, 0.18);
}

.primary-nav-menu a[href*="/brand-checkup/"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.3);
}

@media (max-width: 980px) {
  .primary-nav-menu a[href*="/brand-checkup/"] {
    width: 100%;
  }
}

/* Sight form submission feedback - Codex 2026-06-23 */
.sd-form-response {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.6;
}

.sd-form-response[data-type="success"] {
  color: #075985;
  background: #e0f2fe;
  border: 1px solid #7dd3fc;
}

.sd-form-response[data-type="error"] {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid #fecaca;
}

.sd-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* Customizer editable logo support - Codex 2026-06-24 */
.brand-logo {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 48px;
  object-fit: contain;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 240px;
  max-height: 76px;
  object-fit: contain;
}

.footer-brand:has(.footer-logo) {
  align-items: center;
}

@media (max-width: 640px) {
  .brand-logo {
    max-width: 148px;
    max-height: 42px;
  }

  .footer-logo {
    max-width: 210px;
  }
}

/* Header duplicate logo guard - Codex 2026-06-24 */
.site-header .header-inner > .custom-logo-link,
.site-header .header-inner > img,
.site-header .brand img:not(.brand-logo),
.site-header .brand .custom-logo:not(.brand-logo),
.site-header .brand-logo + img,
.site-header .brand-logo + .custom-logo-link {
  display: none !important;
}

.site-header .brand .brand-logo {
  display: block !important;
}

/* Strong single header logo rule - Codex 2026-06-24 */
.site-header .header-inner > .brand ~ .brand,
.site-header .header-inner > .brand ~ .custom-logo-link,
.site-header .header-inner > .brand ~ img,
.site-header .header-inner > .custom-logo-link ~ .brand,
.site-header .header-inner > .custom-logo-link ~ .custom-logo-link,
.site-header .header-inner > .custom-logo-link ~ img,
.site-header .header-inner > img ~ .brand,
.site-header .header-inner > img ~ .custom-logo-link,
.site-header .header-inner > img ~ img {
  display: none !important;
}


/* sight-header-logo-crop-fix: keep one visible logo when uploaded source has extra artwork on the right */
.site-header .brand {
  flex: 0 0 224px;
  width: 224px;
  max-width: 32vw;
  overflow: hidden;
}

.site-header .brand-logo {
  display: block;
  width: 360px !important;
  max-width: none !important;
  height: auto !important;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 900px) {
  .site-header .brand {
    flex-basis: 190px;
    width: 190px;
    max-width: 58vw;
  }

  .site-header .brand-logo {
    width: 305px !important;
  }
}
