:root {
  --ink: #14212c;
  --muted: #60707d;
  --line: #dce6eb;
  --paper: #ffffff;
  --soft: #f5f8f9;
  --mist: #eaf3f2;
  --teal: #0d8c86;
  --teal-dark: #075f5c;
  --cobalt: #235ac8;
  --amber: #d89423;
  --rose: #b94a68;
  --shadow: 0 18px 55px rgba(20, 33, 44, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
  box-shadow: 0 0 16px rgba(216, 148, 35, 0.35);
}

@media (pointer: fine) {
  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready select,
  body.cursor-ready textarea {
    cursor: none;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(220, 230, 235, 0.82);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  animation: slide-down 680ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  white-space: nowrap;
}

.brand-logo {
  display: block;
  width: clamp(150px, 17vw, 224px);
  height: 48px;
  object-fit: contain;
  transition: transform 240ms ease, filter 240ms ease;
}

.brand:hover .brand-logo,
.footer-logo:hover img {
  transform: translateY(-1px) scale(1.025);
  filter: drop-shadow(0 10px 18px rgba(216, 148, 35, 0.2));
}

.admin-brand-text {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--teal-dark);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 850;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--amber);
  transition: transform 220ms ease;
}

.nav a:hover {
  color: var(--teal-dark);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 72px clamp(18px, 6vw, 82px) 104px;
  isolation: isolate;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  z-index: -2;
  animation: hero-zoom 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.9) 38%, rgba(255, 255, 255, 0.28) 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, #fff 100%);
}

.hero-content {
  width: min(760px, 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(300px, 420px);
  gap: clamp(26px, 5vw, 76px);
  align-items: center;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content .hero-copy,
.hero-actions {
  animation: rise-in 780ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-content h1 {
  animation-delay: 120ms;
}

.hero-content .hero-copy {
  animation-delay: 220ms;
}

.hero-actions {
  animation-delay: 330ms;
}

.insight-dashboard {
  align-self: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 251, 251, 0.86)),
    rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(20, 33, 44, 0.2);
  backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  position: relative;
  overflow: hidden;
}

.insight-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 0%, rgba(216, 148, 35, 0.14) 46%, transparent 72%);
  transform: translateX(-110%);
  animation: dashboard-scan 6.5s ease-in-out infinite;
  pointer-events: none;
}

.insight-dashboard:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 148, 35, 0.46);
  box-shadow: 0 34px 95px rgba(20, 33, 44, 0.24);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-top div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.dashboard-top strong {
  color: var(--teal-dark);
  font-size: 2.35rem;
  line-height: 1;
}

.live-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(13, 140, 134, 0.44);
  animation: live-pulse 1.8s ease-out infinite;
}

.trend-panel {
  position: relative;
  min-height: 178px;
  padding: 16px;
  border: 1px solid rgba(220, 230, 235, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 246, 245, 0.9));
  overflow: hidden;
}

.trend-line {
  position: absolute;
  inset: 14px 14px auto 14px;
  width: calc(100% - 28px);
  height: 126px;
}

.trend-grid {
  fill: none;
  stroke: rgba(96, 112, 125, 0.14);
  stroke-width: 1;
}

.trend-area {
  fill: rgba(13, 140, 134, 0.12);
}

.trend-stroke {
  fill: none;
  stroke: var(--teal);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw-line 1.25s ease forwards;
}

.trend-bars {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  height: 82px;
}

.trend-bars span {
  display: block;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(216, 148, 35, 0.86), rgba(13, 140, 134, 0.92));
  transform-origin: bottom;
  animation: bar-grow 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.trend-bars span:nth-child(1) { height: 38%; }
.trend-bars span:nth-child(2) { height: 58%; animation-delay: 110ms; }
.trend-bars span:nth-child(3) { height: 74%; animation-delay: 210ms; }
.trend-bars span:nth-child(4) { height: 48%; animation-delay: 310ms; }
.trend-bars span:nth-child(5) { height: 86%; animation-delay: 410ms; }

