:root {
  --ink: #07111f;
  --ink-2: #13253d;
  --blue: #0b5cff;
  --blue-2: #0e7bdc;
  --teal: #18a6a0;
  --gold: #d7a94d;
  --line: #dbe4f0;
  --muted: #5f6f83;
  --soft: #f4f7fb;
  --soft-2: #eaf1f9;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(7, 17, 31, 0.14);
  --small-shadow: 0 10px 26px rgba(7, 17, 31, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Poppins", Arial, sans-serif;
  line-height: 1.6;
}

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

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

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

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(219, 228, 240, 0.78);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(145deg, var(--blue), var(--ink));
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: var(--small-shadow);
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
}

.brand small {
  display: block;
  max-width: 300px;
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 9px;
  border-radius: 8px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: var(--soft);
}

.quote-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 76px) clamp(34px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.96), rgba(9, 34, 68, 0.91) 54%, rgba(11, 92, 255, 0.84)),
    url("/public/images/hero-deal-toy-suite.png") center right / cover no-repeat;
  color: var(--white);
}

.hero h1,
.page-hero h1,
.case-hero h1 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-subtitle,
.hero p,
.page-hero p,
.case-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 21px);
}

.kicker {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .kicker,
.page-hero .kicker,
.case-hero .kicker,
.cta-band .kicker {
  color: #7fe5df;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--small-shadow);
}

.btn.primary {
  color: var(--white);
  background: var(--blue);
}

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

.btn.light {
  color: var(--ink);
  background: var(--white);
}

.btn.loading {
  opacity: 0.72;
  cursor: wait;
}

.hero-visual {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 420px;
}

.hero-visual img {
  width: min(100%, 720px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.26);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 76px;
  padding: 18px 12px;
  background: var(--white);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.trust-item svg {
  color: var(--blue);
}

.content-section,
.split-section,
.page-hero,
.case-hero,
.quote-layout,
.article-layout,
.case-details {
  padding-inline: clamp(20px, 5vw, 76px);
}

.content-section {
  padding-block: clamp(54px, 8vw, 92px);
}

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

.section-head {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-head h2,
.split-section h2,
.text-block h2,
.quote-aside h2,
.admin-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
  letter-spacing: 0;
}

.section-head p:not(.kicker),
.split-section p,
.text-block p,
.listing-card p,
.material-card p,
.solution-card p,
.gallery-card p,
.quote-aside p,
.blog-group li,
.case-details article p {
  color: var(--muted);
}

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

.solution-card,
.listing-card,
.material-card,
.gallery-card,
.blog-group,
.metric-card,
.admin-card,
.quote-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(7, 17, 31, 0.02);
}

.solution-card {
  min-height: 210px;
  padding: 22px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.solution-card:hover,
.listing-card:hover,
.material-card:hover,
.gallery-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 92, 255, 0.34);
  box-shadow: var(--small-shadow);
}

.solution-card span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.solution-card h3,
.material-card h3,
.gallery-card h3,
.listing-card h2 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.gallery-grid,
.material-grid,
.listing-grid,
.blog-grid,
.tag-grid {
  display: grid;
  gap: 18px;
}

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

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

.gallery-card {
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.gallery-card .image-link {
  display: block;
  aspect-ratio: 4 / 3;
  background: var(--soft-2);
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.gallery-card:hover img {
  transform: scale(1.025);
}

.gallery-card-body {
  padding: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 3px 9px;
  border-radius: 8px;
  color: var(--blue);
  background: #e7efff;
  font-size: 11px;
  font-weight: 800;
}

.gallery-card dl,
.case-details dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.gallery-card dt,
.case-details dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-card dd,
.case-details dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

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

.material-card {
  overflow: hidden;
  min-height: 340px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.material-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft-2);
}

.material-card h3,
.material-card p {
  padding-inline: 18px;
}

.material-card p {
  padding-bottom: 18px;
}

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

.process-list li {
  min-height: 210px;
  padding: 22px;
  border-left: 3px solid var(--blue);
  background: var(--soft);
}

.process-list span {
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
}

.process-list h3 {
  margin: 12px 0 8px;
  font-size: 18px;
  line-height: 1.25;
}

.process-list p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding-block: clamp(54px, 8vw, 92px);
  color: var(--white);
  background: var(--ink);
}

.split-section h2,
.split-section p {
  color: var(--white);
}

.split-section p {
  color: rgba(255, 255, 255, 0.78);
}

.split-section img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

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

.tag-grid a {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.tag-grid a:hover {
  color: var(--blue);
  border-color: rgba(11, 92, 255, 0.34);
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.why-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-panel li {
  min-height: 58px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.why-panel img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 28px;
  align-items: center;
  padding: clamp(34px, 5vw, 54px) clamp(20px, 5vw, 76px);
  color: var(--white);
  background: linear-gradient(120deg, var(--ink), #0b2f60 58%, var(--blue));
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: 0;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
}

.page-hero,
.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(48px, 7vw, 84px);
  color: var(--white);
  background: linear-gradient(120deg, var(--ink), #0d2b52 64%, #0e7bdc);
}

.page-hero img,
.case-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
  padding-block: clamp(42px, 6vw, 72px);
}

.article-main {
  display: grid;
  gap: 16px;
}

.text-block {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.text-block h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.quote-aside {
  position: sticky;
  top: 96px;
  padding: 24px;
}

.quote-aside h2 {
  font-size: 24px;
}

.quote-aside ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.quote-aside li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-2);
  font-weight: 700;
}

.quote-aside li::before {
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--teal);
  content: "";
}

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

