:root {
  --ink: #111827;
  --ink-soft: #253044;
  --blue: #1d4ed8;
  --blue-light: #2563eb;
  --red: #dc2626;
  --gray: #6b7280;
  --muted: #f5f7fb;
  --line: #e5e7eb;
  --line-strong: rgba(100, 116, 139, 0.42);
  --surface: rgba(255, 255, 255, 0.88);
  --surface-soft: rgba(248, 250, 252, 0.88);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --shadow-card: 0 20px 54px rgba(17, 24, 39, 0.105);
  --shadow-lift: 0 28px 74px rgba(17, 24, 39, 0.16);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Corbel, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 18%, #f6f8fc 100%);
  line-height: 1.6;
}

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

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

[id] {
  scroll-margin-top: 148px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.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;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(148, 163, 184, 0.10);
  box-shadow: none;
  backdrop-filter: blur(16px) saturate(1.04);
  -webkit-backdrop-filter: blur(16px) saturate(1.04);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(248, 250, 255, 0.54);
  border-bottom-color: rgba(100, 116, 139, 0.20);
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.065);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo {
  width: 204px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-soft);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:not(.nav-cta) {
  padding: 8px 0;
}

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

.site-nav a:not(.nav-cta):hover,
.site-nav a:not(.nav-cta)[aria-current="page"] {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: #14213a;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(20, 33, 58, 0.22);
}

.nav-cta:hover {
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(100, 116, 139, 0.30);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.menu-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--ink);
}

.section-band {
  background:
    linear-gradient(120deg, rgba(29, 78, 216, 0.09) 0%, rgba(220, 38, 38, 0.035) 42%, transparent 72%),
    linear-gradient(180deg, #ffffff 0%, #f5f8fd 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.hero {
  display: flex;
  align-items: center;
  padding: 42px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.3rem, 3.9vw, 3.3rem);
  line-height: 1.04;
  max-width: 680px;
  text-wrap: balance;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 690px;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.hero-actions,
.cta-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  box-shadow: 0 18px 42px rgba(29, 78, 216, 0.26);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}

.btn-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 8px 11px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.055);
  font-size: 0.94rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.hero-media {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-media img {
  width: 100%;
  height: clamp(330px, 38vw, 520px);
  object-fit: cover;
  object-position: center;
}

.section {
  padding: 92px 0;
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(245, 247, 251, 0.92), rgba(239, 244, 251, 0.92));
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 36px;
}

.section-heading p,
.split-layout p,
.page-hero p {
  color: var(--gray);
  font-size: 1.08rem;
}

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

.service-card,
.service-detail,
.audience-card,
.step,
.legal-block,
.quote-form,
.contact-panel,
.values-panel {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(246, 249, 255, 0.96));
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.service-card {
  padding: 22px;
  min-height: 280px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::before,
.service-detail::before,
.audience-card::before,
.legal-block::before,
.quote-form::before,
.contact-panel::before,
.values-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), rgba(37, 99, 235, 0.40) 58%, var(--red));
  opacity: 0.92;
}

.service-card:hover,
.service-detail:hover,
.audience-card:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: var(--shadow-lift);
}

.service-card p,
.service-detail p,
.audience-card p,
.step p,
.legal-block p,
.contact-panel p {
  color: var(--gray);
}

.service-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(237, 244, 255, 0.96));
  border: 1px solid #cfe0ff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 12px 28px rgba(29, 78, 216, 0.10);
}

.service-visual svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.visual-support svg,
.visual-code svg {
  stroke: var(--blue);
}

.visual-audit svg,
.visual-web svg {
  stroke: var(--ink);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: center;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--blue);
  font-weight: 800;
}

.image-panel {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: clamp(320px, 34vw, 460px);
  object-fit: cover;
}

.image-panel figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.image-panel figcaption span {
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.step {
  position: relative;
  padding: 44px 24px 24px;
  overflow: visible;
  min-height: 210px;
  box-shadow: inset 0 5px 0 var(--blue), var(--shadow-card);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.step::before {
  display: none;
}

.step:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.32);
  box-shadow: inset 0 5px 0 var(--blue), var(--shadow-lift);
}

.step-marker {
  display: none;
}

.step-marker::before,
.step-marker::after {
  display: none;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  right: -18px;
  z-index: 3;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--blue);
  border-right: 3px solid var(--blue);
  transform: rotate(45deg);
  background: transparent;
}

.step:nth-child(3)::after {
  border-color: var(--red);
}

