:root {
  --ink: #030303;
  --ink-soft: #1f2429;
  --paper: #ffffff;
  --mist: #f4f7fb;
  --line: #dce4ec;
  --red: #ee3338;
  --red-strong: #ff0000;
  --blue: #00a6f2;
  --blue-deep: #006fa3;
  --gray: #68717a;
  --shadow: 0 24px 70px rgba(3, 3, 3, 0.14);
  --radius: 8px;
  font-family: Avenir Next, Montserrat, Inter, Segoe UI, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.access-strip {
  background: var(--ink);
  color: var(--paper);
  font-size: 0.86rem;
}

.access-strip-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 38px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.access-strip span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.access-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.access-links a {
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: background 160ms ease, color 160ms ease;
}

.access-links a:first-child {
  color: var(--blue);
}

.access-links a:last-child {
  color: var(--paper);
  background: var(--red);
}

.access-links a:hover,
.access-links a:focus-visible {
  color: var(--paper);
  background: var(--blue-deep);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(220, 228, 236, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 72px;
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  font-size: 1.18rem;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-links a.is-active {
  color: var(--red);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
  background: var(--red);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.menu-toggle::after {
  content: "▾";
  margin-left: 8px;
  color: var(--red);
}

.nav.is-menu-open .menu-toggle::after {
  content: "▴";
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--paper);
  background: var(--red);
  box-shadow: 0 12px 28px rgba(238, 51, 56, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--red-strong);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--blue);
  box-shadow: 0 12px 30px rgba(0, 166, 242, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.91) 52%, rgba(0, 166, 242, 0.08) 100%),
    radial-gradient(circle at 88% 18%, rgba(238, 51, 56, 0.16), transparent 32%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--ink) 0 33%, var(--red) 33% 66%, var(--blue) 66% 100%);
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: 56px;
  padding: 76px 0 92px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue-deep);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 4px;
  border-radius: 999px;
  background: var(--blue);
}

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.8rem, 7vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 900;
}

.accent-red {
  color: var(--red);
}

.accent-blue {
  color: var(--blue);
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.trust-item {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.28rem;
  font-weight: 900;
}

.trust-item span {
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.insight-panel {
  position: relative;
  width: min(430px, 100%);
  padding: 34px;
  border: 1px solid rgba(220, 228, 236, 0.85);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.insight-panel::before,
.insight-panel::after {
  content: "";
  position: absolute;
  border-radius: var(--radius);
  z-index: -1;
}

.insight-panel::before {
  inset: -26px 42px auto auto;
  width: 150px;
  height: 150px;
  background: var(--blue);
}

.insight-panel::after {
  inset: auto auto -24px -22px;
  width: 118px;
  height: 118px;
  background: var(--red);
}

.panel-logo {
  width: 170px;
  margin-bottom: 28px;
}

.metric {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}

.metric-icon {
  width: 64px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
  font-weight: 900;
  font-size: 1.4rem;
}

.metric h2 {
  margin-bottom: 2px;
  font-size: 2.4rem;
  line-height: 1;
}

.metric p {
  margin: 0;
  color: var(--gray);
  font-weight: 700;
}

.bars {
  display: grid;
  gap: 12px;
}

.bar {
  display: grid;
  grid-template-columns: 90px 1fr 38px;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
  font-weight: 900;
  color: var(--ink-soft);
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  background: var(--mist);
  overflow: hidden;
}

.bar-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.bar:nth-child(2) .bar-fill {
  background: var(--red);
}

.bar:nth-child(3) .bar-fill {
  background: var(--ink);
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: var(--mist);
}

.services-section {
  --services-bg-image: none;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    var(--services-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.services-section .section-inner {
  position: relative;
  z-index: 1;
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: end;
  margin-bottom: 42px;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.section-heading p,
.lead {
  color: var(--gray);
  font-size: 1.05rem;
}

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

.service-card,
.method-card,
.deliverable {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-card {
  min-height: 290px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 242, 0.55);
  box-shadow: 0 18px 44px rgba(3, 3, 3, 0.1);
}

.service-icon {
  width: 48px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
}

.service-card:nth-child(2n) .service-icon {
  background: var(--red);
}

.service-card:nth-child(3n) .service-icon {
  background: var(--blue);
}

.service-card svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.34rem;
  line-height: 1.18;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 20px;
}

.service-card .tag {
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.expanded-services .service-card {
  min-height: 380px;
}

.service-list {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 800;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
}

.service-list li:nth-child(2)::before {
  background: var(--red);
}

.service-list li:nth-child(3)::before {
  background: var(--ink);
}

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

.method-card {
  min-height: 230px;
  padding: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.step {
  display: inline-grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  margin-bottom: 28px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-weight: 900;
}

.method-card:nth-child(2) .step,
.method-card:nth-child(4) .step {
  background: var(--red);
}

.method-card:nth-child(3) .step {
  background: var(--blue);
}

.method-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.method-card p {
  margin: 0;
  color: var(--gray);
  font-size: 0.96rem;
}

.deliverables-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 26px;
  align-items: stretch;
}

.dashboard-preview {
  min-height: 420px;
  padding: 28px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
  overflow: hidden;
  position: relative;
}

.dashboard-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 93%, rgba(255, 255, 255, 0.08) 93% 94%, transparent 94%),
    linear-gradient(0deg, transparent 0 88%, rgba(255, 255, 255, 0.08) 88% 89%, transparent 89%);
  background-size: 44px 44px;
  pointer-events: none;
}

.preview-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.preview-top img {
  width: 120px;
  padding: 8px;
  border-radius: var(--radius);
  background: var(--paper);
  filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.12));
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #dce4ec;
  font-size: 0.82rem;
  font-weight: 900;
}

.status::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--blue);
}