.listing-card {
  min-height: 190px;
  padding: 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.listing-card h2 {
  font-size: 22px;
}

.listing-card span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
  color: var(--blue);
  font-weight: 800;
}

.filter-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.filter-panel > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(11, 92, 255, 0.2);
  border-color: var(--blue);
}

.empty-state {
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
}

.case-hero {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
}

.case-hero img {
  aspect-ratio: 16 / 11;
}

.case-details {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 24px;
  padding-block: clamp(42px, 6vw, 72px);
}

.case-details dl {
  grid-template-columns: 1fr;
  align-content: start;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.case-details dl div {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.case-details dl div:last-child {
  border-bottom: 0;
}

.case-details article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.case-details article h2 {
  margin: 0 0 10px;
  font-size: 30px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
  padding-block: clamp(42px, 6vw, 72px);
  background: var(--soft);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

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

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

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

.blog-group {
  padding: 24px;
}

.blog-group h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.blog-group ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-group a {
  color: var(--ink);
  font-weight: 700;
}

.blog-group a:hover {
  color: var(--blue);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  padding: 44px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer .brand strong {
  color: var(--white);
}

.site-footer .brand small,
.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.admin-body {
  background: #eef3f8;
}

.admin-shell {
  min-height: 100vh;
}

.admin-login {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: linear-gradient(130deg, var(--ink), #0c2b55 62%, var(--blue));
}

.admin-login-card {
  width: min(100%, 430px);
  padding: 30px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-login-card h1 {
  margin: 0;
  font-size: 36px;
  letter-spacing: 0;
}

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

.admin-app {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100vh;
  padding: 20px;
  background: var(--ink);
  color: var(--white);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  margin-bottom: 10px;
}

.admin-sidebar button {
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.admin-sidebar button:hover,
.admin-sidebar button.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.admin-content {
  min-width: 0;
  padding: 24px;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 0;
}

.admin-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-actions select {
  width: 150px;
}

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

.metric-card {
  padding: 20px;
}

.metric-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  color: var(--ink);
  font-size: 32px;
  line-height: 1;
}

.metric-card span {
  color: var(--muted);
  font-size: 12px;
}

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

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

.admin-card {
  margin-bottom: 18px;
  padding: 20px;
  overflow: hidden;
}

.admin-card h2 {
  margin-bottom: 16px;
  font-size: 22px;
}

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

.bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 2fr) 52px;
  gap: 12px;
  align-items: center;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 800;
}

.bar-row div {
  height: 10px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft-2);
}

.bar-row i {
  display: block;
  height: 100%;
  border-radius: 8px;
  background: var(--blue);
}

.trend-chart {
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 190px;
  overflow-x: auto;
  padding-top: 20px;
}

.trend-item {
  display: grid;
  gap: 7px;
  justify-items: center;
  min-width: 34px;
}

.trend-item span {
  display: block;
  width: 22px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--blue), var(--teal));
}

.trend-item small {
  color: var(--muted);
  font-size: 10px;
}

.admin-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 980px;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 12px;
}

.admin-table th {
  color: var(--muted);
  background: var(--soft);
  font-weight: 800;
}

.admin-table td strong {
  display: block;
  font-size: 13px;
}

.admin-table td small {
  display: block;
  max-width: 260px;
  margin-top: 4px;
  color: var(--muted);
  word-break: break-word;
}

.admin-table a {
  color: var(--blue);
  font-weight: 800;
}

.admin-table select {
  min-width: 96px;
  min-height: 36px;
}

.admin-empty {
  margin: 0;
  padding: 14px;
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
}

.section-actions {
  margin-top: 26px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 90px);
    overflow: auto;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .quote-link {
    justify-self: end;
  }

  .hero,
  .page-hero,
  .case-hero,
  .split-section,
  .quote-layout,
  .article-layout,
  .case-details {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .trust-bar,
  .solution-grid,
  .material-grid,
  .gallery-grid,
  .gallery-grid.compact,
  .listing-grid,
  .tag-grid,
  .process-list,
  .filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-aside {
    position: static;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .quote-link {
    display: none;
  }

  .hero h1,
  .page-hero h1,
  .case-hero h1 {
    font-size: 38px;
  }

  .hero,
  .page-hero,
  .case-hero {
    padding-inline: 18px;
  }

  .content-section,
  .split-section,
  .quote-layout,
  .article-layout,
  .case-details,
  .cta-band {
    padding-inline: 18px;
  }

  .trust-bar,
  .solution-grid,
  .material-grid,
  .gallery-grid,
  .gallery-grid.compact,
  .listing-grid,
  .tag-grid,
  .process-list,
  .filter-grid,
  .form-grid,
  .why-panel,
  .blog-grid,
  .admin-grid.two,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card dl {
    grid-template-columns: 1fr;
  }

  .cta-band ul {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

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

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-actions select {
    width: 100%;
  }
}