.dashboard-feed {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.dashboard-feed span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(13, 140, 134, 0.1);
  font-size: 0.78rem;
  font-weight: 850;
}

.dashboard-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 150px;
  padding: 16px;
  border-radius: 8px;
  background: linear-gradient(180deg, #f7fbfb, #eef6f5);
}

.dashboard-chart span {
  display: block;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(180deg, var(--amber), var(--teal));
  animation: bar-grow 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.dashboard-chart span:nth-child(2) { animation-delay: 120ms; }
.dashboard-chart span:nth-child(3) { animation-delay: 220ms; }
.dashboard-chart span:nth-child(4) { animation-delay: 320ms; }
.dashboard-chart span:nth-child(5) { animation-delay: 420ms; }

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.dashboard-metrics div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.dashboard-metrics div:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(20, 33, 44, 0.09);
}

.dashboard-metrics strong,
.dashboard-metrics span {
  display: block;
}

.dashboard-metrics strong {
  color: var(--ink);
  font-size: 1.45rem;
}

.dashboard-metrics span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 6vw, 82px);
  background: var(--line);
}

.trust-strip div {
  min-height: 118px;
  padding: 24px;
  background: #fff;
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.signal-ribbon {
  overflow: hidden;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  background: #071721;
}

.signal-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: signal-marquee 24s linear infinite;
}

.signal-track span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  font-weight: 780;
  white-space: nowrap;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 6.4vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.1vw, 3.85rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.hero-copy {
  width: min(650px, 100%);
  color: #334655;
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.66;
}

.hero-actions,
.admin-toolbar,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 820;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transition: transform 520ms ease;
}

.button:hover::after {
  transform: translateX(115%);
}

.button.primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 10px 26px rgba(13, 140, 134, 0.24);
}

.button.secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
}

.button.full {
  width: 100%;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: #fff;
}