.step:nth-child(4) {
  box-shadow: inset 0 5px 0 var(--red), var(--shadow-card);
}

.step:nth-child(4):hover {
  box-shadow: inset 0 5px 0 var(--red), var(--shadow-lift);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 54px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(220, 38, 38, 0.18), transparent 26%),
    linear-gradient(135deg, var(--ink) 0%, #17243c 56%, #102f72 100%);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  opacity: 0.82;
}

.cta-content {
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.cta-content h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.cta-band .eyebrow {
  color: #93c5fd;
}

.site-footer {
  position: relative;
  padding: 44px 0;
  background:
    linear-gradient(180deg, #0d1320 0%, #0a101b 100%);
  color: #d1d5db;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.12), rgba(255, 255, 255, 0.34), rgba(220, 38, 38, 0.12));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr;
  gap: 36px;
}

.footer-logo {
  width: 152px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 6px;
}

.site-footer h2 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 6px 0;
  color: #d1d5db;
}

.page-hero {
  padding: 86px 0 72px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 46px;
  align-items: center;
}

.page-hero-copy {
  max-width: 820px;
}

.page-hero-media {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 420px;
  height: 240px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 44%);
  pointer-events: none;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-media-contact img {
  object-position: 64% center;
}

.legal-hero-card {
  justify-self: end;
  width: 100%;
  max-width: 360px;
  padding: 28px;
  border: 1px solid rgba(148, 163, 184, 0.34);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(29, 78, 216, 0.10), rgba(220, 38, 38, 0.035) 55%, transparent),
    var(--surface);
  box-shadow: var(--shadow-card);
}

.legal-paper {
  min-height: 188px;
  padding: 28px;
  border: 1px solid #dbe7ff;
  border-radius: var(--radius);
  background: #ffffff;
}

.legal-paper span,
.legal-paper strong {
  display: block;
  height: 8px;
  border-radius: 999px;
}

.legal-paper span:nth-child(1) {
  width: 54%;
  background: var(--ink);
}

.legal-paper span:nth-child(2) {
  width: 78%;
  margin-top: 24px;
  background: #9aa7ba;
}

.legal-paper span:nth-child(3) {
  width: 62%;
  margin-top: 14px;
  background: #9aa7ba;
}

.legal-paper strong {
  width: 42%;
  height: 12px;
  margin-top: 34px;
  background: var(--blue);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.filter-chip {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink-soft);
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.045);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.filter-chip.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #1d3358);
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.14);
}

.filter-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.34);
}

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

.service-detail {
  padding: 26px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-detail.is-hidden {
  display: none;
}

.service-detail ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.values-panel {
  padding: 24px;
  overflow: hidden;
}

.values-panel div + div {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.values-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.12rem;
}

.values-panel span {
  color: var(--gray);
}

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

.audience-card {
  padding: 24px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-panel,
.quote-form {
  padding: 26px;
  overflow: hidden;
}

.contact-method {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

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

.contact-method a,
.contact-method strong {
  color: var(--blue);
  font-size: 1.12rem;
  font-weight: 800;
}

.copy-button {
  width: fit-content;
  margin-top: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.05);
}

.quote-form {
  display: grid;
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.035);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(37, 99, 235, 0.14);
  border-color: var(--blue);
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
  color: var(--gray);
}

.checkbox-row input {
  width: 18px;
  margin-top: 4px;
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--blue);
  font-weight: 700;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.legal-section {
  padding-top: 52px;
}

.legal-block {
  padding: 26px;
  margin-bottom: 18px;
  overflow: hidden;
}

.legal-block h2 {
  font-size: 1.45rem;
}

.legal-block p {
  margin-bottom: 10px;
}

.legal-identity {
  margin-top: 28px;
  border-color: rgba(148, 163, 184, 0.4);
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.94), rgba(255, 255, 255, 0.92));
  color: rgba(17, 24, 39, 0.82);
  box-shadow: none;
}

.legal-identity h2 {
  font-size: 1.08rem;
  color: rgba(17, 24, 39, 0.72);
}

.legal-muted {
  color: rgba(75, 85, 99, 0.78);
  font-size: 0.94rem;
}

.legal-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 22px;
  margin-top: 14px;
}

.legal-detail-grid p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.privacy-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius);
  background: rgba(248, 251, 255, 0.78);
}

.privacy-choice div {
  display: grid;
  gap: 3px;
}

.privacy-choice strong {
  color: var(--ink);
}