.chart {
  position: relative;
  z-index: 1;
  height: 260px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  padding-top: 28px;
}

.column {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  align-items: end;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.column span:first-child {
  display: block;
  align-self: end;
  width: 100%;
  min-height: 8px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: var(--blue);
  font-size: 0;
  line-height: 0;
}

.column:nth-child(2n) span:first-child {
  background: var(--red);
}

.column:nth-child(5) span:first-child {
  background: var(--paper);
}

.deliverable-list {
  display: grid;
  gap: 14px;
}

.deliverable {
  padding: 22px;
}

.deliverable h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

.deliverable p {
  margin: 0;
  color: var(--gray);
}

.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  font-weight: 900;
}

.cta {
  color: var(--paper);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(238, 51, 56, 0.26), transparent 48%),
    linear-gradient(300deg, rgba(0, 166, 242, 0.26), transparent 46%);
}

.cta .section-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: 40px;
  align-items: center;
}

.cta h2 {
  margin-bottom: 18px;
  color: var(--paper);
}

.cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
}

.contact-box {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-box strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.contact-box a {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--gray);
  font-size: 0.94rem;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
    linear-gradient(90deg, rgba(238, 51, 56, 0.13), rgba(0, 166, 242, 0.15));
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8px;
  background: linear-gradient(90deg, var(--ink) 0 33%, var(--red) 33% 66%, var(--blue) 66% 100%);
}

.page-hero-inner {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: 44px;
  padding: 72px 0 84px;
}

.page-hero.compact .page-hero-inner {
  min-height: 350px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
}

.page-hero-card,
.detail-summary,
.status-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.page-hero-card {
  padding: 28px;
}

.page-hero-card img {
  width: 150px;
  margin-bottom: 26px;
}

.page-hero-card strong,
.page-hero-card span {
  display: block;
}

.page-hero-card strong {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.page-hero-card span {
  color: var(--gray);
}

.image-page-hero {
  --page-hero-image: url("../images/img2.png");
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--ink);
  background-image: var(--page-hero-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.image-page-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 8px;
  background: linear-gradient(90deg, var(--ink) 0 33%, var(--red) 33% 66%, var(--blue) 66% 100%);
}

.image-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.58), rgba(3, 3, 3, 0.22)),
    linear-gradient(0deg, rgba(3, 3, 3, 0.12), rgba(3, 3, 3, 0.12));
}

.image-page-hero .page-hero-inner {
  position: relative;
  z-index: 2;
}

.image-page-hero h1,
.image-page-hero .kicker {
  color: var(--paper);
}