.stats-band div {
  min-height: 128px;
  padding: 28px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.stats-band div:hover {
  transform: translateY(-4px);
  background: #fbfefe;
  box-shadow: 0 18px 36px rgba(20, 33, 44, 0.08);
}

.stats-band div:last-child {
  border-right: 0;
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.05;
}

.stats-band span {
  color: var(--muted);
  line-height: 1.45;
}

.section,
.split-section,
.admin-section {
  padding: clamp(66px, 9vw, 118px) clamp(18px, 6vw, 82px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.intro-section {
  background: #fff;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
  max-width: 1120px;
}

.intro-grid p,
.panel-copy p,
.admin-intro p,
.survey-card p,
.contact-section p,
.timeline p,
.industry-grid p,
.service-card p {
  color: var(--muted);
  line-height: 1.66;
}

.services-section {
  background: var(--soft);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid.expanded {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.form-panel,
.admin-login,
.survey-card,
.member-row,
.industry-grid article,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(20, 33, 44, 0.06);
}

.service-card {
  min-height: 236px;
  padding: 24px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card:hover,
.industry-grid article:hover,
.timeline article:hover,
.survey-card:hover {
  transform: translateY(-6px);
  border-color: rgba(13, 140, 134, 0.35);
  box-shadow: 0 22px 55px rgba(20, 33, 44, 0.12);
}

.service-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 8px;
  color: #fff;
  background: var(--cobalt);
  font-weight: 850;
  transition: transform 240ms ease, background 240ms ease;
}

.service-card:hover .service-icon {
  transform: rotate(-4deg) scale(1.05);
  background: var(--teal);
}

.method-section {
  background: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.timeline article {
  position: relative;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.timeline article::after {
  content: "";
  position: absolute;
  right: -28px;
  top: -28px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(13, 140, 134, 0.1);
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--teal);
  font-weight: 850;
  transition: transform 240ms ease;
}

.timeline article:hover span {
  transform: scale(1.08);
}

.muted {
  background: #fbfcfc;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.industry-grid article {
  min-height: 178px;
  padding: 24px;
  border-top: 4px solid var(--teal);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.industry-grid article:nth-child(2n) {
  border-top-color: var(--cobalt);
}

.industry-grid article:nth-child(3n) {
  border-top-color: var(--amber);
}

.quality-section {
  padding: clamp(66px, 9vw, 118px) clamp(18px, 6vw, 82px);
  background: #fff;
}

.quality-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(5, 22, 34, 0.96), rgba(8, 82, 88, 0.92)),
    #071721;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.quality-card::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.12) 48%, transparent 68%);
  animation: slow-sheen 7s ease-in-out infinite;
  pointer-events: none;
}

.quality-card .eyebrow {
  color: #8fe3da;
}

.quality-card p {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.quality-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.quality-list li {
  display: grid;
  gap: 8px;
  min-height: 128px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.quality-list li:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.quality-list strong {
  color: #fff;
  font-size: 1.02rem;
}

.quality-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  background: var(--mist);
}

.panel-copy {
  max-width: 680px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #263747;
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #fff 0 26%, var(--teal) 28% 100%);
}

.form-panel,
.admin-login {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.form-panel:hover,
.admin-login:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(20, 33, 44, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #2d3d4c;
  font-size: 0.9rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cdd9df;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(13, 140, 134, 0.16);
  border-color: var(--teal);
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--teal-dark);
  font-weight: 760;
}

.tech-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(248, 251, 251, 0.98), rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(13, 140, 134, 0.05) 0 1px, transparent 1px 86px);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tech-grid article {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(205, 217, 223, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 38px rgba(20, 33, 44, 0.07);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.tech-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 10%, rgba(216, 148, 35, 0.14) 45%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 520ms ease;
  pointer-events: none;
}

.tech-grid article:hover {
  transform: translateY(-7px);
  border-color: rgba(216, 148, 35, 0.45);
  box-shadow: 0 24px 62px rgba(20, 33, 44, 0.13);
}

.tech-grid article:hover::after {
  transform: translateX(120%);
}

.tech-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 38px;
  border: 1px solid rgba(13, 140, 134, 0.24);
  border-radius: 50%;
  color: var(--teal-dark);
  background: #e9f5f3;
  font-weight: 900;
}

.tech-grid h3 {
  margin-bottom: 12px;
}

.tech-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.proof-section {
  background: var(--soft);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.case-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(20, 33, 44, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.case-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 148, 35, 0.45);
  box-shadow: 0 22px 55px rgba(20, 33, 44, 0.12);
}

.case-grid span {
  display: inline-flex;
  margin-bottom: 46px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #e9f5f3;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.faq-section {
  background: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(20, 33, 44, 0.05);
  overflow: hidden;
}

.faq-list summary {
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list details[open] summary {
  color: var(--teal-dark);
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.65;
}

.survey-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.survey-card {
  display: grid;
  gap: 12px;
  min-height: 220px;
  padding: 22px;
}

.survey-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #204351;
  background: #e9f3f2;
  font-size: 0.82rem;
  font-weight: 800;
}

.contact-section {
  padding: clamp(62px, 8vw, 96px) clamp(18px, 6vw, 82px);
  background: linear-gradient(180deg, #f8fbfb, #eef7f6);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(20, 33, 44, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.contact-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(20, 33, 44, 0.12);
}

.contact-panel div:first-child {
  max-width: 780px;
}

.admin-section {
  background: #eef5f7;
}

.admin-section.standalone {
  min-height: calc(100vh - 70px);
}

.admin-shell {
  display: grid;
  gap: 24px;
}

.admin-intro {
  max-width: 780px;
}

.admin-page .admin-intro h1 {
  font-size: clamp(2.1rem, 5vw, 4.4rem);
}

.admin-login {
  max-width: 460px;
}

.admin-dashboard {
  display: grid;
  grid-template-columns: minmax(310px, 0.55fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.admin-data {
  display: grid;
  gap: 18px;
}

.admin-data h3 {
  margin: 8px 0 0;
}

.admin-list {
  grid-template-columns: 1fr;
}

.survey-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.mini-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  font-weight: 800;
}

.mini-button.danger {
  color: #a23a2b;
}

.member-list {
  display: grid;
  gap: 10px;
}

.member-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
}

.member-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hidden {
  display: none !important;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 160ms ease, width 160ms ease, height 160ms ease, background 160ms ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 16px rgba(13, 140, 134, 0.45);
}

.cursor-ring {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(35, 90, 200, 0.36);
  border-radius: 50%;
  background: rgba(13, 140, 134, 0.045);
}

.cursor-active .cursor-dot,
.cursor-active .cursor-ring {
  opacity: 1;
}

.cursor-hover .cursor-dot {
  background: var(--amber);
}

.cursor-hover .cursor-ring {
  width: 44px;
  height: 44px;
  border-color: rgba(216, 148, 35, 0.54);
  background: rgba(216, 148, 35, 0.09);
}

.empty-state {
  padding: 26px;
  border: 1px dashed #b9c8cf;
  border-radius: 8px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.74);
}

.footer {
  position: relative;
  padding: clamp(50px, 7vw, 82px) clamp(18px, 6vw, 82px) 28px;
  color: rgba(255, 255, 255, 0.72);
  background: #030506;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1.25fr) repeat(4, minmax(150px, 0.8fr));
  gap: clamp(24px, 4vw, 54px);
  max-width: 1500px;
  margin: 0 auto;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.2rem;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.footer-column a:hover {
  color: #f3c75b;
}

.footer-logo img {
  display: block;
  width: 210px;
  height: 82px;
  object-fit: contain;
}

.footer-about {
  max-width: 330px;
}

.footer-contact strong {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.social-links a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #030506;
  background: #f5f7f8;
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-links a:hover {
  color: #030506;
  background: #f3c75b;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 14px 26px rgba(243, 199, 91, 0.25);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.back-to-top {
  position: absolute;
  right: clamp(18px, 4vw, 46px);
  bottom: 26px;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  color: #030506;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.16);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
  animation: float-button 2.4s ease-in-out infinite;
}

.back-to-top:hover {
  background: #f3c75b;
  transform: translateY(-4px);
  box-shadow: 0 16px 38px rgba(243, 199, 91, 0.3);
}

.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.is-visible,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 160ms;
}

.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 240ms;
}

.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 320ms;
}

.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 400ms;
}

.reveal-stagger.is-visible > *:nth-child(7) {
  transition-delay: 480ms;
}

.reveal-stagger.is-visible > *:nth-child(8) {
  transition-delay: 560ms;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.045);
  }
}