.privacy-choice span {
  color: var(--gray);
  font-size: 0.94rem;
}

.privacy-choice b {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
}

.admin-shell {
  width: min(100% - 40px, 1120px);
  margin: 0 auto;
  padding: 48px 0;
}

.admin-login,
.admin-console {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.admin-login {
  max-width: 480px;
  margin: 8vh auto 0;
  padding: 30px;
}

.admin-logo {
  width: 158px;
  margin-bottom: 24px;
}

.admin-login h1,
.admin-topbar h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-login p,
.admin-empty {
  color: var(--gray);
}

.admin-login-form {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.admin-login-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 800;
}

.admin-login-form input {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 13px;
}

.admin-console {
  padding: 28px;
}

.admin-topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-logo-small {
  width: 136px;
  margin-bottom: 20px;
}

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

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stats article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f8fbff;
}

.admin-stats span {
  display: block;
  color: var(--blue);
  font-size: 1.6rem;
  font-weight: 900;
}

.admin-stats strong {
  color: var(--ink-soft);
}

.admin-audience {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px;
  border: 1px solid rgba(203, 213, 225, 0.86);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(248, 251, 255, 0.96), rgba(255, 255, 255, 0.94));
}

.admin-audience h2,
.admin-audience h3 {
  margin-bottom: 6px;
  color: var(--ink);
}

.admin-audience h2 {
  font-size: 1.35rem;
}

.admin-audience h3 {
  font-size: 1rem;
}

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

.audience-grid-admin,
.audience-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid-admin article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
}

.audience-grid-admin span {
  display: block;
  color: var(--blue);
  font-size: 1.45rem;
  font-weight: 900;
}

.audience-grid-admin strong {
  color: var(--ink-soft);
}

.audience-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.audience-list li {
  color: var(--gray);
}

.audience-list li::marker {
  color: var(--blue);
  font-weight: 900;
}

.audience-list span {
  overflow-wrap: anywhere;
}

.audience-list strong {
  float: right;
  margin-left: 12px;
  color: var(--ink);
}

.audience-days {
  display: grid;
  gap: 8px;
}

.audience-day {
  display: grid;
  grid-template-columns: 92px 1fr 34px;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 0.86rem;
}

.audience-day div {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.62);
}

.audience-day i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), #7aa4ff);
}

.audience-day strong {
  color: var(--ink-soft);
  text-align: right;
}

.admin-empty {
  padding: 22px;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius);
  background: #f8fafc;
}

.admin-messages {
  display: grid;
  gap: 14px;
}

.admin-message {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.admin-message header,
.admin-message dl {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.admin-message strong {
  display: block;
  font-size: 1.18rem;
}

.admin-message header span,
.admin-message time,
.admin-message dt {
  color: var(--gray);
}

.admin-message dl {
  margin: 16px 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.admin-message dt {
  font-size: 0.86rem;
  font-weight: 800;
}

.admin-message dd {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
}

.admin-message p {
  margin-bottom: 0;
  white-space: pre-wrap;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .contact-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-media,
  .legal-hero-card {
    justify-self: start;
    max-width: 100%;
  }

  .hero {
    min-height: auto;
  }

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

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

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

  .step:not(:last-child)::before,
  .step:not(:last-child)::after {
    display: none;
  }

  .hero-media img {
    height: 420px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    padding: 12px 14px;
  }

  .site-logo {
    width: 166px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(100, 116, 139, 0.28);
    border-radius: var(--radius);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 248, 252, 0.76));
    box-shadow: 0 20px 52px rgba(17, 24, 39, 0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

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

  .nav-cta {
    text-align: center;
  }

  .hero,
  .section,
  .page-hero {
    padding: 58px 0;
  }

  .hero {
    padding: 36px 0 24px;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 2.75rem);
  }

  .hero-text {
    font-size: 1rem;
  }

  .trust-row {
    margin-top: 18px;
  }

  .hero-media {
    display: none;
  }

  .page-hero-media {
    height: 210px;
  }

  .legal-hero-card {
    display: none;
  }

  .hero-media img {
    height: 320px;
  }

  .service-grid,
  .steps,
  .service-list,
  .audience-grid,
  .footer-grid,
  .admin-stats,
  .audience-grid-admin,
  .audience-columns,
  .legal-detail-grid {
    grid-template-columns: 1fr;
  }

  .cta-content {
    align-items: flex-start;
  }

  .privacy-choice {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-topbar {
    display: grid;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