.image-page-hero p {
  color: rgba(255, 255, 255, 0.84);
}

.image-page-hero .page-hero-card,
.image-page-hero .detail-summary,
.image-page-hero .status-board {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.nosotros-hero {
  --page-hero-image: url("../images/img2.png");
}

.servicios-hero {
  --page-hero-image: url("../images/img1.png");
}

.encuestas-hero {
  --page-hero-image: url("../images/img3.png");
}

.encuesta-detalle-hero {
  --page-hero-image: url("../images/img2.png");
}

.contacto-hero {
  --page-hero-image: url("../images/img1.png");
}

.voting-hero {
  --page-hero-image: url("../images/img3.png");
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(300px, 0.85fr);
  gap: 52px;
  align-items: start;
}

.rich-copy {
  color: var(--gray);
  font-size: 1.06rem;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.principles-section {
  --principles-bg-image: url("../images/img1.png");
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}

.principles-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--principles-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.principles-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.74), rgba(3, 3, 3, 0.42)),
    linear-gradient(0deg, rgba(3, 3, 3, 0.18), rgba(3, 3, 3, 0.18));
}

.principles-section .section-inner {
  position: relative;
  z-index: 2;
}

.principles-section .section-heading {
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.5);
  backdrop-filter: blur(10px);
}

.principles-section h2 {
  color: var(--paper);
}

.principles-section .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.principles-section .kicker {
  color: var(--paper);
}

.values-grid,
.survey-grid,
.indicator-grid {
  display: grid;
  gap: 18px;
}

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

.value-card,
.survey-card,
.tech-card,
.result-panel,
.question-card,
.notes-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.value-card {
  padding: 28px;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  margin-bottom: 0;
  color: var(--gray);
}

.status-board {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.status-board div {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.status-board div:last-child {
  border-bottom: 0;
}

.status-board strong,
.status-board span {
  display: block;
}

.status-board strong {
  font-size: 2rem;
  line-height: 1;
}

.status-board span {
  margin-top: 6px;
  color: var(--gray);
  font-weight: 800;
}

.toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

.toolbar h2 {
  margin-bottom: 0;
}

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

.survey-card {
  padding: 28px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.survey-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 242, 0.5);
  box-shadow: 0 18px 44px rgba(3, 3, 3, 0.1);
}

.survey-card-top,
.survey-meta,
.result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.survey-card h3 {
  margin: 20px 0 10px;
  font-size: 1.35rem;
}

.survey-card p {
  color: var(--gray);
}

.survey-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--blue);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.survey-status.review {
  background: var(--red);
}

.survey-date,
.survey-meta {
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 800;
}

.progress-line {
  height: 12px;
  margin: 22px 0 14px;
  border-radius: 999px;
  background: var(--mist);
  overflow: hidden;
}

.progress-line span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--blue));
}

.survey-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue-deep);
  font-weight: 900;
}

.published-results {
  margin-top: 72px;
}

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

.published-result-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.published-result-card:hover,
.published-result-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 242, 0.5);
  box-shadow: 0 18px 44px rgba(3, 3, 3, 0.1);
}

.published-result-card a,
.published-result-card .result-modal-trigger {
  display: block;
  width: 100%;
  padding: 14px 14px 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.published-result-body {
  display: grid;
  gap: 12px;
  padding: 12px 14px 14px;
}

.published-result-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 6px;
  background: var(--mist);
}

.published-result-card .category-chip {
  width: fit-content;
  margin-bottom: 0;
}

.published-result-card h3 {
  margin-bottom: 0;
  font-size: 1.08rem;
  line-height: 1.2;
}

.published-result-card p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 0.94rem;
}

.detail-summary {
  padding: 28px;
}

.detail-summary strong,
.detail-summary span:not(.survey-status) {
  display: block;
}

.detail-summary strong {
  margin: 20px 0 8px;
  font-size: 4rem;
  line-height: 1;
}