@keyframes slow-sheen {
  0%,
  45% {
    transform: translateX(-100%);
  }
  72%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes float-button {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -6px;
  }
}

@keyframes bar-grow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes dashboard-scan {
  0%,
  48% {
    transform: translateX(-110%);
  }
  72%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 140, 134, 0.44);
  }
  72% {
    box-shadow: 0 0 0 12px rgba(13, 140, 134, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(13, 140, 134, 0);
  }
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes signal-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .service-grid,
  .service-grid.expanded,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 820px;
    align-items: start;
    padding-top: 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.84) 46%, rgba(255, 255, 255, 0.32) 84%),
      linear-gradient(180deg, rgba(255, 255, 255, 0) 72%, #fff 100%);
  }

  .stats-band,
  .trust-strip,
  .survey-list,
  .tech-grid,
  .admin-dashboard,
  .split-section,
  .intro-grid,
  .hero-layout,
  .quality-card,
  .contact-panel,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .industry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-band div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .brand {
    white-space: normal;
  }

  .brand-logo {
    width: 154px;
    height: 42px;
  }

  .nav {
    gap: 16px;
  }

  .hero {
    min-height: 790px;
    padding-bottom: 72px;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.55rem);
  }

  .service-grid,
  .service-grid.expanded,
  .timeline,
  .industry-grid,
  .quality-list,
  .dashboard-metrics,
  .footer-inner,
  .form-row,
  .member-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .insight-dashboard {
    padding: 14px;
  }

  .trend-panel {
    min-height: 156px;
  }

  .trend-bars {
    gap: 8px;
  }

  .footer {
    padding-bottom: 94px;
  }

  .back-to-top {
    left: 18px;
    right: auto;
  }
}