.detail-summary span:not(.survey-status) {
  color: var(--gray);
  font-weight: 800;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.tech-card,
.result-panel,
.question-card,
.notes-card {
  padding: 28px;
}

.tech-card {
  position: sticky;
  top: 104px;
}

.tech-card dl {
  margin: 24px 0;
}

.tech-card dt {
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tech-card dt:first-child {
  padding-top: 0;
  border-top: 0;
}

.tech-card dd {
  margin: 4px 0 16px;
  font-weight: 900;
}

.detail-main {
  display: grid;
  gap: 18px;
}

.indicator-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.indicator-grid article {
  padding: 22px;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--ink);
}

.indicator-grid article:nth-child(2) {
  background: var(--red);
}

.indicator-grid article:nth-child(3) {
  background: var(--blue);
}

.indicator-grid strong,
.indicator-grid span {
  display: block;
}

.indicator-grid strong {
  margin-bottom: 8px;
  font-size: 2.2rem;
  line-height: 1;
}

.indicator-grid span {
  font-weight: 800;
}

.question-card h3 {
  margin-bottom: 24px;
}

.answer-row {
  display: grid;
  grid-template-columns: 160px 1fr 48px;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 900;
}

.answer-row .progress-line {
  margin: 0;
}

.notes-card p {
  margin: 18px 0 0;
  color: var(--gray);
  font-size: 1.05rem;
}

.survey-results-section {
  display: grid;
  gap: 22px;
}

.result-category {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.category-heading {
  margin-bottom: 20px;
}

.category-heading h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.category-heading p {
  margin-bottom: 0;
  color: var(--gray);
}

.category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.result-image-grid.single {
  grid-template-columns: minmax(0, 520px);
}

.result-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
}

.result-image-card .result-modal-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.result-image-card img,
.result-modal-trigger img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  background: var(--paper);
}

.result-image-card figcaption {
  padding: 12px 14px;
  color: var(--ink-soft);
  background: var(--paper);
  border-top: 1px solid var(--line);
  font-weight: 900;
}

.result-modal[hidden] {
  display: none;
}

.result-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.result-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.82);
}

.result-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(94vw, 920px);
  max-height: 92vh;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.result-modal-dialog h2 {
  margin: 0;
  padding-right: 96px;
  font-size: 1.15rem;
}

.result-modal-dialog img {
  width: 100%;
  max-height: calc(92vh - 100px);
  object-fit: contain;
  border-radius: 6px;
  background: var(--mist);
}

.result-modal-gallery {
  position: relative;
  display: grid;
  align-items: center;
}

.result-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(14, 28, 40, 0.82);
  color: var(--paper);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.result-modal-nav[hidden] {
  display: none;
}

.result-modal-prev {
  left: 14px;
}

.result-modal-next {
  right: 14px;
}

.result-modal-footer {
  display: grid;
  gap: 12px;
}

.result-modal-counter {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.result-modal-thumbs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.result-modal-thumb {
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: var(--mist);
  cursor: pointer;
}

.result-modal-thumb.is-active {
  border-color: var(--red);
}

.result-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 36px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.contact-options,
.contact-info-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-options {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.form-heading h2 {
  margin-bottom: 12px;
}

.form-heading p {
  margin-bottom: 0;
  color: var(--gray);
  font-size: 1.04rem;
}

.contact-option {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-option:hover,
.contact-option:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(0, 166, 242, 0.55);
  box-shadow: 0 14px 34px rgba(3, 3, 3, 0.1);
}

.contact-option strong,
.contact-option span {
  display: block;
}

.contact-option strong {
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.contact-option span {
  color: var(--gray);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.primary-option {
  color: var(--paper);
  background: linear-gradient(135deg, var(--red), var(--blue));
  border-color: transparent;
}

.primary-option span {
  color: rgba(255, 255, 255, 0.82);
}

.contact-info-panel {
  padding: 30px;
  color: var(--paper);
  background: var(--ink);
  position: sticky;
  top: 104px;
}

.contact-info-panel h2 {
  color: var(--paper);
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-methods {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-methods a {
  display: block;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-methods strong,
.contact-methods span {
  display: block;
}

.contact-methods strong {
  margin-bottom: 4px;
}

.contact-methods span {
  color: rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
}

.voting-form,
.voting-side {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.voting-form {
  display: grid;
  gap: 24px;
  padding: 30px;
}

.voting-catalog {
  width: 100%;
}

.voting-callout {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(0, 166, 242, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(0, 166, 242, 0.08), rgba(255, 255, 255, 0.98));
}

.voting-callout strong {
  font-size: 1rem;
}

.voting-callout span {
  color: var(--gray);
}

.voting-actions {
  display: grid;
  gap: 14px;
}

.voting-actions p {
  margin: 0;
  color: var(--gray);
}

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

.voting-card {
  max-width: none;
}

.voting-card-muted {
  opacity: 0.92;
}

.voting-card .voting-card-trigger {
  display: block;
  width: 100%;
  padding: 14px 14px 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.voting-card .voting-card-trigger img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
}

.voting-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.voting-card-meta span {
  color: var(--gray);
  font-size: 0.92rem;
  font-weight: 800;
}

.voting-card-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.voting-card-actions .btn {
  min-width: 138px;
  justify-content: center;
}

.btn-disabled {
  pointer-events: none;
  opacity: 0.72;
}

.poll-question {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.poll-question legend {
  margin-bottom: 10px;
  font-size: 1.28rem;
  font-weight: 900;
}

.poll-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.poll-option:has(input:checked) {
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(0, 166, 242, 0.14);
}

.poll-option input {
  margin-top: 5px;
  accent-color: var(--red);
}

.poll-option strong,
.poll-option small {
  display: block;
}

.poll-option strong {
  margin-bottom: 4px;
  font-size: 1.05rem;
}

.poll-option small {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.4;
}

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

.voter-fields label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 900;
}

.voter-fields select {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.privacy-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--gray);
  font-weight: 800;
}

.privacy-check input {
  margin-top: 4px;
  accent-color: var(--red);
}

.voting-form .btn {
  width: fit-content;
}

.voting-side {
  position: sticky;
  top: 104px;
  padding: 30px;
}

.voting-side p {
  color: var(--gray);
}

.voting-side .btn {
  margin-top: 12px;
}

.survey-modal[hidden] {
  display: none;
}

.survey-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
}

.survey-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 3, 3, 0.86);
}

.survey-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(96vw, 860px);
  max-height: 92vh;
  display: grid;
  gap: 18px;
  padding: 24px;
  overflow: auto;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(3, 3, 3, 0.38);
}

.survey-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 38px;
  padding: 8px 12px;
  border: 0;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--red);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.survey-modal-header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-right: 92px;
}

.survey-modal-header h2 {
  margin: 4px 0 0;
  font-size: 1.5rem;
}

.survey-step-indicator {
  min-width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 900;
}

.survey-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--line);
}

.survey-progress span {
  display: block;
  width: 14.2857%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transition: width 220ms ease;
}

.survey-wizard {
  display: grid;
  gap: 18px;
}

.survey-step {
  display: none;
  gap: 18px;
}

.survey-step.is-active {
  display: grid;
}

.survey-step h3 {
  margin: 0;
  font-size: 1.52rem;
  line-height: 1.25;
}

.survey-option-list {
  display: grid;
  gap: 12px;
}

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

.survey-option {
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--mist);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.survey-option:hover,
.survey-option:focus-visible {
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 166, 242, 0.12);
}

.survey-option.is-selected {
  border-color: var(--blue);
  color: var(--paper);
  background: linear-gradient(135deg, var(--blue-deep), var(--blue));
  box-shadow: 0 14px 28px rgba(0, 111, 163, 0.2);
}

.survey-section-tag {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.survey-contact-grid label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 900;
}

.survey-contact-grid input {
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink);
  font: inherit;
}

.survey-contact-grid input:focus-visible {
  outline: 2px solid rgba(0, 166, 242, 0.24);
  outline-offset: 2px;
}

.survey-help {
  margin: 0;
  color: var(--gray);
}

.survey-modal-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
}

.survey-modal-actions .btn {
  min-width: 120px;
}

.survey-modal-actions .btn[hidden] {
  display: none !important;
}

.survey-thanks {
  display: grid;
  gap: 14px;
  padding: 16px 0 8px;
  text-align: center;
}

.survey-thanks h3 {
  font-size: 1.7rem;
}

.survey-thanks p {
  margin: 0 auto;
  max-width: 540px;
  color: var(--gray);
}

.survey-thanks-badge {
  display: inline-flex;
  width: fit-content;
  justify-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.survey-thanks-badge-exit {
  background: var(--red);
}

.survey-summary {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  text-align: left;
}

.survey-summary-item {
  display: grid;
  gap: 4px;
}

.survey-summary-item strong {
  font-size: 0.9rem;
}

.survey-summary-item span {
  color: var(--gray);
  font-weight: 700;
}

@media (max-width: 980px) {
  .nav {
    min-height: auto;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 12px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 18px 44px rgba(3, 3, 3, 0.1);
    font-size: 0.86rem;
  }

  .nav.is-menu-open .nav-links {
    display: flex;
  }

  .nav-links a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px 12px;
    border-radius: 6px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a.is-active {
    color: var(--paper);
    background: var(--red);
  }

  .hero-inner,
  .section-heading,
  .deliverables-wrap,
  .cta .section-inner,
  .page-hero-inner,
  .split-section,
  .detail-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .values-grid,
  .indicator-grid,
  .result-image-grid,
  .result-image-grid.single {
    grid-template-columns: 1fr;
  }

  .tech-card {
    position: static;
  }

  .contact-info-panel {
    position: static;
  }

  .voting-side {
    position: static;
  }

  .hero-inner {
    min-height: auto;
    padding: 58px 0 72px;
  }

  .hero-visual {
    min-height: auto;
  }

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

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

  .survey-grid {
    grid-template-columns: 1fr;
  }

  .published-results-grid,
  .voting-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .survey-option-list-grid,
  .survey-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .access-strip-inner,
  .nav,
  .hero-inner,
  .page-hero-inner,
  .section-inner,
  .footer-inner {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 58px;
  }

  .access-strip-inner {
    min-height: auto;
    padding: 8px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .access-links {
    width: 100%;
  }

  .access-links a {
    flex: 1;
    text-align: center;
  }

  .brand span {
    font-size: 1rem;
  }

  .nav {
    gap: 10px;
  }

  .menu-toggle {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .nav .btn {
    min-height: 40px;
    padding: 10px 12px;
    font-size: 0.88rem;
  }

  .nav-links {
    overflow: visible;
    padding-bottom: 8px;
  }

  .nav-links a {
    width: 100%;
    white-space: nowrap;
  }

  .published-results-grid,
  .voting-card-grid {
    grid-template-columns: 1fr;
  }

  .result-modal-dialog {
    width: min(100vw - 24px, 920px);
    padding: 16px;
  }

  .result-modal-nav {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .result-modal-prev {
    left: 8px;
  }

  .result-modal-next {
    right: 8px;
  }

  .result-modal-thumb {
    width: 56px;
    height: 56px;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .trust-strip,
  .service-grid,
  .method-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .insight-panel {
    padding: 24px;
  }

  .metric {
    grid-template-columns: 52px 1fr;
  }

  .metric-icon {
    width: 52px;
  }

  .bar {
    grid-template-columns: 72px 1fr 34px;
    gap: 8px;
  }

  .section {
    padding: 68px 0;
  }

  .dashboard-preview {
    min-height: 360px;
    padding: 22px;
  }

  .chart {
    gap: 8px;
    height: 218px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .page-hero-inner {
    min-height: auto;
    padding: 52px 0 64px;
  }

  .toolbar,
  .survey-card-top,
  .survey-meta,
  .result-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .answer-row {
    grid-template-columns: 1fr;
  }

  .contact-options {
    padding: 24px;
  }

  .voter-fields {
    grid-template-columns: 1fr;
  }

  .voting-form,
  .voting-side {
    padding: 24px;
  }

  .survey-modal {
    padding: 10px;
  }

  .survey-modal-dialog {
    padding: 18px;
  }

  .survey-modal-header {
    padding-right: 70px;
    flex-direction: column;
    gap: 10px;
  }

  .survey-modal-header h2,
  .survey-step h3,
  .survey-thanks h3 {
    font-size: 1.28rem;
  }

  .survey-modal-close {
    top: 12px;
    right: 12px;
  }

  .survey-modal-actions {
    flex-wrap: wrap;
  }

  .survey-modal-actions .btn {
    flex: 1 1 140px;
  }
}
