:root {
  --font-primary: "Montserrat", sans-serif;
  --font-secondary: "Open Sans", sans-serif;
  --font-display: "Akrobat", "Montserrat", sans-serif;
  --bg: #f3efe8;
  --bg-soft: #fbf8f3;
  --bg-contrast: #ece6dc;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: rgba(16, 22, 33, 0.82);
  --ink: #171e28;
  --ink-soft: #566070;
  --ink-inverse: #edf2f8;
  --line: rgba(23, 30, 40, 0.08);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #ff4b2e;
  --accent-deep: #e51f1f;
  --accent-soft: rgba(255, 75, 46, 0.14);
  --success: #80d9b2;
  --shadow-lg: 0 24px 70px rgba(10, 16, 26, 0.16);
  --shadow-md: 0 20px 48px rgba(10, 16, 26, 0.1);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: min(1180px, calc(100vw - 40px));
}

@font-face {
  font-family: "Akrobat";
  src: url("assets/text-variable-full.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(255, 75, 46, 0.1), transparent 24%),
    linear-gradient(180deg, #f7f3ed 0%, #efe9df 100%);
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
  font-family: var(--font-secondary);
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(135deg, rgba(43, 47, 54, 0.97), rgba(28, 31, 37, 0.97));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 36px rgba(10, 16, 26, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(233, 31, 31, 0.95), rgba(255, 107, 46, 0.74));
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 18px 36px rgba(255, 75, 46, 0.26);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
}

.brand-text small {
  color: rgba(237, 242, 248, 0.62);
  font-size: 0.74rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  font-family: var(--font-secondary);
  color: rgba(237, 242, 248, 0.72);
  font-size: 0.96rem;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-family: var(--font-secondary);
  font-weight: 700;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  cursor: pointer;
}

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

.gradient-button-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  background-image: linear-gradient(90deg, #1a1718cf, #e5d5d4, #ebe4e2, #121011);
  background-size: 300% 100%;
  background-repeat: repeat;
  background-position: 0% 50%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientTextFlow 8s ease-in-out infinite alternate;
  filter: drop-shadow(0 1px 4px rgba(255, 255, 255, 0.22));
}

.button-primary {
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  box-shadow: 0 22px 34px rgba(255, 75, 46, 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 28px 40px rgba(255, 75, 46, 0.34);
}

.button-secondary {
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  border-color: transparent;
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 30px rgba(255, 75, 46, 0.22);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 0 24px 38px rgba(255, 75, 46, 0.3);
}

.button-ghost {
  min-height: 48px;
  padding: 0 22px;
  border-color: transparent;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  box-shadow: 0 16px 28px rgba(255, 75, 46, 0.2);
}

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-weight: 600;
}

.text-link::after {
  content: "";
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.section {
  position: relative;
  padding: 108px 0;
  scroll-margin-top: 108px;
}

.section-light {
  background:
    radial-gradient(circle at top right, rgba(255, 75, 46, 0.08), transparent 24%),
    var(--bg-soft);
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(128, 217, 178, 0.12), transparent 22%),
    linear-gradient(180deg, #111825 0%, #0d141f 100%);
  color: var(--ink-inverse);
}

.section-contrast {
  background:
    linear-gradient(180deg, rgba(255, 75, 46, 0.06), transparent 25%),
    var(--bg-contrast);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.section-heading h1,
.section-heading h2,
.hero-copy h1,
.hero-panel h2,
.solution-band h3,
.final-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: none;
  color: #30363c;
  font-size: clamp(2rem, 2.65vw, 2.95rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-highlight-line {
  margin: 0;
  color: #1c232b;
  font-family: var(--font-primary);
  font-size: clamp(1.18rem, 1.85vw, 1.85rem);
  font-weight: 800;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-highlight-line span {
  display: inline-block;
  padding: 3px 8px 5px;
  color: #fff;
  background: #DE5D1E;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.section-heading h2,
.hero-panel h2,
.final-copy h2 {
  font-size: clamp(2rem, 3.6vw, 2.5rem);
}

.hero-panel h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: #fff;
}

.section-heading p,
.hero-subtitle,
.hero-note,
.hero-panel p,
.pain-card p,
.advantage-card p,
.coverage-copy p,
.package-card p,
.package-card li,
.process-card p,
.trust-card p,
.case-card p,
.faq-answer p,
.final-copy p,
.form-note,
.site-footer p {
  font-family: var(--font-secondary);
  line-height: 1.68;
}

.section-heading p,
.pain-card p,
.coverage-copy p,
.package-card p,
.package-card li,
.process-card p,
.trust-card p,
.case-card p,
.faq-answer p,
.final-copy p,
.form-note,
.site-footer p {
  color: var(--ink-soft);
}

.section-dark .section-heading p,
.section-dark .advantage-card p,
.section-dark .case-card p {
  color: rgba(237, 242, 248, 0.7);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.eyebrow-dark {
  color: var(--accent-deep);
}

.scene {
  overflow: clip;
  color: #fff;
}

.scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  z-index: 0;
}

.scene-hero::before {
  background: #fff url("assets/hero-bg-2.png") right -12vw center / min(1380px, 78vw) auto no-repeat;
  transform: none;
}

.scene-hero::after {
  content: none;
}

.scene-middle::before {
  background-image: url("assets/coverage-yard.jpg");
}

.scene-bottom::before {
  background-image: url("assets/family-home.jpg");
}

.scene-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.scene-overlay-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 26%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.14) 100%);
}

.scene-overlay-middle {
  background:
    linear-gradient(110deg, rgba(11, 19, 28, 0.82) 0%, rgba(11, 19, 28, 0.54) 55%, rgba(11, 19, 28, 0.7) 100%),
    radial-gradient(circle at 80% 20%, rgba(128, 217, 178, 0.18), transparent 22%);
}

.scene-overlay-bottom {
  background:
    linear-gradient(90deg, rgba(16, 18, 25, 0.84) 0%, rgba(16, 18, 25, 0.58) 48%, rgba(16, 18, 25, 0.72) 100%),
    linear-gradient(180deg, rgba(255, 75, 46, 0.14), transparent 28%);
}

.hero {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 22px 0 54px;
  color: var(--ink);
}

.hero > .container,
.coverage-section > .container,
.final-cta-section > .container {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(560px, 1.1fr);
  gap: 34px;
  align-items: center;
  min-width: 0;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 620px;
  min-width: 0;
}

.hero-topline {
  margin-bottom: 34px;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: rgba(23, 30, 40, 0.82);
  text-align: center;
}

.hero-layout-classic {
  margin-top: 0;
}

.hero-subtitle {
  max-width: 520px;
  margin: 0;
  font-size: clamp(0.95rem, 1.08vw, 1.08rem);
  color: rgba(23, 30, 40, 0.76);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.hero-note {
  margin: 0;
  color: rgba(23, 30, 40, 0.68);
  font-size: 0.9rem;
}

.hero .button-primary {
  min-height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  box-shadow: 0 18px 30px rgba(255, 75, 46, 0.22);
}

.hero .button-secondary {
  min-height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 18px 30px rgba(255, 75, 46, 0.22);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 560px;
  align-items: start;
  min-width: 0;
}

.hero-banner-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 820px);
  justify-self: end;
  margin-top: 92px;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.hero-banner-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  opacity: 1;
}

.hero-free-card {
  position: absolute;
  right: 0;
  bottom: -12px;
  justify-self: end;
  display: grid;
  gap: 4px;
  max-width: 300px;
  min-height: 74px;
  padding: 18px 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  box-shadow: 0 26px 46px rgba(255, 75, 46, 0.3);
}

.hero-free-card strong {
  font-size: 1rem;
}

.hero-free-card span {
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  opacity: 0.82;
}

.hero-request-card {
  width: min(100%, 330px);
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 30, 40, 0.1);
  box-shadow: 0 22px 52px rgba(23, 30, 40, 0.14);
  backdrop-filter: blur(12px);
}

.hero-request-card h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-request-card p {
  margin: 0 0 14px;
  color: rgba(23, 30, 40, 0.72);
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-request-card .button {
  width: 100%;
  min-height: 44px;
  font-size: 0.92rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.demo-section {
  position: relative;
  overflow: hidden;
  padding: 58px 0 92px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 46%, rgba(255, 255, 255, 0.98) 100%),
    #f7f8f8;
  color: #202734;
}

.demo-section::before {
  content: "";
  position: absolute;
  inset: 18% auto 0 0;
  width: 58%;
  background: url("assets/hero-bg-2.png") left center / cover no-repeat;
  opacity: 0.08;
  filter: grayscale(1);
}

.demo-section > .container {
  position: relative;
  z-index: 1;
}

.demo-heading {
  max-width: 1120px;
  margin: 0 auto 50px;
  text-align: center;
}

.demo-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.45vw, 2.65rem);
  font-weight: 850;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.demo-heading span {
  color: #202734;
}

.demo-heading mark {
  padding: 0 8px;
  background: transparent;
  color: #ff7a00;
}

.demo-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
  gap: 50px;
  align-items: start;
  min-width: 0;
}

.demo-steps {
  display: grid;
  gap: 42px;
  min-width: 0;
}

.demo-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: start;
  min-width: 0;
}

.demo-number {
  display: block;
  color: rgba(255, 122, 0, 0.22);
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 7vw, 6.8rem);
  font-weight: 900;
  line-height: 0.72;
}

.demo-step p {
  margin: 2px 0 0;
  max-width: 520px;
  color: #202734;
  font-family: var(--font-primary);
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  font-weight: 520;
  line-height: 1.7;
  min-width: 0;
}

.demo-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: 470px;
  border-radius: 14px;
  box-shadow: 0 26px 70px rgba(20, 28, 40, 0.14);
}

.demo-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.demo-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
}

.stat-card,
.hero-panel,
.solution-band,
.advantage-card,
.package-card,
.process-card,
.trust-card,
.case-card,
.faq-item,
.request-form {
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.stat-card {
  padding: 22px 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  color: #fff;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.95rem;
  line-height: 1.5;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  justify-self: end;
  width: 100%;
  max-width: 560px;
  padding: 34px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(20, 27, 38, 0.92), rgba(9, 14, 22, 0.78) 52%, rgba(74, 63, 58, 0.58)),
    radial-gradient(circle at 18% 8%, rgba(255, 75, 46, 0.24), transparent 32%),
    rgba(10, 16, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(28px) saturate(125%);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent) top / 100% 1px no-repeat,
    radial-gradient(circle at 88% 16%, rgba(128, 217, 178, 0.14), transparent 24%);
}

.hero-panel > * {
  position: relative;
  z-index: 1;
}

.panel-topline {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.panel-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.benefit-mini-card {
  position: relative;
  min-height: 172px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045)),
    radial-gradient(circle at 20% 10%, rgba(255, 75, 46, 0.12), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.benefit-mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 75, 46, 0.34);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055)),
    radial-gradient(circle at 20% 10%, rgba(255, 75, 46, 0.18), transparent 42%);
}

.mini-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  border-radius: 16px;
  margin-bottom: 18px;
  background:
    linear-gradient(135deg, rgba(233, 31, 31, 0.42), rgba(255, 107, 46, 0.58)),
    rgba(255, 75, 46, 0.18);
  color: #fff;
  font-family: var(--font-primary);
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(255, 75, 46, 0.16);
}

.benefit-mini-card p,
.hero-panel-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.benefit-mini-card p {
  font-family: var(--font-primary);
  font-size: 1.01rem;
  font-weight: 700;
  line-height: 1.65;
}

.hero-panel-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.pain-grid,
.advantage-grid,
.package-grid,
.process-grid,
.trust-grid,
.case-grid {
  display: grid;
  gap: 20px;
}

.pain-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 28px;
}

.pain-card {
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.pain-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-family: var(--font-primary);
  font-weight: 700;
}

.pain-card h3,
.advantage-card h3,
.package-card h3,
.process-card h3,
.trust-card h3,
.case-card h3 {
  margin: 0 0 12px;
  font-family: var(--font-primary);
  font-size: 1.22rem;
  line-height: 1.25;
}

.solution-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 75, 46, 0.1), rgba(255, 255, 255, 0.85));
  border: 1px solid rgba(255, 75, 46, 0.16);
}

.solution-band h3 {
  font-size: clamp(1.45rem, 2vw, 2rem);
  color: var(--ink);
}

.solution-band p {
  margin: 0;
}

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

.advantage-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(14, 24, 42, 0.98), rgba(9, 16, 30, 0.96));
  border: 1px solid rgba(154, 188, 255, 0.26);
  box-shadow: 0 20px 44px rgba(3, 10, 20, 0.48);
}

.advantages-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 107, 46, 0.3), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(67, 109, 198, 0.3), transparent 34%),
    linear-gradient(110deg, #050b17 0%, #081328 46%, #061022 100%);
}

.liquid-ether-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.62;
  pointer-events: none;
  filter: saturate(1.08);
}

.advantages-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 26%),
    repeating-linear-gradient(130deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 20px);
  opacity: 0.55;
}

.advantages-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(5, 11, 23, 0.08), rgba(5, 11, 23, 0.7));
}

.advantages-section > .container {
  position: relative;
  z-index: 2;
}

.advantages-section .section-heading {
  max-width: 900px;
}

.advantages-section .section-heading h2 {
  font-size: clamp(2.15rem, 3.2vw, 3.15rem);
}

.advantage-media {
  position: relative;
  margin: 0;
  height: 172px;
  overflow: hidden;
}

.advantage-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 12, 22, 0.08) 0%, rgba(6, 12, 22, 0.66) 100%),
    radial-gradient(circle at 84% 14%, rgba(255, 107, 46, 0.28), transparent 40%);
}

.advantage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.advantage-card:hover .advantage-media img {
  transform: scale(1.05);
}

.advantage-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 22px;
}

.advantage-step {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 107, 46, 0.16);
  border: 1px solid rgba(255, 107, 46, 0.4);
  color: #ff9f57;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.advantage-card h3 {
  margin: 0;
  color: #f7fbff;
  font-size: 1.12rem;
  line-height: 1.26;
}

.advantage-card p {
  margin: 0;
  color: rgba(226, 236, 248, 0.86);
  font-size: 0.99rem;
  line-height: 1.58;
}

.advantage-button {
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border-radius: 12px;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(255, 75, 46, 0.33);
}

.coverage-section {
  padding: 112px 0;
}

.coverage-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.coverage-copy {
  padding: 36px;
  border-radius: var(--radius-xl);
  background: rgba(8, 15, 24, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
}

.coverage-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-primary);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.08;
}

.coverage-copy p,
.coverage-highlight,
.coverage-note {
  color: rgba(255, 255, 255, 0.82);
}

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.zone-list span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.94rem;
}

.coverage-highlight {
  margin: 0 0 26px;
  font-size: 1.02rem;
}

.coverage-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coverage-frame {
  position: relative;
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(8, 15, 24, 0.18), rgba(8, 15, 24, 0.46)),
    url("assets/coverage-yard.jpg") center / cover no-repeat;
  box-shadow: var(--shadow-lg);
}

.coverage-chip {
  position: absolute;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(10, 16, 26, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.coverage-chip::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 0 8px rgba(255, 75, 46, 0.16);
}

.chip-entry {
  top: 62%;
  left: 68%;
}

.chip-gate {
  top: 34%;
  left: 8%;
}

.chip-parking {
  top: 70%;
  left: 40%;
}

.chip-yard {
  top: 50%;
  left: 23%;
}

.chip-perimeter {
  top: 28%;
  right: 10%;
}

.chip-outbuild {
  bottom: 10%;
  right: 8%;
}

.coverage-note {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(10, 16, 26, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.camera-map-section {
  position: relative;
  overflow: hidden;
  padding: 108px 0 118px;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 75, 46, 0.16), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(16, 185, 41, 0.1), transparent 28%),
    linear-gradient(180deg, #f8f9f7 0%, #eef1ed 100%);
}

.camera-map-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.62)),
    repeating-linear-gradient(135deg, rgba(12, 22, 38, 0.035) 0 1px, transparent 1px 22px);
}

.camera-map-section > .container {
  position: relative;
  z-index: 1;
  width: var(--container);
}

.camera-map-heading {
  max-width: 880px;
  margin-bottom: 38px;
}

.camera-map-heading .eyebrow {
  color: var(--accent-deep);
}

.camera-map-heading h2 {
  font-size: clamp(2.2rem, 3.5vw, 3.0rem);
}

.camera-map-heading p {
  max-width: 780px;
}

.camera-map-card {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(12, 22, 38, 0.08);
  box-shadow: 0 28px 80px rgba(12, 22, 38, 0.16);
}

.camera-map-image-wrap {
  overflow: hidden;
  padding: 18px;
}

.camera-map-stage {
  position: relative;
  width: 100%;
  min-width: 0;
}

.camera-map-image {
  width: 100%;
  border-radius: 22px;
  background: #fff;
}

.camera-hotspot {
  position: absolute;
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  box-shadow:
    0 16px 28px rgba(255, 75, 46, 0.42),
    0 0 0 9px rgba(255, 75, 46, 0.18);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  z-index: 2;
}

.camera-hotspot::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 75, 46, 0.36);
  animation: hotspot-pulse 1.9s ease-out infinite;
}

.camera-hotspot:hover,
.camera-hotspot:focus-visible {
  outline: none;
  filter: saturate(1.14);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow:
    0 20px 36px rgba(255, 75, 46, 0.5),
    0 0 0 12px rgba(255, 75, 46, 0.2);
}

.hotspot-external-1 {
  left: 23.2%;
  top: 37%;
}

.hotspot-external-2 {
  left: 78.5%;
  top: 38%;
}

.hotspot-inner-1 {
  left: 32.6%;
  top: 70.5%;
}

.hotspot-inner-2 {
  left: 32.8%;
  top: 45.5%;
}

.hotspot-inner-3 {
  left: 57.5%;
  top: 19%;
}

.hotspot-inner-4 {
  left: 33.4%;
  top: 19%;
}

.camera-map-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 28px 28px;
  background:
    radial-gradient(circle at 12% 50%, rgba(255, 75, 46, 0.12), transparent 28%),
    linear-gradient(135deg, #101a2b 0%, #07101d 100%);
  color: #fff;
}

.camera-map-actions p {
  max-width: 680px;
  margin: 0;
  color: rgba(237, 242, 248, 0.82);
  font-family: var(--font-secondary);
  line-height: 1.6;
}

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

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

.camera-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 16, 0.72);
  backdrop-filter: blur(14px);
}

.camera-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  overflow: hidden;
  border-radius: 30px;
  background: #0a1221;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.44);
}

.camera-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.camera-modal-video {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(7, 18, 32, 0.2), rgba(7, 18, 32, 0.82)),
    url("assets/vnutri-kamera.png") center / cover no-repeat;
}

.camera-modal-video::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(transparent 0 49%, rgba(255, 255, 255, 0.18) 50%, transparent 51% 100%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 6px);
  opacity: 0.32;
  animation: camera-scan 4s linear infinite;
}

.camera-video-topbar {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.camera-rec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff2b20;
  box-shadow: 0 0 0 7px rgba(255, 43, 32, 0.16);
}

.camera-video-time {
  margin-left: auto;
}

.camera-video-grid {
  position: absolute;
  inset: 78px 26px 72px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.camera-video-grid span {
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.camera-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  font-size: 1.65rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 42px rgba(255, 75, 46, 0.38);
}

.camera-video-label {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--font-secondary);
  font-weight: 700;
}

.camera-modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 48px 34px 34px;
  color: #fff;
}

.camera-modal-kicker {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 75, 46, 0.16);
  color: #ff9f57;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.camera-modal-content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.camera-modal-zone {
  margin: 0;
  color: #fff;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  font-weight: 800;
}

.camera-modal-content p:not(.camera-modal-kicker):not(.camera-modal-zone) {
  margin: 0;
  color: rgba(237, 242, 248, 0.76);
  font-family: var(--font-secondary);
  line-height: 1.7;
}

.camera-modal-content .button {
  margin-top: auto;
}

body.is-camera-modal-open,
body.is-request-modal-open {
  overflow: hidden;
}

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

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
}

.request-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 18, 0.68);
  backdrop-filter: blur(10px);
}

.request-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: rgba(26, 33, 44, 0.08);
  color: #202c3c;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.request-modal-dialog.request-quiz-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  overflow: hidden;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.28);
}

.request-quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px;
  min-height: min(720px, calc(100vh - 80px));
}

.request-quiz-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.request-quiz-steps {
  flex: 1;
  min-height: 0;
}

.request-quiz-step {
  display: grid;
  align-content: start;
  gap: 28px;
  min-height: 100%;
  padding: 48px 56px 28px;
}

.request-quiz-step-header {
  display: grid;
  gap: 12px;
}

.request-quiz-step-header h3 {
  margin: 0;
  color: #1e2a3a;
  font-size: clamp(2rem, 2.3vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.request-quiz-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.request-quiz-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 8px;
  background: #eef2f7;
  color: #55637a;
  font-size: 0.78rem;
  font-weight: 700;
}

.request-quiz-badge-highlight {
  background: rgba(255, 212, 74, 0.22);
  color: #9f7700;
}

.request-quiz-options {
  display: grid;
  gap: 14px;
}

.request-quiz-options-multiple,
.request-quiz-options-single {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.request-quiz-option {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 18px 18px 18px 16px;
  border: 1px solid rgba(20, 32, 47, 0.12);
  border-radius: 10px;
  background: #ffffff;
  color: #263447;
  font-size: 1.2rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.request-quiz-option:hover,
.request-quiz-option:focus-visible {
  outline: none;
  border-color: rgba(255, 196, 24, 0.55);
  box-shadow: 0 0 0 3px rgba(255, 221, 87, 0.14);
  transform: translateY(-1px);
}

.request-quiz-option.is-selected {
  border-color: rgba(255, 181, 0, 0.7);
  background: linear-gradient(180deg, #fffef7 0%, #fff7da 100%);
}

.request-quiz-option-marker {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: #d9dde2;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.request-quiz-options-single .request-quiz-option-marker {
  border-radius: 999px;
}

.request-quiz-option.is-selected .request-quiz-option-marker {
  background: linear-gradient(135deg, #ffd84d 0%, #ffb700 100%);
  box-shadow: inset 0 0 0 4px #ffffff;
  transform: scale(1.03);
}

.request-quiz-step-final {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.92fr);
  gap: 0;
  padding: 0;
}

.request-quiz-final-copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 56px 44px;
  border-right: 1px solid rgba(21, 31, 44, 0.1);
}

.request-quiz-final-copy h3 {
  margin: 0;
  color: #1e2a3a;
  font-size: clamp(2.1rem, 2.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
}

.request-quiz-final-copy p {
  margin: 0;
  color: #5a6679;
  font-size: 1.16rem;
  line-height: 1.65;
}

.request-quiz-final-note {
  color: #7a8699;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.request-quiz-form {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 56px 36px;
}

.request-quiz-form label {
  display: grid;
  gap: 10px;
}

.request-quiz-form label > span {
  color: #59667c;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.request-quiz-form input[type="text"],
.request-quiz-form input[type="tel"] {
  width: 100%;
  min-height: 58px;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid rgba(20, 32, 47, 0.14);
  background: #ffffff;
  color: #1f2a38;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.request-quiz-form input[type="text"]:focus,
.request-quiz-form input[type="tel"]:focus {
  outline: none;
  border-color: rgba(255, 195, 18, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 217, 77, 0.18);
}

.request-quiz-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
}

.request-quiz-consent input {
  margin-top: 2px;
}

.request-quiz-consent span {
  color: #707b8d !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  line-height: 1.55;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.request-quiz-consent a {
  color: #f6b400;
  text-decoration: underline;
}

.request-quiz-form .button {
  min-height: 58px;
}

.request-quiz-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 28px 22px;
}

.request-quiz-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6e7a8f;
}

.request-quiz-progress-ring {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 195, 18, 0.8);
  border-right-color: rgba(255, 195, 18, 0.22);
  border-radius: 999px;
}

.request-quiz-progress span {
  display: block;
  font-size: 0.92rem;
}

.request-quiz-progress strong {
  color: #f1b900;
  font-size: 0.98rem;
}

.request-quiz-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.request-quiz-nav-main {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.request-quiz-nav-main > span {
  color: #9aa5b4;
  font-size: 0.85rem;
}

.request-quiz-nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 64px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(24, 34, 47, 0.12);
  border-radius: 8px;
  background: #ffdf5a;
  color: #8c6c00;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.request-quiz-nav-button:hover:not(:disabled),
.request-quiz-nav-button:focus-visible:not(:disabled) {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 210, 74, 0.34);
}

.request-quiz-nav-button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  box-shadow: none;
}

.request-quiz-nav-button-back {
  min-width: 50px;
  padding: 0;
  background: #ffffff;
  color: #7c8697;
}

.request-quiz-sidebar {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 48px 18px 22px;
  background: #f3f3f4;
}

.request-quiz-discount,
.request-quiz-reward,
.request-quiz-expert {
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(31, 39, 55, 0.08);
}

.request-quiz-discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 16px;
  background: linear-gradient(180deg, #ffe379 0%, #ffd74c 100%);
  color: #473000;
}

.request-quiz-discount span {
  font-size: 0.98rem;
  font-weight: 700;
}

.request-quiz-discount strong {
  font-size: 1.4rem;
  font-weight: 900;
}

.request-quiz-reward {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #f6f6f7 0%, #e1e1e4 100%);
  color: #68758a;
}

.request-quiz-reward-icon {
  font-size: 2rem;
}

.request-quiz-reward span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.request-quiz-reward strong {
  color: #55627a;
  font-size: 1.2rem;
  font-weight: 900;
}

.request-quiz-expert {
  display: grid;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
}

.request-quiz-expert-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.request-quiz-expert-avatar {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff5d34 0%, #ffbf3c 100%);
  color: #ffffff;
  font-weight: 900;
  background-size: cover;
  background-position: center;
}

.request-quiz-expert-avatar.has-image span {
  opacity: 0;
}

.request-quiz-expert-head strong {
  display: block;
  color: #334055;
  font-size: 1rem;
}

.request-quiz-expert-head span {
  color: #9aa3b3;
  font-size: 0.88rem;
}

.request-quiz-expert p {
  margin: 0;
  color: #3c4c64;
  line-height: 1.55;
}

.form-status {
  min-height: 1.4em;
  margin: 8px 0 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status.is-success {
  color: #14874f;
}

.form-status.is-error {
  color: #d73333;
}

@keyframes hotspot-pulse {
  0% {
    opacity: 0.7;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes camera-scan {
  0% {
    background-position: 0 -120px, 0 0;
  }

  100% {
    background-position: 0 420px, 0 0;
  }
}

@keyframes gradientTextFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

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

.package-card {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.package-card ul {
  display: grid;
  gap: 12px;
  padding-left: 18px;
  margin: 20px 0 0;
}

.package-card li::marker {
  color: var(--accent);
}

.package-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.package-topline span {
  color: var(--accent-deep);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.83rem;
}

.package-topline strong {
  font-family: var(--font-primary);
  font-size: 1.45rem;
}

.package-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 75, 46, 0.1), rgba(255, 255, 255, 0.98) 28%),
    var(--surface-strong);
  transform: translateY(-10px);
  border-color: rgba(255, 75, 46, 0.22);
}

.package-badge {
  position: absolute;
  top: -16px;
  left: 28px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 18px 34px rgba(255, 75, 46, 0.22);
}

.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(23, 30, 40, 0.04);
  border: 1px solid var(--line);
}

.section-cta p {
  margin: 0;
}

.section-dark .section-cta {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.section-dark .section-cta p {
  color: rgba(237, 242, 248, 0.76);
}

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

.process-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(23, 30, 40, 0.08);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--ink), #2e3745);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.construction-process-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 108px;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 75, 46, 0.1), transparent 26%),
    linear-gradient(180deg, #fbfbf9 0%, #f2f3ef 100%);
}

.construction-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.82), transparent 34%, transparent 66%, rgba(255, 255, 255, 0.72)),
    repeating-linear-gradient(135deg, rgba(23, 30, 40, 0.035) 0 1px, transparent 1px 24px);
}

.construction-process-section > .container {
  position: relative;
  z-index: 1;
  width: var(--container);
}

.construction-process-heading {
  max-width: 1040px;
  margin: 0 auto 26px;
  text-align: center;
}

.construction-process-heading .eyebrow {
  color: var(--accent-deep);
}

.construction-process-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(23, 30, 40, 0.12);
}

.construction-process-visual > img {
  width: 100%;
  display: block;
  border-radius: inherit;
}

.construction-image-heading {
  position: absolute;
  left: 50%;
  top: 4.4%;
  width: 66%;
  display: grid;
  gap: 2.2%;
  text-align: center;
  transform: translateX(-50%);
}

.construction-image-heading h2 {
  margin: 0 auto;
  color: #202734;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.75vw, 2.4rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
}

.construction-process-subtitle {
  max-width: 780px;
  margin: 1.2% auto 0;
  color: rgba(32, 39, 52, 0.78);
  font-family: var(--font-primary);
  font-size: clamp(0.92rem, 1.2vw, 1.18rem);
  font-weight: 700;
  line-height: 1.45;
}

.construction-process-note {
  width: fit-content;
  margin: 1.8% auto 0;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--accent-deep);
  font-family: var(--font-secondary);
  font-size: clamp(0.78rem, 0.94vw, 1rem);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(255, 75, 46, 0.1);
}

.construction-step {
  position: absolute;
  width: 28%;
  display: grid;
  gap: 8px;
  color: #1f2733;
}

.construction-step span {
  width: fit-content;
  padding: 5px 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.construction-step h3 {
  margin: 0;
  color: #171e28;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 900;
  line-height: 1.02;
  text-transform: uppercase;
}

.construction-step p {
  max-width: 330px;
  margin: 0;
  color: rgba(23, 30, 40, 0.72);
  font-family: var(--font-secondary);
  font-size: clamp(0.78rem, 0.95vw, 1.01rem);
  font-weight: 700;
  line-height: 1.48;
}

.construction-step-1 {
  left: 8.2%;
  top: 38.4%;
}

.construction-step-2 {
  left: 54.5%;
  top: 38.4%;
}

.construction-step-3 {
  left: 8.2%;
  top: 69.8%;
}

.construction-step-4 {
  left: 54.5%;
  top: 69.8%;
}

.trust-layout {
  display: grid;
  gap: 12px;
}

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

.trust-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 30, 40, 0.08);
}

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

.case-card {
  padding: 28px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.case-meta span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
}

.cases-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 75, 46, 0.18), transparent 24%),
    radial-gradient(circle at 92% 18%, rgba(128, 217, 178, 0.1), transparent 20%),
    linear-gradient(180deg, #111825 0%, #0a111b 100%);
}

.cases-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.16;
  pointer-events: none;
}

.cases-section .container {
  position: relative;
  z-index: 1;
}

.cases-section {
  --cases-heading-color: var(--cms-heading-color, #171e28);
  --cases-text-color: var(--cms-text-color, rgba(23, 30, 40, 0.78));
  --cases-muted-color: color-mix(in srgb, var(--cases-text-color) 82%, transparent);
}

.cases-album-heading {
  margin-bottom: 52px;
  text-align: center;
}

.cases-album-heading .eyebrow {
  justify-content: center;
  color: var(--cases-text-color);
}

.cases-album-heading h2 {
  margin: 0;
  color: var(--cases-heading-color);
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.6vw, 3.0rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.cases-album-heading h2 span,
.cases-album-heading h2 mark {
  display: inline-block;
}

.cases-album-heading h2 mark {
  background: transparent;
  color: var(--accent);
}

.case-album-slider {
  position: relative;
}

.case-album-track {
  position: relative;
  height: 640px;
  min-height: 0;
  overflow: hidden;
}

.case-album-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.case-album-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.case-album-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  height: 560px;
  min-height: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.case-album-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 54%, rgba(10, 17, 27, 0.54) 100%),
    linear-gradient(90deg, rgba(10, 17, 27, 0.22), transparent 48%);
  pointer-events: none;
}

.case-album-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.case-album-copy {
  max-width: 520px;
  padding: 18px 0;
}

.case-album-location {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 26px;
  color: var(--cases-muted-color);
  font-family: var(--font-secondary);
  font-size: 1.04rem;
}

.case-album-location span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  font-weight: 800;
}

.case-album-copy h3 {
  margin: 0;
  color: var(--cases-heading-color);
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.6vw, 1.50rem);
  font-weight: 900;
  line-height: 0.96;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.case-album-divider {
  width: 100%;
  height: 1px;
  margin: 32px 0 28px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.26) 50%, transparent 0);
  background-size: 12px 1px;
}

.case-album-label {
  margin: 0 0 14px;
  color: var(--cases-heading-color);
  font-weight: 800;
}

.case-album-copy p {
  color: var(--cases-text-color);
  font-family: var(--font-secondary);
  line-height: 1.76;
}

.case-album-copy .button {
  margin-top: 18px;
  min-width: 260px;
}

.case-album-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  box-shadow: 0 18px 34px rgba(255, 75, 46, 0.3);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.case-album-arrow:hover,
.case-album-arrow:focus-visible {
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 22px 42px rgba(255, 75, 46, 0.38);
}

.case-album-arrow span {
  margin-top: -4px;
  font-family: var(--font-secondary);
  font-size: 2.6rem;
  line-height: 1;
}

.case-album-arrow-prev {
  left: -30px;
}

.case-album-arrow-next {
  right: -30px;
}

.case-album-footer {
  display: grid;
  justify-items: center;
  gap: 30px;
  margin-top: 44px;
}

.case-album-footer .button {
  min-width: 360px;
}

.case-album-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.case-album-dot {
  width: 13px;
  height: 13px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.case-album-dot:hover,
.case-album-dot:focus-visible,
.case-album-dot.is-active {
  border-color: var(--accent);
  background: var(--accent);
  transform: scale(1.12);
}

@keyframes caseAlbumFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

.faq-item {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 30, 40, 0.08);
}

.faq-question {
  width: 100%;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: none;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-primary);
  font-size: 1.14rem;
  font-weight: 700;
}

.faq-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 1.28rem;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq-answer > p {
  overflow: hidden;
  margin: 0;
  padding: 0 24px 0;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer > p {
  padding-bottom: 24px;
}

.final-cta-section {
  padding: 118px 0;
}

.final-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 32px;
  align-items: center;
}

.final-copy {
  max-width: 700px;
}

.final-copy p {
  color: rgba(255, 255, 255, 0.84);
}

.final-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 24px;
}

.final-points span {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-inline a {
  font-weight: 700;
  color: #fff;
}

.request-form {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(18px);
}

.form-kicker {
  margin: 0 0 18px;
  color: var(--accent-deep);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.request-form label {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.request-form span {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 600;
}

.request-form input,
.request-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(23, 30, 40, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.request-form input:focus,
.request-form textarea:focus {
  outline: none;
  border-color: rgba(255, 75, 46, 0.52);
  box-shadow: 0 0 0 4px rgba(255, 75, 46, 0.12);
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.contacts-section {
  padding: 88px 0 78px;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 75, 46, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfbfa 0%, #f4f2ef 100%);
  color: var(--ink);
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.74fr) minmax(0, 1.6fr);
  gap: clamp(36px, 4.8vw, 70px);
  align-items: start;
}

.contact-request-card {
  padding: clamp(32px, 4vw, 56px);
  border: 1.5px solid rgba(255, 75, 46, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 28px 72px rgba(255, 110, 72, 0.16),
    0 30px 80px rgba(23, 30, 40, 0.08);
}

.contact-form-title {
  max-width: 360px;
  margin: 0 auto 18px;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.4vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.contact-form-subtitle {
  max-width: 430px;
  margin: 0 auto 34px;
  color: rgba(23, 30, 40, 0.76);
  font-family: var(--font-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.contact-request-card label {
  display: grid;
  gap: 18px;
  margin-bottom: 32px;
}

.contact-request-card label span {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.contact-request-card input {
  width: 100%;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid rgba(23, 30, 40, 0.62);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.08rem;
  transition: border-color 0.25s ease;
}

.contact-request-card input::placeholder {
  color: rgba(23, 30, 40, 0.38);
}

.contact-request-card input:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-request-card .button {
  min-height: 68px;
  margin-top: 14px;
  border-radius: 12px;
  font-size: 1.18rem;
}

.contacts-content {
  min-width: 0;
  display: grid;
  gap: 30px;
}

.contacts-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.contacts-info-item {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.contacts-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  box-shadow: 0 18px 32px rgba(255, 75, 46, 0.22);
}

.contacts-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contacts-info-item a,
.contacts-info-item strong {
  color: var(--ink);
  font-family: var(--font-primary);
  #font-size: clamp(1.2rem, 1.5vw, 1.7rem);
  font-weight: 800;
  line-height: 1.2;
}

.contacts-info-item p {
  margin: 0;
  color: rgba(23, 30, 40, 0.68);
  font-family: var(--font-secondary);
  line-height: 1.45;
}

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

.contacts-map {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: 20px;
  background: #e9e1d8;
  box-shadow: 0 24px 60px rgba(23, 30, 40, 0.1);
}

.contacts-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(0.98);
}

.contacts-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.1));
  pointer-events: none;
}

.contacts-map-card {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  width: min(280px, calc(100% - 56px));
  display: grid;
  gap: 10px;
  padding: 24px 24px 22px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(23, 30, 40, 0.12);
}

.contacts-map-card strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.contacts-map-card span {
  color: rgba(23, 30, 40, 0.68);
}

.contacts-map-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  font-weight: 800;
}

.contacts-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(23, 30, 40, 0.78);
  font-family: var(--font-secondary);
  font-size: 1.05rem;
}

.contacts-socials-label {
  color: var(--ink);
  font-size: 1.05rem;
}

.social-link {
  --social-bg: linear-gradient(135deg, #e91f1f, #ff6b2e);
  --social-color: #fff;
  min-width: 54px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--social-bg);
  color: var(--social-color);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(23, 30, 40, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(23, 30, 40, 0.12);
}

.social-vk {
  --social-bg: #2787f5;
}

.social-telegram {
  --social-bg: #229ed9;
}

.social-max {
  --social-bg: #6c5ce7;
}

.social-custom {
  --social-bg: linear-gradient(135deg, #e91f1f, #ff6b2e);
}

.contacts-top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  box-shadow: 0 20px 42px rgba(255, 75, 46, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.contacts-top-button:hover,
.contacts-top-button:focus-visible,
.contacts-top-button.is-visible {
  box-shadow: 0 24px 48px rgba(255, 75, 46, 0.34);
}

.contacts-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contacts-top-button-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 1.05rem;
}

.site-footer {
  padding: 34px 0 48px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 75, 46, 0.12), transparent 24%),
    linear-gradient(135deg, #2b2f36 0%, #1c1f25 100%);
  color: rgba(237, 242, 248, 0.74);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.footer-brand,
.site-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-family: var(--font-primary);
}

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

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
}

.admin-body {
  margin: 0;
  background: #f3f4f7;
  color: #171e28;
  font-family: var(--font-secondary);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  padding: 28px 22px;
  background: linear-gradient(180deg, #111825 0%, #0a1019 100%);
  color: #edf2f8;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-brand {
  display: inline-flex;
  margin-bottom: 26px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav a {
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(237, 242, 248, 0.8);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a:focus-visible,
.admin-nav a.is-active {
  background: rgba(255, 75, 46, 0.16);
  color: #fff;
}

.admin-main {
  padding: 26px;
}

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

.admin-topbar h1,
.admin-card h2 {
  margin: 0;
  font-family: var(--font-primary);
}

.admin-kicker {
  margin: 0 0 6px;
  color: var(--accent-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-content {
  display: grid;
  gap: 22px;
}

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

.admin-card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(23, 30, 40, 0.08);
  box-shadow: 0 16px 40px rgba(10, 16, 26, 0.06);
}

.admin-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.admin-card p {
  color: rgba(23, 30, 40, 0.72);
}

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

.admin-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(23, 30, 40, 0.08);
}

.admin-list li:last-child {
  border-bottom: 0;
}

.admin-alert {
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 16px;
  border: 1px solid rgba(23, 30, 40, 0.08);
}

.admin-alert-success {
  background: rgba(64, 179, 126, 0.14);
  color: #135e40;
}

.admin-alert-error {
  background: rgba(233, 31, 31, 0.1);
  color: #8f1e1e;
}

.admin-alert ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.admin-stack {
  display: grid;
  gap: 22px;
}

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

.admin-card-span-2 {
  grid-column: span 2;
}

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

.admin-field {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.admin-field-full {
  grid-column: 1 / -1;
}

.admin-field span,
.admin-checkbox span {
  color: #171e28;
  font-weight: 700;
}

.admin-input {
  width: 100%;
  min-height: 50px;
  padding: 13px 16px;
  border: 1px solid rgba(23, 30, 40, 0.14);
  border-radius: 14px;
  background: #fff;
  color: #171e28;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-inline-input {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.admin-inline-input .admin-input[type="color"] {
  min-height: 50px;
  padding: 6px;
}

.admin-input:focus {
  outline: none;
  border-color: rgba(255, 75, 46, 0.44);
  box-shadow: 0 0 0 4px rgba(255, 75, 46, 0.12);
}

.admin-input-small {
  max-width: 92px;
  min-height: 42px;
  padding: 10px 12px;
}

.admin-textarea {
  min-height: 140px;
  resize: vertical;
}

.admin-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  line-height: 1.55;
}

.admin-code-block {
  margin: 0;
  padding: 18px;
  overflow: auto;
  border-radius: 18px;
  background: #0f1724;
  color: #edf2f8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.admin-multiselect {
  min-height: 260px;
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
}

.admin-checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

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

.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-inline-actions .button,
.admin-actions .button {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.admin-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(23, 30, 40, 0.08);
  border-radius: 20px;
}

.admin-table {
  width: 100%;
  min-width: 840px;
  border-collapse: collapse;
  background: #fff;
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(23, 30, 40, 0.08);
  vertical-align: top;
  text-align: left;
}

.admin-table th {
  background: rgba(23, 30, 40, 0.03);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(23, 30, 40, 0.68);
}

.admin-table tbody tr:hover {
  background: rgba(255, 75, 46, 0.03);
}

.admin-cell-note {
  margin: 6px 0 0;
  color: rgba(23, 30, 40, 0.56);
  font-size: 0.88rem;
}

.admin-empty {
  padding: 28px 12px;
  text-align: center;
  color: rgba(23, 30, 40, 0.66);
}

.admin-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.admin-status-success {
  background: rgba(64, 179, 126, 0.14);
  color: #135e40;
}

.admin-status-muted {
  background: rgba(23, 30, 40, 0.08);
  color: rgba(23, 30, 40, 0.7);
}

.admin-status-warning {
  background: rgba(255, 175, 0, 0.18);
  color: #8b5600;
}

.admin-detail-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.admin-detail-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(23, 30, 40, 0.08);
}

.admin-detail-list div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.admin-detail-list dt {
  color: rgba(23, 30, 40, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-detail-list dd {
  margin: 0;
  color: #171e28;
  font-weight: 700;
  word-break: break-word;
}

.admin-prose {
  color: rgba(23, 30, 40, 0.82);
  line-height: 1.7;
}

.crm-thread {
  display: grid;
  gap: 12px;
}

.crm-thread-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-soft);
}

.crm-thread-item.is-client {
  background: #fff3ec;
  border-color: rgba(255, 75, 46, 0.16);
}

.crm-thread-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.crm-thread-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 75, 46, 0.12);
  color: var(--accent-deep);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.crm-thread-message {
  line-height: 1.68;
  white-space: pre-line;
}

.crm-thread-files {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.crm-thread-file {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.crm-thread-file em {
  color: var(--ink-soft);
  font-style: normal;
  white-space: nowrap;
}

.crm-template-toolbar {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.crm-template-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.crm-template-button {
  min-height: 42px;
  padding: 0 16px;
}

.crm-thread-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent-deep);
  font-weight: 700;
}

.admin-body .crm-thread-item {
  border-color: rgba(21, 31, 47, 0.08);
  background: #fbf7f2;
}

.admin-body .crm-thread-item.is-client {
  background: rgba(255, 75, 46, 0.06);
}

.admin-body .crm-thread-meta {
  color: var(--admin-muted);
}

.admin-body .crm-thread-file {
  background: #fff;
  color: var(--admin-ink);
}

.admin-body .crm-thread-file em {
  color: var(--admin-muted);
}

.admin-body .crm-thread-link {
  color: var(--admin-accent);
}

.crm-settings-card {
  padding: 22px;
}

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

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

.crm-recipient-card {
  padding: 18px;
  border: 1px solid rgba(21, 31, 47, 0.08);
  border-radius: 20px;
  background: #fff;
  display: grid;
  gap: 16px;
}

.crm-recipient-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

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

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

.crm-setting-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(21, 31, 47, 0.08);
  border-radius: 18px;
  background: #fff;
}

.crm-setting-item input {
  margin-top: 3px;
}

.crm-setting-item span {
  display: grid;
  gap: 6px;
}

.crm-setting-item strong {
  color: var(--admin-ink);
}

.crm-setting-item small {
  color: var(--admin-muted);
  line-height: 1.5;
}

.crm-placeholder-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.crm-placeholder-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 75, 46, 0.08);
  color: var(--admin-ink);
}

.crm-template-editor {
  display: grid;
  gap: 16px;
}

.crm-template-card {
  padding: 18px;
  border: 1px solid rgba(21, 31, 47, 0.08);
  border-radius: 20px;
  background: #fff;
}

.crm-template-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.admin-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 75, 46, 0.1);
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
}

.admin-note {
  margin: 8px 0 0;
  color: rgba(23, 30, 40, 0.58);
  line-height: 1.6;
}

.admin-bullet-list {
  margin: 0;
  padding-left: 18px;
  color: rgba(23, 30, 40, 0.74);
  line-height: 1.75;
}

.admin-pagination {
  margin-top: 20px;
}

.admin-pagination nav {
  display: flex;
  justify-content: flex-end;
}

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

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

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

@media (max-width: 1200px) {
  .demo-layout {
    grid-template-columns: 1fr;
  }

  .demo-photo {
    height: 520px;
  }

  .demo-photo img {
    min-height: 0;
  }

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

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

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

  .case-album-arrow-prev {
    left: 14px;
  }

  .case-album-arrow-next {
    right: 14px;
  }

  .hero-layout,
  .coverage-layout,
  .final-layout,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 920px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    padding: 18px 13px;
  }

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

  .admin-grid-2,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .admin-card-span-2,
  .admin-field-full {
    grid-column: auto;
  }

  .admin-topbar,
  .admin-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .section {
    padding: 84px 0;
  }

  .hero {
    min-height: auto;
    padding: 74px 0 52px;
  }

  .hero-stats,
  .pain-grid,
  .advantage-grid,
  .package-grid,
  .process-grid,
  .trust-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .cases-album-heading {
    margin-bottom: 36px;
  }

  .case-album-track {
    height: 980px;
  }

  .case-album-slide {
    grid-template-columns: 1fr;
    gap: 30px;
    align-content: start;
  }

  .case-album-photo {
    height: 430px;
  }

  .case-album-photo img {
    height: 100%;
    min-height: 0;
  }

  .case-album-copy {
    max-width: none;
    padding: 0;
  }

  .case-album-arrow {
    top: 250px;
  }

  .demo-section {
    padding: 76px 0 84px;
  }

  .demo-heading {
    margin-bottom: 42px;
  }

  .demo-steps {
    gap: 28px;
  }

  .demo-step {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .demo-photo,
  .demo-photo img {
    height: 430px;
  }

  .construction-process-section {
    padding: 84px 0;
  }

  .construction-image-heading {
    top: 3.8%;
    width: 72%;
  }

  .construction-step {
    width: 30%;
    gap: 6px;
  }

  .construction-step span {
    padding: 4px 9px;
  }

  .benefit-mini-grid {
    grid-template-columns: 1fr;
  }

  .solution-band,
  .section-cta,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .coverage-frame {
    min-height: 420px;
  }

  .camera-map-section {
    padding: 84px 0;
  }

  .camera-map-stage {
    min-width: 0;
  }

  .camera-map-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .camera-modal-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 42px);
    overflow: auto;
  }

  .camera-modal-video {
    min-height: 300px;
  }

  .request-modal-dialog.request-quiz-dialog {
    max-height: calc(100vh - 42px);
    overflow: auto;
  }

  .request-quiz-layout {
    grid-template-columns: 1fr;
  }

  .request-quiz-step {
    padding: 34px 26px 22px;
  }

  .request-quiz-step-final {
    grid-template-columns: 1fr;
  }

  .request-quiz-final-copy {
    padding: 34px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(21, 31, 44, 0.1);
  }

  .request-quiz-form {
    padding: 34px 26px;
  }

  .request-quiz-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px 26px 26px;
    border-top: 1px solid rgba(21, 31, 44, 0.08);
  }

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

@media (max-width: 720px) {
  .admin-main {
    padding: 18px 13px 30px;
  }

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

  .admin-table {
    min-width: 680px;
  }

  :root {
    --container: min(1180px, calc(100vw - 26px));
  }

  .container {
    width: auto;
    margin-right: 13px;
    margin-left: 13px;
  }

  .header-actions .button-ghost {
    display: none;
  }

  .header-inner {
    gap: 14px;
  }

  .brand-text small {
    display: none;
  }

  .header-phone {
    font-size: 0.92rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.45rem, 6.5vw, 1.7rem);
    line-height: 1.04;
    white-space: normal;
  }

  .hero-highlight-line {
    font-size: clamp(0.95rem, 5.1vw, 1.28rem);
  }

  .hero-highlight-line span {
    display: inline;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-banner-card {
    margin-top: 44px;
  }

  .hero-free-card {
    left: 0;
    right: 0;
    bottom: 18px;
    margin-inline: auto;
    max-width: min(100%, 300px);
  }

  .demo-heading h2 {
    font-size: clamp(1.08rem, 5vw, 1.35rem);
    line-height: 1.48;
    letter-spacing: 0;
  }

  .demo-heading h2 br {
    display: none;
  }

  .demo-heading h2 span,
  .demo-heading h2 mark {
    display: block;
  }

  .demo-heading mark {
    padding: 0 4px;
  }

  .demo-step {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .demo-number {
    font-size: 4.2rem;
  }

  .demo-step p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 100%;
  }

  .demo-photo,
  .demo-photo img {
    height: 360px;
  }

  .construction-process-section > .container {
    width: auto;
    max-width: var(--container);
  }

  .construction-process-visual {
    display: grid;
    gap: 14px;
    overflow: visible;
    padding: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .construction-process-visual > img {
    order: 2;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(23, 30, 40, 0.12);
  }

  .construction-image-heading {
    position: static;
    order: 1;
    width: auto;
    padding: 24px 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 44px rgba(23, 30, 40, 0.1);
    transform: none;
  }

  .construction-image-heading h2 {
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }

  .construction-process-subtitle,
  .construction-process-note {
    margin-top: 10px;
  }

  .construction-process-note {
    width: auto;
    border-radius: 16px;
  }

  .construction-step {
    position: static;
    order: 3;
    width: auto;
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 44px rgba(23, 30, 40, 0.1);
  }

  .construction-step h3 {
    font-size: 1.5rem;
  }

  .construction-step p {
    max-width: none;
    font-size: 0.98rem;
  }

  .camera-map-heading h2 {
    font-size: clamp(1.85rem, 8vw, 2.45rem);
  }

  .camera-map-card {
    border-radius: 22px;
  }

  .camera-map-image-wrap {
    padding: 10px;
  }

  .camera-map-stage {
    min-width: 0;
  }

  .camera-hotspot {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

  .camera-map-actions {
    padding: 22px;
  }

  .camera-modal {
    padding: 13px;
  }

  .camera-modal-content {
    padding: 34px 22px 24px;
  }

  .camera-modal-video {
    min-height: 250px;
  }

  .request-modal {
    padding: 13px;
  }

  .request-quiz-step {
    padding: 28px 20px 18px;
    gap: 22px;
  }

  .request-quiz-step-header h3,
  .request-quiz-final-copy h3 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .request-quiz-options-multiple,
  .request-quiz-options-single {
    grid-template-columns: 1fr;
  }

  .request-quiz-option {
    min-height: 68px;
    font-size: 1.05rem;
  }

  .request-quiz-form,
  .request-quiz-final-copy {
    padding: 28px 20px 22px;
  }

  .request-quiz-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .request-quiz-nav {
    width: 100%;
    justify-content: space-between;
  }

  .request-quiz-nav-main {
    flex: 1 1 auto;
    justify-items: stretch;
  }

  .request-quiz-nav-button-next {
    width: 100%;
  }

  .request-quiz-sidebar {
    grid-template-columns: 1fr;
    padding: 18px 20px 22px;
  }

  .section-heading h2,
  .coverage-copy h2,
  .final-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  .cases-album-heading h2 {
    font-size: clamp(2.45rem, 13vw, 3.4rem);
  }

  .case-album-photo {
    height: 320px;
  }

  .case-album-track {
    height: 930px;
  }

  .case-album-photo img {
    height: 100%;
    min-height: 0;
  }

  .case-album-copy h3 {
    font-size: clamp(1.95rem, 10vw, 2.45rem);
  }

  .case-album-copy .button,
  .case-album-footer .button {
    min-width: 0;
    width: 100%;
  }

  .case-album-footer {
    gap: 24px;
    margin-top: 32px;
  }

  .case-album-arrow {
    top: 180px;
    width: 48px;
    height: 48px;
  }

  .case-album-arrow span {
    font-size: 2rem;
  }

  .case-album-arrow-prev {
    left: 8px;
  }

  .case-album-arrow-next {
    right: 8px;
  }

  .contacts-section {
    padding: 68px 0 58px;
  }

  .contact-request-card {
    padding: 30px 22px;
  }

  .contact-form-title {
    max-width: 280px;
  }

  .contacts-info-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .contacts-map-shell {
    gap: 18px;
  }

  .contacts-map {
    height: auto;
    min-height: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
  }

  .contacts-map iframe {
    height: 360px;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(23, 30, 40, 0.1);
  }

  .contacts-map::after {
    content: none;
  }

  .contacts-map-card {
    position: relative;
    top: auto;
    left: auto;
    width: auto;
    margin: 14px;
  }

  .contacts-socials {
    justify-content: flex-start;
  }

  .contacts-socials-label {
    width: 100%;
  }

  .contacts-top-button {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }

  .contacts-top-button span:last-child {
    display: none;
  }

  .hero-panel,
  .coverage-copy,
  .request-form,
  .contact-request-card,
  .package-card,
  .case-card,
  .trust-card,
  .process-card,
  .pain-card {
    padding: 22px;
  }

  .button,
  .button-ghost {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
  }

  .chip-entry {
    top: 62%;
    left: 44%;
  }

  .chip-gate {
    left: 4%;
  }

  .chip-parking {
    left: 20%;
  }

  .chip-yard {
    top: 42%;
    left: 10%;
  }

  .chip-perimeter {
    right: 6%;
  }

  .chip-outbuild {
    right: 6%;
    bottom: 8%;
  }

  .contact-inline {
    flex-direction: column;
    gap: 10px;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  z-index: 55;
  display: flex;
  border-radius: var(--radius-lg);
  background: var(--cookie-bg, #1a1f2e);
  color: var(--cookie-text, #edf2f8);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease,
    transform 0.35s ease;
  max-width: 420px;
  font-family: var(--font-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.cookie-banner.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cookie-banner[data-position="bottom-full"] {
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 100%;
  border-radius: 0;
  padding: 18px 28px;
  transform: translateY(100%);
}

.cookie-banner[data-position="bottom-full"].is-visible {
  transform: translateY(0);
}

.cookie-banner[data-position="bottom-full"] .cookie-banner__content {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

.cookie-banner[data-position="bottom-left"] {
  bottom: 28px;
  left: 28px;
}

.cookie-banner[data-position="bottom-center"] {
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
}

.cookie-banner[data-position="bottom-center"].is-visible {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner[data-position="bottom-right"] {
  bottom: 28px;
  right: 28px;
}

.cookie-banner[data-position="center"] {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  max-width: 480px;
}

.cookie-banner[data-position="center"].is-visible {
  transform: translate(-50%, -50%) scale(1);
}

.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 24px;
  width: 100%;
}

.cookie-banner__text {
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.cookie-banner__link {
  color: var(--cookie-button-bg, #ff4b2e);
  text-decoration: underline;
  white-space: nowrap;
  font-weight: 600;
}

.cookie-banner__link:hover,
.cookie-banner__link:focus-visible {
  opacity: 0.8;
}

.cookie-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border: 0;
  border-radius: 12px;
  background: var(--cookie-button-bg, #ff4b2e);
  color: var(--cookie-button-text, #ffffff);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  flex-shrink: 0;
}

.cookie-banner__button:hover,
.cookie-banner__button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.scroll-to-top-global.contacts-top-button {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e91f1f, #ff6b2e);
  color: #fff;
  box-shadow: 0 20px 42px rgba(255, 75, 46, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.scroll-to-top-global.contacts-top-button.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top-global.contacts-top-button:hover,
.scroll-to-top-global.contacts-top-button:focus-visible {
  box-shadow: 0 24px 48px rgba(255, 75, 46, 0.34);
}

@media (max-width: 720px) {
  .cookie-banner {
    max-width: calc(100vw - 32px);
    font-size: 0.88rem;
  }

  .cookie-banner[data-position="bottom-left"],
  .cookie-banner[data-position="bottom-right"] {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .cookie-banner[data-position="bottom-center"] {
    width: calc(100vw - 32px);
  }

  .cookie-banner[data-position="bottom-full"] {
    padding: 14px 16px;
  }

  .cookie-banner[data-position="bottom-full"] .cookie-banner__content {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    text-align: center;
  }

  .cookie-banner__content {
    padding: 18px 20px;
  }

  .cookie-banner__button {
    width: 100%;
  }

  .scroll-to-top-global.contacts-top-button {
    right: 16px;
    bottom: 16px;
    padding: 10px 14px;
  }

  .scroll-to-top-global.contacts-top-button span:last-child {
    display: none;
  }
}

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

  .button,
  .reveal,
  .faq-answer,
  .faq-icon,
  .case-album-slide,
  .case-album-arrow,
  .case-album-dot {
    transition: none;
    animation: none;
  }

  .gradient-button-text {
    animation: none;
    background-position: 50% 50%;
  }
}

/* Hero refresh */
.scene-hero::before {
  content: "";
  background: #fff url("assets/hero-bg-2.png") right -5vw bottom -70px / min(1400px, 80vw) auto no-repeat;
  transform: none;
}

.scene-overlay-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.995) 0%, rgba(255, 255, 255, 0.98) 23%, rgba(255, 255, 255, 0.88) 38%, rgba(255, 255, 255, 0.5) 56%, rgba(255, 255, 255, 0.1) 75%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.12) 100%);
}

.hero-reference-shell {
  display: flex;
  flex-direction: column;
}

.hero-topline-reference {
  margin: 0 0 30px;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(23, 30, 40, 0.82);
}

.hero-layout-reference {
  grid-template-columns: minmax(0, 600px) minmax(420px, 1fr);
  gap: clamp(34px, 5.2vw, 110px);
  align-items: center;
  min-height: 620px;
}

.hero-layout-reference .hero-copy {
  gap: 14px;
  max-width: 580px;
  padding-top: 8px;
}

.hero-layout-reference .hero-copy h1 {
  max-width: 620px;
  color: #172234;
  font-family: var(--font-primary);
  font-size: clamp(2.95rem, 4.9vw, 4.85rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
  white-space: normal;
}

.hero-title-line {
  display: block;
}

.hero-title-line-accent {
  display: inline-block;
  margin: 8px 0 4px;
  padding: 8px 14px 10px;
  background: #de5d1e;
  color: #fff;
  box-shadow: 0 18px 34px rgba(222, 93, 30, 0.18);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-layout-reference .hero-subtitle {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 1.62;
  color: rgba(23, 30, 40, 0.84);
}

.hero-layout-reference .hero-note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(23, 30, 40, 0.68);
}

.hero-layout-reference .hero-request-card {
  width: min(100%, 360px);
  margin-top: 2px;
  padding: 18px 16px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(23, 30, 40, 0.1);
  box-shadow: 0 28px 56px rgba(23, 30, 40, 0.14);
  backdrop-filter: blur(12px);
}

.hero-layout-reference .hero-request-card h2 {
  margin: 0 0 8px;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-layout-reference .hero-request-card p {
  margin: 0 0 16px;
  color: rgba(23, 30, 40, 0.72);
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  line-height: 1.52;
}

.hero-layout-reference .hero-request-card .button {
  width: 100%;
  min-height: 48px;
  font-size: 0.98rem;
}

.hero-layout-reference .hero-visual {
  position: relative;
  min-height: 620px;
  overflow: visible;
}

.hero-banner-card-reference {
  position: absolute;
  top: 42px;
  right: -80px;
  width: clamp(360px, 35vw, 640px);
  margin: 0;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
  transform: none;
}

.hero-banner-card-reference img {
  width: 100%;
  height: auto;
  border-radius: 0;
  filter: drop-shadow(0 22px 40px rgba(23, 30, 40, 0.12));
}

.hero-free-card-reference {
  left: clamp(170px, 21vw, 320px);
  right: auto;
  bottom: -44px;
  width: clamp(320px, 42vw, 320px);
  max-width: none;
}

@media (max-width: 1320px) {
  .scene-hero::before {
    background-position: right -10vw bottom 34px;
    background-size: min(1320px, 85vw) auto;
  }

  .hero-layout-reference {
    grid-template-columns: minmax(0, 560px) minmax(360px, 1fr);
    gap: clamp(28px, 4vw, 72px);
  }

  .hero-banner-card-reference {
    right: clamp(0px, 3vw, 42px);
    width: min(100%, 580px);
  }

  .hero-free-card-reference {
    left: clamp(135px, 17vw, 260px);
    bottom: -12px;
  }
}

@media (max-width: 1120px) {
  .scene-hero::before {
    background-position: right -16vw bottom 24px;
    background-size: min(1260px, 95vw) auto;
  }

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

  .hero-layout-reference .hero-copy h1 {
    font-size: clamp(2.65rem, 4.5vw, 4rem);
  }

  .hero-layout-reference .hero-visual {
    min-height: 560px;
  }

  .hero-banner-card-reference {
    top: 52px;
    right: 0;
    width: min(100%, 520px);
  }

  .hero-free-card-reference {
    left: 92px;
    bottom: -8px;
  }
}

@media (max-width: 920px) {
  .scene-hero::before {
    background-position: center bottom;
    background-size: min(1180px, 148vw) auto;
    opacity: 0.42;
  }

  .scene-overlay-hero {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.93) 44%, rgba(255, 255, 255, 0.8) 100%);
  }

  .hero-topline-reference {
    margin-bottom: 18px;
  }

  .hero-layout-reference {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-layout-reference .hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .hero-layout-reference .hero-copy h1 {
    font-size: clamp(2.25rem, 9.2vw, 3.45rem);
  }

  .hero-layout-reference .hero-visual {
    min-height: 300px;
  }

  .hero-banner-card-reference {
    position: relative;
    top: auto;
    right: auto;
    width: min(100%, 520px);
    margin-left: auto;
  }

  .hero-free-card-reference {
    left: auto;
    right: 0;
    bottom: 0;
  }
}

@media (max-width: 640px) {
  .scene-hero::before {
    background-position: 68% bottom;
    background-size: min(980px, 190vw) auto;
    opacity: 0.32;
  }

  .hero-topline-reference {
    text-align: left;
  }

  .hero-title-line-accent {
    padding: 6px 10px 8px;
  }

  .hero-layout-reference .hero-subtitle {
    font-size: 1rem;
  }

  .hero-layout-reference .hero-request-card {
    width: 100%;
  }

  .hero-layout-reference .hero-visual {
    min-height: 240px;
  }

  .hero-banner-card-reference {
    width: 112%;
    margin-right: -12%;
    opacity: 0.86;
  }

  .hero-free-card-reference {
    position: relative;
    right: auto;
    margin-top: 12px;
  }
}

/* Interactive media enhancements */
.camera-modal-video {
  background:
    linear-gradient(180deg, rgba(7, 18, 32, 0.2), rgba(7, 18, 32, 0.82)),
    var(--camera-modal-fallback, url("assets/vnutri-kamera.png")) center / cover no-repeat;
}

.camera-modal-video.camera-modal-video-has-media {
  background: #050b14;
}

.camera-modal-video.camera-modal-video-has-media::before {
  display: none;
}

.camera-modal-player {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #050b14;
}

.camera-modal-video-fallback {
  position: absolute;
  inset: 0;
}

.camera-modal-video-fallback[hidden] {
  display: none;
}

.camera-video-topbar,
.camera-video-label {
  z-index: 2;
}

.case-album-visual {
  display: grid;
  gap: 16px;
}

.case-album-visual .case-album-photo {
  height: 472px;
}

.case-album-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.case-album-thumb {
  padding: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.case-album-thumb img {
  width: 100%;
  height: 88px;
  object-fit: cover;
  display: block;
}

.case-album-thumb:hover,
.case-album-thumb:focus-visible,
.case-album-thumb.is-active {
  transform: translateY(-2px);
  border-color: rgba(255, 107, 46, 0.92);
  box-shadow: 0 16px 28px rgba(255, 75, 46, 0.24);
}

.admin-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

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

.admin-repeater-item {
  padding: 20px;
  border-radius: 22px;
  background: rgba(23, 30, 40, 0.03);
  border: 1px solid rgba(23, 30, 40, 0.08);
}

.admin-repeater-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.admin-repeater-item-header h3 {
  margin: 4px 0 0;
  color: #171e28;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
}

.admin-asset-preview {
  margin-top: 18px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(23, 30, 40, 0.08);
  background: rgba(23, 30, 40, 0.04);
}

.admin-asset-preview img {
  width: 100%;
  display: block;
}

.admin-asset-preview-small {
  max-width: 240px;
}

.admin-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

@media (max-width: 920px) {
  .case-album-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-album-visual .case-album-photo {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .case-album-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-album-thumb img {
    height: 72px;
  }

  .admin-repeater-item-header {
    flex-direction: column;
  }
}

/* Visual block editor */
.cms-block {
  margin-top: var(--cms-margin-top);
  margin-bottom: var(--cms-margin-bottom);
  transform: translate(var(--cms-offset-x, 0px), var(--cms-offset-y, 0px));
  --cms-accent-effective: var(--cms-accent, var(--accent));
  --cms-accent-soft-effective: color-mix(in srgb, var(--cms-accent-effective) 16%, transparent);
}

.cms-block > *:first-child {
  padding-top: var(--cms-padding-top);
  padding-bottom: var(--cms-padding-bottom);
  border-radius: var(--cms-radius);
  background: var(--cms-background);
  background-color: var(--cms-background-color);
  text-align: var(--cms-text-align);
  --accent: var(--cms-accent-effective);
  --accent-deep: var(--cms-accent-effective);
  --accent-soft: var(--cms-accent-soft-effective);
}

.cms-block > *:first-child :where(h1, h2, h3, h4, h5, h6) {
  color: var(--cms-heading-color);
}

.cms-block > *:first-child :where(p, li, small, blockquote, figcaption, dd, dt) {
  color: var(--cms-text-color);
}

.admin-color-combo {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.admin-color-picker {
  width: 60px;
  height: 48px;
  padding: 4px;
  border: 1px solid rgba(23, 30, 40, 0.12);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.admin-disclosure {
  border: 1px solid rgba(23, 30, 40, 0.1);
  border-radius: 24px;
  background: rgba(23, 30, 40, 0.03);
}

.admin-disclosure summary {
  padding: 18px 22px;
  color: #171e28;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.admin-disclosure summary::-webkit-details-marker {
  display: none;
}

.admin-disclosure summary::after {
  content: "+";
  float: right;
  color: var(--accent-deep);
  font-size: 1.2rem;
  line-height: 1;
}

.admin-disclosure[open] summary::after {
  content: "–";
}

.admin-disclosure-body {
  padding: 0 22px 22px;
}

@media (max-width: 920px) {
  .admin-color-combo {
    grid-template-columns: 1fr;
  }

  .admin-color-picker {
    width: 100%;
  }
}

/* Client pains section */
.client-pains-section {
  --client-pains-accent: var(--cms-accent, #f04a30);
  --client-pains-text: var(--cms-heading-color, #20242d);
  --client-pains-muted: var(--cms-text-color, #596273);
  --client-pains-line: rgba(240, 74, 48, 0.22);
  overflow: hidden;
  background: #fff;
  color: var(--client-pains-text);
}

.client-pains-section mark {
  color: var(--client-pains-accent);
  background: transparent;
}

.client-pains-hero {
  position: relative;
  min-height: 640px;
  isolation: isolate;
}

.client-pains-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.96) 30%, rgba(255, 255, 255, 0.62) 54%, rgba(255, 255, 255, 0.12) 78%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), #fff 100%);
}

.client-pains-hero__image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -2;
  width: 68%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.client-pains-hero__inner {
  min-height: inherit;
  display: grid;
  align-items: center;
}

.client-pains-hero__copy {
  width: min(640px, 100%);
  padding: 72px 0;
}

.client-pains-eyebrow {
  position: relative;
  margin: 0 0 44px;
  color: #32343a;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-pains-eyebrow::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -22px;
  width: 110px;
  height: 3px;
  background: var(--client-pains-accent);
}

.client-pains-title {
  margin: 0;
  color: var(--client-pains-text);
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.client-pains-title--medium {
  font-size: 3.25rem;
}

.client-pains-title--center {
  font-size: 2.8rem;
  line-height: 1.05;
  text-align: center;
}

.client-pains-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
}

.client-pains-note,
.client-pains-monitoring-item,
.client-pains-trust__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.client-pains-note p,
.client-pains-monitoring-item p,
.client-pains-card p,
.client-pains-trust__item p,
.client-pains-system__heading p {
  margin: 0;
  color: var(--client-pains-muted);
  font-size: 1rem;
  line-height: 1.62;
}

.client-pains-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--client-pains-accent);
}

.client-pains-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.client-pains-icon--boxed {
  width: 62px;
  height: 62px;
  padding: 14px;
  border: 1px solid var(--client-pains-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(240, 74, 48, 0.14);
}

.client-pains-icon--solid {
  width: 76px;
  height: 76px;
  padding: 18px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f32822, #ff794d);
  box-shadow: 0 18px 34px rgba(240, 74, 48, 0.26);
}

.client-pains-monitoring {
  background:
    radial-gradient(circle at 0% 0%, rgba(240, 74, 48, 0.08), transparent 34%),
    #fffaf7;
  padding: 74px 0 62px;
}

.client-pains-monitoring__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: 52px;
}

.client-pains-monitoring-list {
  display: grid;
  gap: 22px;
  margin-top: 42px;
}

.client-pains-monitoring__media {
  margin: 0;
}

.client-pains-monitoring__media img {
  width: 100%;
  min-height: 380px;
  object-fit: contain;
}

.client-pains-system {
  padding: 82px 0 88px;
  background: #fff;
}

.client-pains-system__heading {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.client-pains-system__heading p {
  margin-top: 18px;
}

.client-pains-system__heading strong {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
  color: var(--client-pains-accent);
  font-family: var(--font-primary);
  font-size: 1.18rem;
  font-weight: 800;
  text-transform: uppercase;
}

.client-pains-system__heading strong::before,
.client-pains-system__heading strong::after {
  content: "";
  display: block;
  width: 140px;
  height: 1px;
  background: var(--client-pains-line);
}

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

.client-pains-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 1.1fr);
  align-items: center;
  gap: 20px;
  min-height: 246px;
  padding: 26px 20px 26px 28px;
  border: 1px solid var(--client-pains-line);
  border-radius: 16px;
  background:
    linear-gradient(115deg, #fff 0%, #fff 46%, rgba(255, 248, 244, 0.86) 100%);
  box-shadow: 0 14px 34px rgba(41, 28, 20, 0.06);
}

.client-pains-card h3 {
  max-width: 300px;
  margin: 18px 0 12px;
  color: var(--client-pains-text);
  font-family: var(--font-primary);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.18;
}

.client-pains-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center right;
}

.client-pains-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 54px;
  padding: 26px 22px;
  border: 1px solid var(--client-pains-line);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff8f4, #fff);
}

.client-pains-trust__item {
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 12px;
  padding: 0 24px;
  text-align: center;
}

.client-pains-trust__item + .client-pains-trust__item {
  border-left: 1px solid var(--client-pains-line);
}

.client-pains-trust__item .client-pains-icon {
  width: 52px;
  height: 52px;
}

.client-pains-trust__item p {
  max-width: 190px;
  color: var(--client-pains-text);
  font-weight: 800;
  line-height: 1.32;
}

@media (max-width: 1180px) {
  .client-pains-title {
    font-size: 3.2rem;
  }

  .client-pains-title--medium {
    font-size: 2.7rem;
  }

  .client-pains-title--center {
    font-size: 2.35rem;
  }

  .client-pains-card {
    grid-template-columns: 1fr;
  }

  .client-pains-card img {
    object-position: center;
  }
}

@media (max-width: 920px) {
  .client-pains-hero {
    min-height: auto;
  }

  .client-pains-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9));
  }

  .client-pains-hero__image {
    position: relative;
    width: 100%;
    height: 360px;
    opacity: 0.92;
  }

  .client-pains-hero__copy {
    padding: 54px 0 34px;
  }

  .client-pains-title,
  .client-pains-title--medium {
    font-size: 2.45rem;
  }

  .client-pains-title--center {
    font-size: 2rem;
  }

  .client-pains-notes,
  .client-pains-monitoring__inner,
  .client-pains-card-grid,
  .client-pains-trust {
    grid-template-columns: 1fr;
  }

  .client-pains-monitoring {
    padding: 58px 0 48px;
  }

  .client-pains-monitoring__media img {
    min-height: 0;
  }

  .client-pains-system__heading strong {
    display: grid;
    justify-items: center;
    gap: 14px;
  }

  .client-pains-system__heading strong::before,
  .client-pains-system__heading strong::after {
    width: 90px;
  }

  .client-pains-trust__item {
    padding: 22px 0;
  }

  .client-pains-trust__item + .client-pains-trust__item {
    border-left: 0;
    border-top: 1px solid var(--client-pains-line);
  }
}

@media (max-width: 560px) {
  .client-pains-title,
  .client-pains-title--medium {
    font-size: 2.05rem;
  }

  .client-pains-title--center {
    font-size: 1.75rem;
  }

  .client-pains-note,
  .client-pains-monitoring-item {
    grid-template-columns: 1fr;
  }

  .client-pains-card {
    padding: 22px;
  }
}

/* Admin refresh */
.admin-body {
  --admin-bg: #f6f2ec;
  --admin-surface: rgba(255, 255, 255, 0.92);
  --admin-surface-solid: #ffffff;
  --admin-ink: #151f2f;
  --admin-muted: #687386;
  --admin-line: rgba(21, 31, 47, 0.1);
  --admin-accent: #ff4b2e;
  --admin-accent-2: #ff7a3d;
  --admin-danger: #e92b24;
  --admin-shadow: 0 24px 70px rgba(21, 31, 47, 0.1);
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% -10%, rgba(255, 75, 46, 0.16), transparent 32%),
    radial-gradient(circle at 88% 0%, rgba(255, 122, 61, 0.14), transparent 28%),
    linear-gradient(180deg, #fbf7f2 0%, var(--admin-bg) 100%);
  color: var(--admin-ink);
  font-family: var(--font-secondary);
}

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

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 22px 18px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top left, rgba(255, 75, 46, 0.24), transparent 32%),
    linear-gradient(180deg, #1f2530 0%, #0c111a 100%);
  color: #edf2f8;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 18px 0 44px rgba(13, 18, 27, 0.18);
  z-index: 40;
}

.admin-brand {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #fff;
}

.admin-brand:hover,
.admin-brand:focus-visible {
  color: #fff;
}

.admin-brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--admin-danger), var(--admin-accent-2));
  box-shadow: 0 18px 38px rgba(255, 75, 46, 0.34);
  font-family: var(--font-primary);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.admin-brand strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.15;
}

.admin-brand small {
  display: block;
  margin-top: 3px;
  color: rgba(237, 242, 248, 0.62);
  font-size: 0.75rem;
}

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

.admin-nav-group {
  display: grid;
  gap: 6px;
}

.admin-nav-group p {
  margin: 0 0 4px;
  padding: 0 12px;
  color: rgba(237, 242, 248, 0.44);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-nav a {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: rgba(237, 242, 248, 0.76);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.admin-nav a:hover,
.admin-nav a:focus-visible {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.admin-nav a.is-active {
  background: linear-gradient(135deg, rgba(255, 75, 46, 0.22), rgba(255, 122, 61, 0.14));
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 3px 0 0 var(--admin-accent-2);
}

.admin-nav-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}

.admin-nav-label {
  min-width: 0;
  overflow: hidden;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-nav-badge {
  min-width: 28px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--admin-accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.admin-main {
  min-width: 0;
  padding: 28px;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: -28px -28px 26px;
  padding: 22px 28px;
  border-bottom: 1px solid rgba(21, 31, 47, 0.08);
  background: rgba(246, 242, 236, 0.82);
  backdrop-filter: blur(18px);
}

.admin-topbar-title {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.admin-topbar h1 {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  letter-spacing: -0.04em;
}

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

.admin-menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  border: 1px solid var(--admin-line);
  border-radius: 14px;
  background: #fff;
  color: var(--admin-ink);
}

.admin-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.admin-body .button {
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

.admin-body .button-primary {
  background: linear-gradient(135deg, #f12822 0%, #ff6535 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 75, 46, 0.22);
}

.admin-body .button-secondary {
  background: #fff;
  color: var(--admin-ink);
  border: 1px solid rgba(21, 31, 47, 0.1);
}

.admin-body .button-ghost {
  background: rgba(21, 31, 47, 0.06);
  color: var(--admin-ink);
}

.admin-body .button-danger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(233, 43, 36, 0.1);
  color: #b3221d;
  font-size: 0.92rem;
  font-weight: 900;
}

.admin-body .button:hover,
.admin-body .button:focus-visible {
  transform: translateY(-1px);
}

.admin-content {
  display: grid;
  gap: 22px;
}

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

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

.admin-card {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(21, 31, 47, 0.08);
  border-radius: 26px;
  background: var(--admin-surface);
  box-shadow: var(--admin-shadow);
}

.admin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 46%);
  opacity: 0.55;
}

.admin-card > * {
  position: relative;
}

.admin-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-card h2 {
  margin: 0;
  color: var(--admin-ink);
  font-family: var(--font-primary);
  letter-spacing: -0.035em;
}

.admin-kicker {
  margin: 0 0 7px;
  color: var(--admin-accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, #191f2b 0%, #2b303a 56%, #ff4b2e 180%);
  color: #fff;
  box-shadow: 0 28px 80px rgba(21, 31, 47, 0.18);
}

.admin-dashboard-hero h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.admin-dashboard-hero p:not(.admin-kicker) {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

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

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

.admin-stat-card {
  display: grid;
  gap: 10px;
  min-height: 154px;
  color: var(--admin-ink);
}

.admin-stat-card:hover,
.admin-stat-card:focus-visible {
  transform: translateY(-3px);
}

.admin-stat-card-hot {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 61, 0.22), transparent 44%),
    var(--admin-surface-solid);
}

.admin-stat-label,
.admin-stat-hint {
  color: var(--admin-muted);
  font-weight: 800;
}

.admin-stat-card strong {
  color: var(--admin-ink);
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.admin-mini-board {
  display: grid;
  gap: 20px;
}

.admin-mini-board h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.admin-list-rich li > div {
  display: grid;
  gap: 4px;
}

.admin-list-rich li span:not(.admin-status) {
  color: var(--admin-muted);
  font-size: 0.88rem;
}

.admin-filter-bar {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) minmax(170px, 0.9fr) repeat(2, minmax(150px, 0.7fr)) minmax(170px, 0.9fr) auto;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
  padding: 16px;
  border: 1px solid rgba(21, 31, 47, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.admin-filter-actions {
  display: flex;
  gap: 10px;
}

.admin-filter-bar-compact {
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(160px, 0.8fr)) auto;
}

.admin-field span,
.admin-checkbox span {
  color: var(--admin-ink);
  font-weight: 900;
}

.admin-input {
  border-color: rgba(21, 31, 47, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--admin-ink);
}

.admin-input:focus {
  border-color: rgba(255, 75, 46, 0.56);
  box-shadow: 0 0 0 4px rgba(255, 75, 46, 0.12);
}

.admin-upload-drop {
  padding: 18px;
  border: 1px dashed rgba(255, 75, 46, 0.34);
  border-radius: 20px;
  background: rgba(255, 75, 46, 0.05);
}

.admin-upload-drop small {
  color: var(--admin-muted);
}

.admin-table-wrap {
  border: 1px solid rgba(21, 31, 47, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.admin-table {
  min-width: 860px;
}

.admin-table th {
  background: #fbf7f2;
  color: rgba(21, 31, 47, 0.58);
}

.admin-table th,
.admin-table td {
  border-color: rgba(21, 31, 47, 0.08);
}

.admin-table tbody tr {
  transition: background-color 0.18s ease;
}

.admin-table tbody tr:hover {
  background: rgba(255, 75, 46, 0.045);
}

.admin-table-code {
  display: inline-block;
  max-width: 420px;
  padding: 5px 8px;
  border-radius: 9px;
  background: rgba(21, 31, 47, 0.06);
  color: #344052;
  white-space: normal;
}

.admin-status {
  border: 1px solid transparent;
  font-weight: 900;
}

.admin-status-success {
  background: rgba(42, 179, 120, 0.14);
  color: #13774e;
}

.admin-status-warning {
  background: rgba(255, 179, 0, 0.18);
  color: #8a5600;
}

.admin-status-info {
  background: rgba(47, 120, 255, 0.12);
  color: #2854ad;
}

.admin-status-muted {
  background: rgba(21, 31, 47, 0.08);
  color: rgba(21, 31, 47, 0.68);
}

.admin-cell-note {
  color: var(--admin-muted);
}

.admin-empty-panel {
  padding: 44px 24px;
  border: 1px dashed rgba(21, 31, 47, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.admin-empty-panel h3 {
  margin: 0 0 8px;
  color: var(--admin-ink);
}

.admin-help-card {
  display: grid;
  align-content: center;
}

.admin-help-card p:not(.admin-kicker) {
  color: var(--admin-muted);
  line-height: 1.7;
}

.admin-help-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.admin-help-list span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 75, 46, 0.09);
  color: var(--admin-accent);
  font-weight: 900;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.admin-media-card {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(21, 31, 47, 0.08);
  border-radius: 22px;
  background: #fff;
}

.admin-media-preview,
.admin-media-detail-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(45deg, rgba(21, 31, 47, 0.04) 25%, transparent 25%, transparent 75%, rgba(21, 31, 47, 0.04) 75%),
    #f7f2eb;
  background-size: 22px 22px;
}

.admin-media-preview {
  height: 180px;
}

.admin-media-preview img,
.admin-media-detail-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-media-preview span,
.admin-media-detail-preview span {
  color: var(--admin-muted);
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 900;
}

.admin-media-detail-preview {
  min-height: 420px;
}

.admin-media-detail-preview img {
  object-fit: contain;
}

.admin-pagination nav {
  display: flex;
  justify-content: flex-end;
}

.admin-pagination nav > div:first-child {
  display: none;
}

.admin-pagination nav > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.admin-pagination a,
.admin-pagination span {
  border-radius: 12px !important;
}

.admin-alert {
  border: 0;
  box-shadow: 0 16px 44px rgba(21, 31, 47, 0.08);
}

.admin-alert-success {
  background: #eaf8f1;
  color: #13774e;
}

.admin-alert-error {
  background: #fff0ee;
  color: #ab2420;
}

.admin-confirm {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.admin-confirm.is-open {
  opacity: 1;
  pointer-events: auto;
}

.admin-confirm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 16, 26, 0.56);
  backdrop-filter: blur(8px);
}

.admin-confirm__dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(10, 16, 26, 0.28);
  transform: translateY(14px) scale(0.97);
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.admin-confirm.is-open .admin-confirm__dialog {
  transform: translateY(0) scale(1);
}

.admin-confirm__dialog h2 {
  margin: 0 0 10px;
  font-family: var(--font-primary);
  letter-spacing: -0.04em;
}

.admin-confirm__dialog p:not(.admin-kicker) {
  margin: 0 0 20px;
  color: var(--admin-muted);
  line-height: 1.65;
}

.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: none;
  background: rgba(10, 16, 26, 0.48);
  opacity: 0;
  transition: opacity 0.2s ease;
}

@media (max-width: 1280px) {
  .admin-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, calc(100vw - 46px));
    transform: translateX(-105%);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .admin-sidebar-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-sidebar-open .admin-sidebar-backdrop {
    display: block;
    opacity: 1;
  }

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

  .admin-main {
    padding: 22px;
  }

  .admin-topbar {
    margin: -22px -22px 22px;
    padding: 18px 22px;
  }

  .admin-topbar,
  .admin-card-header,
  .admin-dashboard-hero {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .admin-topbar-actions,
  .admin-dashboard-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .admin-grid,
  .admin-grid-2,
  .admin-form-grid,
  .admin-stats-grid,
  .admin-filter-bar {
    grid-template-columns: 1fr;
  }

  .admin-card-span-2,
  .admin-field-full {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .admin-main {
    padding: 16px;
  }

  .admin-topbar {
    margin: -16px -16px 18px;
    padding: 16px;
  }

  .admin-topbar-actions .button,
  .admin-dashboard-actions .button,
  .admin-filter-actions .button {
    width: 100%;
  }

  .admin-card,
  .admin-dashboard-hero {
    padding: 18px;
    border-radius: 22px;
  }

  .admin-inline-actions,
  .admin-actions,
  .admin-filter-actions {
    width: 100%;
  }

  .admin-inline-actions .button,
  .admin-inline-actions form,
  .admin-inline-actions button,
  .admin-actions .button,
  .admin-actions form,
  .admin-actions button {
    width: 100%;
  }

  .admin-table {
    min-width: 760px;
  }
}

.client-body {
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-primary);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 75, 46, 0.09), transparent 34%),
    linear-gradient(180deg, #fbf8f3 0%, #efe9df 100%);
}

.client-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
}

.client-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #151b24;
  color: #fff;
  box-shadow: 18px 0 48px rgba(10, 16, 26, 0.18);
}

.client-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff4b2e, #e51f1f);
  font-weight: 800;
}

.client-brand strong,
.client-brand small {
  display: block;
}

.client-brand small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
}

.client-nav {
  display: grid;
  gap: 8px;
}

.client-nav a,
.client-logout {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 1px solid transparent;
  text-align: left;
  cursor: pointer;
}

.client-nav a:hover,
.client-nav a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.client-logout {
  margin-top: auto;
  font-family: var(--font-primary);
}

.client-main {
  padding: 30px;
}

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

.client-topbar h1,
.client-panel h2,
.client-camera-card h2,
.client-tariff-card h2,
.client-result-panel h2 {
  margin: 0;
  color: var(--ink);
}

.client-topbar h1 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.client-kicker {
  margin: 0 0 6px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.client-stack {
  display: grid;
  gap: 22px;
}

.client-notices {
  display: grid;
  gap: 10px;
}

.client-alert {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 12px 32px rgba(10, 16, 26, 0.07);
}

.client-alert a {
  color: var(--accent-deep);
  font-weight: 800;
}

.client-alert-success {
  border-color: rgba(44, 144, 92, 0.22);
  background: #eefaf4;
}

.client-alert-warning {
  border-color: rgba(229, 31, 31, 0.2);
  background: #fff1ed;
}

.client-alert-info {
  border-color: rgba(42, 113, 166, 0.22);
  background: #eef6ff;
}

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

.client-card,
.client-panel,
.client-camera-card,
.client-tariff-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(10, 16, 26, 0.08);
}

.client-card {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.client-card span,
.client-card small,
.client-muted {
  color: var(--ink-soft);
}

.client-card strong {
  font-size: 1.7rem;
}

.client-card-accent {
  background: #151b24;
  color: #fff;
}

.client-card-accent span,
.client-card-accent small,
.client-card-accent strong {
  color: #fff;
}

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

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

.client-panel {
  padding: 22px;
}

.client-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

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

.client-list a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border-radius: 14px;
  background: var(--bg-soft);
}

.client-list em {
  color: var(--ink-soft);
  font-style: normal;
}

.client-empty {
  padding: 20px;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--ink-soft);
}

.client-empty-wide {
  grid-column: 1 / -1;
}

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

.client-camera-card {
  overflow: hidden;
}

.client-camera-preview {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #1d2530, #354050);
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}

.client-camera-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-camera-body,
.client-tariff-card {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.client-camera-body p,
.client-tariff-card p,
.client-result-panel p {
  margin: 6px 0 0;
  color: var(--ink-soft);
}

.client-status {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.client-status.is-success {
  color: #14663c;
  background: #e8f8ef;
}

.client-status.is-warning {
  color: #9b341f;
  background: #fff1de;
}

.client-status.is-muted {
  color: #586171;
  background: #eef0f3;
}

.client-player {
  overflow: hidden;
  border-radius: 20px;
  background: #0f141c;
}

.client-player video,
.client-player iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

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

.client-tariff-card strong {
  font-size: 1.8rem;
}

.client-tariff-card strong span {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.client-table-wrap {
  overflow-x: auto;
}

.client-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.client-table th,
.client-table td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.client-table th {
  color: var(--ink-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.client-cell-note {
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.client-payment-panel,
.client-result-panel,
.client-form {
  max-width: 760px;
}

.client-payment-total {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 18px;
  background: var(--bg-soft);
}

.client-payment-total span {
  color: var(--ink-soft);
}

.client-payment-total strong {
  font-size: 2rem;
}

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

.client-field {
  display: grid;
  gap: 8px;
}

.client-field span {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.client-field input,
.client-field select,
.client-field textarea {
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font: inherit;
  color: inherit;
}

.client-field textarea {
  min-height: 140px;
  resize: vertical;
}

.client-field small {
  color: var(--ink-soft);
}

.client-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.client-settings-section {
  display: grid;
  gap: 16px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.client-note {
  color: var(--ink-soft);
}

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

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

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

.client-checkbox-title {
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 800;
}

.client-checkbox {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.client-checkbox input {
  margin-top: 4px;
}

.client-checkbox span {
  display: grid;
  gap: 4px;
}

.client-checkbox strong {
  font-size: 0.96rem;
}

.client-checkbox small {
  color: var(--ink-soft);
}

@media (max-width: 1180px) {
  .client-shell {
    grid-template-columns: 1fr;
  }

  .client-sidebar {
    position: relative;
    height: auto;
  }

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

  .crm-recipient-columns,
  .client-checkbox-grid,
  .client-form-grid,
  .client-stats,
  .client-camera-grid,
  .client-tariff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .client-main,
  .client-sidebar {
    padding: 18px;
  }

  .client-topbar,
  .client-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .client-nav,
  .crm-recipient-columns,
  .client-checkbox-grid,
  .client-form-grid,
  .client-stats,
  .client-grid-2,
  .client-camera-grid,
  .client-tariff-grid {
    grid-template-columns: 1fr;
  }

  .client-actions .button,
  .client-actions form,
  .client-actions button,
  .client-topbar .button {
    width: 100%;
  }
}

/* Admin dashboard refresh */

.admin-body {
  --admin-bg: #f4f7fb;
  --admin-surface: #ffffff;
  --admin-surface-soft: #f8fbff;
  --admin-line: rgba(20, 39, 76, 0.08);
  --admin-line-strong: rgba(20, 39, 76, 0.14);
  --admin-ink: #13233f;
  --admin-muted: #6f7f99;
  --admin-muted-strong: #50617d;
  --admin-navy: #081f4c;
  --admin-navy-soft: #0c2f73;
  --admin-blue: #2f71ff;
  --admin-cyan: #1bbccf;
  --admin-green: #34bf60;
  --admin-indigo: #1b3f97;
  --admin-shadow: 0 24px 60px rgba(18, 34, 68, 0.08);
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-primary);
  color: var(--admin-ink);
  background:
    radial-gradient(circle at top right, rgba(68, 138, 255, 0.11), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 48%, #eef3f8 100%);
}

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

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 18px;
  background:
    linear-gradient(180deg, #08295f 0%, #071d46 56%, #051533 100%);
  color: #fff;
  box-shadow: 18px 0 40px rgba(6, 23, 56, 0.24);
  z-index: 30;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 6px 14px;
  color: #fff;
}

.admin-brand-mark {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(31, 215, 244, 0.22), rgba(31, 215, 244, 0.08)),
    rgba(255, 255, 255, 0.06);
  color: #2de2ff;
  box-shadow: inset 0 0 0 1px rgba(45, 226, 255, 0.28);
}

.admin-brand-mark svg {
  width: 26px;
  height: 26px;
}

.admin-brand strong,
.admin-brand small {
  display: block;
}

.admin-brand strong {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.admin-brand small {
  margin-top: 2px;
  color: rgba(227, 237, 255, 0.72);
  font-size: 0.82rem;
}

.admin-nav {
  display: grid;
  gap: 18px;
  overflow-y: auto;
  padding-right: 4px;
}

.admin-nav-group {
  display: grid;
  gap: 8px;
}

.admin-nav-group p {
  margin: 0 0 4px;
  padding: 0 12px;
  color: rgba(208, 224, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-nav a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: 16px;
  color: rgba(231, 241, 255, 0.84);
  background: transparent;
  border: 1px solid transparent;
  transition:
    background-color 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease,
    color 0.18s ease;
}

.admin-nav a:hover,
.admin-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(2px);
}

.admin-nav a.is-active {
  color: #4fe6ff;
  background: linear-gradient(90deg, rgba(18, 78, 170, 0.62), rgba(8, 45, 108, 0.92));
  border-color: rgba(67, 213, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(79, 230, 255, 0.08);
}

.admin-nav-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.admin-nav-icon svg {
  width: 100%;
  height: 100%;
}

.admin-nav-label {
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.admin-nav-badge {
  margin-left: auto;
  min-width: 26px;
  min-height: 26px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #2f71ff, #1e55cb);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
}

.admin-sidebar-promo {
  margin-top: auto;
  display: grid;
  gap: 14px;
  padding: 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar-promo img {
  width: 100%;
  height: 154px;
  object-fit: cover;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.admin-sidebar-promo strong {
  display: block;
  margin-bottom: 8px;
  line-height: 1.4;
}

.admin-sidebar-promo p {
  margin: 0;
  color: rgba(222, 232, 249, 0.72);
  font-size: 0.87rem;
  line-height: 1.6;
}

.admin-sidebar-promo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4fe6ff;
  font-weight: 800;
}

.admin-sidebar-promo-link::after {
  content: "→";
  font-size: 1rem;
}

.admin-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17, 36, 74, 0.08);
}

.admin-topbar-left,
.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-search-shell {
  min-width: min(540px, 52vw);
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 15px;
  background: #f8fbff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.admin-search-icon {
  width: 18px;
  height: 18px;
  color: #8fa0bb;
  flex: 0 0 18px;
}

.admin-search-icon svg {
  width: 100%;
  height: 100%;
}

.admin-search-shell input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--admin-ink);
  font-family: var(--font-primary);
  font-size: 0.96rem;
}

.admin-search-shell input::placeholder {
  color: #98a7bf;
}

.admin-search-shell kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  color: #8b9ab2;
  font-size: 0.76rem;
  font-weight: 700;
}

.admin-topbar-icon {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  color: #6e7f99;
  background: #f7faff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  transition: color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.admin-topbar-icon:hover,
.admin-topbar-icon:focus-visible {
  color: var(--admin-blue);
  border-color: rgba(47, 113, 255, 0.24);
  transform: translateY(-1px);
}

.admin-topbar-icon svg {
  width: 20px;
  height: 20px;
}

.admin-topbar-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #2f71ff;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.admin-topbar-badge-danger {
  background: #ff6a4d;
}

.admin-user-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 6px;
}

.admin-user-avatar {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #e4ecff, #cfdcff);
  color: var(--admin-indigo);
  font-size: 0.92rem;
  font-weight: 900;
}

.admin-user-meta {
  display: grid;
  gap: 2px;
}

.admin-user-meta strong {
  font-size: 0.96rem;
  line-height: 1.2;
}

.admin-user-meta small {
  color: var(--admin-muted);
  font-size: 0.82rem;
}

.admin-content {
  padding: 28px;
}

.admin-body .button {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  box-shadow: none;
}

.admin-body .button:hover,
.admin-body .button:focus-visible {
  transform: translateY(-1px);
}

.admin-body .button-primary {
  background: linear-gradient(180deg, #2f71ff, #1d5fe9);
  color: #fff;
}

.admin-body .button-secondary {
  background: #fff;
  color: var(--admin-ink);
  border-color: rgba(19, 35, 63, 0.1);
}

.admin-body .button-ghost {
  background: #f6f9ff;
  color: var(--admin-muted-strong);
  border-color: rgba(19, 35, 63, 0.08);
}

.admin-body .button-danger {
  background: linear-gradient(180deg, #ff7d62, #f05f43);
  color: #fff;
}

.admin-body .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--admin-blue);
  font-weight: 800;
}

.admin-body .text-link::after {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.42;
}

.admin-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 24px;
  background: var(--admin-surface);
  border: 1px solid rgba(19, 35, 63, 0.06);
  box-shadow: var(--admin-shadow);
}

.admin-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), transparent 36%);
  pointer-events: none;
}

.admin-card > * {
  position: relative;
}

.admin-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.admin-card h2 {
  margin: 0;
  color: var(--admin-ink);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.admin-card-subtitle {
  margin: 6px 0 0;
  color: var(--admin-muted);
  line-height: 1.55;
}

.admin-kicker {
  margin: 0 0 8px;
  color: var(--admin-blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  background: #f7faff;
  border: 1px solid rgba(19, 35, 63, 0.08);
  color: var(--admin-muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.admin-page-header h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.admin-page-header p:not(.admin-kicker) {
  margin: 0;
  color: var(--admin-muted);
  max-width: 740px;
  line-height: 1.7;
}

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

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

.admin-reference-stat {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 16px;
  min-height: 148px;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(19, 35, 63, 0.06);
  box-shadow: var(--admin-shadow);
  color: var(--admin-ink);
}

.admin-reference-stat__content {
  display: flex;
  gap: 14px;
  min-width: 0;
}

.admin-reference-stat__icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 16px 28px rgba(47, 113, 255, 0.2);
}

.admin-reference-stat__icon svg {
  width: 26px;
  height: 26px;
}

.admin-reference-stat--blue .admin-reference-stat__icon {
  background: linear-gradient(180deg, #2f71ff, #1f56ce);
}

.admin-reference-stat--cyan .admin-reference-stat__icon {
  background: linear-gradient(180deg, #19c2d3, #0f96a9);
}

.admin-reference-stat--green .admin-reference-stat__icon {
  background: linear-gradient(180deg, #46c85e, #2c9f45);
}

.admin-reference-stat--indigo .admin-reference-stat__icon {
  background: linear-gradient(180deg, #234aaf, #143581);
}

.admin-reference-stat__text {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-reference-stat__label {
  color: var(--admin-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-reference-stat__text strong {
  font-size: clamp(1.8rem, 2.8vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.admin-reference-stat__trend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--admin-muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
}

.admin-reference-stat__trend::after {
  content: "↗";
  color: var(--admin-green);
}

.admin-reference-stat__trend.is-negative::after {
  content: "↘";
  color: #ff7d62;
}

.admin-reference-stat__spark {
  align-self: flex-end;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-width: 86px;
}

.admin-reference-stat__spark span {
  width: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.92;
}

.admin-reference-stat--blue .admin-reference-stat__spark {
  color: #2f71ff;
}

.admin-reference-stat--cyan .admin-reference-stat__spark {
  color: #14b8cb;
}

.admin-reference-stat--green .admin-reference-stat__spark {
  color: #38b85b;
}

.admin-reference-stat--indigo .admin-reference-stat__spark {
  color: #2149a9;
}

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

.admin-reference-grid-top {
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.92fr) minmax(340px, 1fr);
  margin-bottom: 18px;
}

.admin-reference-grid-bottom {
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.92fr) minmax(330px, 1fr);
}

.admin-line-chart {
  display: grid;
  gap: 16px;
}

.admin-line-chart svg {
  width: 100%;
  height: auto;
  display: block;
}

.admin-line-chart__grid {
  stroke: rgba(19, 35, 63, 0.08);
  stroke-dasharray: 4 6;
}

.admin-line-chart__line {
  fill: none;
  stroke: #2f71ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-line-chart__dot {
  fill: #2f71ff;
  stroke: #fff;
  stroke-width: 3;
}

.admin-line-chart__labels {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  color: var(--admin-muted);
  font-size: 0.82rem;
  text-align: center;
}

.admin-donut-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.admin-donut-chart {
  width: 180px;
  height: 180px;
  position: relative;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.admin-donut-chart__hole {
  width: 106px;
  height: 106px;
  display: grid;
  place-items: center;
  gap: 2px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(19, 35, 63, 0.06);
}

.admin-donut-chart__hole strong {
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.admin-donut-chart__hole span {
  color: var(--admin-muted);
  font-size: 0.8rem;
}

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

.admin-donut-legend__item {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.admin-donut-legend__dot {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border-radius: 999px;
}

.admin-donut-legend__item strong {
  display: block;
  font-size: 0.94rem;
}

.admin-donut-legend__item small {
  color: var(--admin-muted);
}

.admin-ops-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.admin-ops-summary__item {
  display: grid;
  gap: 5px;
  padding: 14px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid rgba(19, 35, 63, 0.08);
}

.admin-ops-summary__item span {
  color: var(--admin-muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.admin-ops-summary__item strong {
  font-size: 1.4rem;
  line-height: 1;
}

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

.admin-ops-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fbfdff;
  border: 1px solid rgba(19, 35, 63, 0.08);
}

.admin-ops-item__time {
  display: grid;
  gap: 4px;
}

.admin-ops-item__time strong {
  color: var(--admin-blue);
  font-size: 0.9rem;
}

.admin-ops-item__time span,
.admin-ops-item__body span,
.admin-ops-item__body small,
.admin-ops-item__manager {
  color: var(--admin-muted);
}

.admin-ops-item__body {
  display: grid;
  gap: 4px;
}

.admin-ops-item__body strong {
  font-size: 0.96rem;
}

.admin-ops-item__body small {
  font-size: 0.84rem;
}

.admin-ops-item__meta {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.admin-ops-item__manager {
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-service-progress {
  display: grid;
  gap: 16px;
}

.admin-service-progress__item {
  display: grid;
  gap: 8px;
}

.admin-service-progress__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-service-progress__head strong {
  font-size: 0.95rem;
}

.admin-service-progress__head span,
.admin-service-progress__item small {
  color: var(--admin-muted);
}

.admin-service-progress__bar {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: #edf2fb;
  overflow: hidden;
}

.admin-service-progress__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f71ff, #26c3d8);
}

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

.admin-equipment-card {
  overflow: hidden;
  border-radius: 20px;
  background: #f9fbff;
  border: 1px solid rgba(19, 35, 63, 0.08);
}

.admin-equipment-card__media {
  aspect-ratio: 16 / 9;
  background: linear-gradient(180deg, rgba(47, 113, 255, 0.05), rgba(47, 113, 255, 0));
}

.admin-equipment-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-equipment-card__body {
  display: grid;
  gap: 6px;
  padding: 14px;
}

.admin-equipment-card__body strong {
  font-size: 0.92rem;
}

.admin-equipment-card__body span {
  color: var(--admin-muted);
  font-size: 0.84rem;
}

.admin-equipment-card__body b {
  font-size: 1.28rem;
  letter-spacing: -0.04em;
}

.admin-dashboard-empty-media {
  display: grid;
  gap: 16px;
}

.admin-dashboard-empty-media img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.admin-dashboard-empty-media h3 {
  margin: 0 0 8px;
}

.admin-dashboard-empty-media p {
  margin: 0;
  color: var(--admin-muted);
  line-height: 1.7;
}

.admin-table-wrap {
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid rgba(19, 35, 63, 0.08);
  background: #fff;
}

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

.admin-table th,
.admin-table td {
  padding: 14px 12px;
  border-bottom: 1px solid rgba(19, 35, 63, 0.08);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--admin-muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #fbfdff;
}

.admin-table tbody tr:hover {
  background: rgba(47, 113, 255, 0.03);
}

.admin-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
}

.admin-status-success {
  background: rgba(52, 191, 96, 0.14);
  color: #1b8b42;
}

.admin-status-warning {
  background: rgba(255, 179, 0, 0.18);
  color: #916200;
}

.admin-status-info {
  background: rgba(47, 113, 255, 0.12);
  color: #2455b7;
}

.admin-status-muted {
  background: rgba(19, 35, 63, 0.08);
  color: var(--admin-muted-strong);
}

.admin-cell-note,
.admin-empty,
.admin-empty-panel p,
.admin-help-list span {
  color: var(--admin-muted);
}

.admin-filter-bar,
.admin-upload-drop,
.admin-empty-panel,
.admin-media-card,
.admin-alert,
.admin-confirm__dialog,
.crm-recipient-card,
.crm-template-card,
.client-panel {
  border-radius: 20px;
}

.admin-filter-bar {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(19, 35, 63, 0.08);
  background: rgba(255, 255, 255, 0.86);
}

.admin-filter-bar-compact {
  grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(150px, 0.8fr)) auto;
}

.admin-input {
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid rgba(19, 35, 63, 0.1);
  background: #fff;
  color: var(--admin-ink);
}

.admin-input:focus {
  outline: none;
  border-color: rgba(47, 113, 255, 0.34);
  box-shadow: 0 0 0 4px rgba(47, 113, 255, 0.08);
}

.admin-actions,
.admin-inline-actions,
.admin-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

.admin-alert {
  border: 1px solid rgba(19, 35, 63, 0.08);
  box-shadow: 0 16px 36px rgba(18, 34, 68, 0.06);
}

.admin-alert-success {
  background: #eef9f1;
  color: #1b8b42;
}

.admin-alert-error {
  background: #fff1ee;
  color: #c5452b;
}

.admin-confirm__dialog {
  width: min(460px, 100%);
  padding: 28px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(18, 34, 68, 0.2);
}

.admin-sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: none;
  background: rgba(8, 21, 51, 0.42);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.admin-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border-radius: 14px;
  border: 1px solid rgba(19, 35, 63, 0.08);
  background: #fff;
  cursor: pointer;
}

.admin-menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--admin-ink);
}

@media (max-width: 1460px) {
  .admin-reference-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-reference-grid-top,
  .admin-reference-grid-bottom {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.92fr);
  }

  .admin-reference-ops-card,
  .admin-reference-equipment-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, calc(100vw - 42px));
    transform: translateX(-105%);
    transition: transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .admin-sidebar-open .admin-sidebar {
    transform: translateX(0);
  }

  .admin-sidebar-open .admin-sidebar-backdrop {
    display: block;
    opacity: 1;
  }

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

  .admin-search-shell {
    min-width: 0;
    flex: 1 1 auto;
  }
}

@media (max-width: 980px) {
  .admin-topbar,
  .admin-page-header,
  .admin-page-header-actions,
  .admin-topbar-left,
  .admin-topbar-right,
  .admin-card-header {
    align-items: flex-start;
  }

  .admin-topbar {
    flex-direction: column;
    padding: 16px 18px;
  }

  .admin-topbar-left,
  .admin-topbar-right,
  .admin-page-header,
  .admin-page-header-actions {
    width: 100%;
  }

  .admin-page-header,
  .admin-page-header-actions {
    flex-direction: column;
    justify-content: flex-start;
  }

  .admin-content {
    padding: 20px;
  }

  .admin-reference-stats,
  .admin-reference-grid-top,
  .admin-reference-grid-bottom,
  .admin-donut-panel,
  .admin-ops-summary,
  .admin-equipment-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .admin-content {
    padding: 16px;
  }

  .admin-card,
  .admin-reference-stat {
    padding: 18px;
    border-radius: 20px;
  }

  .admin-search-shell {
    width: 100%;
  }

  .admin-search-shell kbd {
    display: none;
  }

  .admin-reference-stat {
    flex-direction: column;
  }

  .admin-reference-stat__spark {
    align-self: stretch;
    justify-content: flex-end;
  }

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

  .admin-ops-item__meta {
    justify-items: start;
  }

  .admin-body .button,
  .admin-page-header-actions .button,
  .admin-actions .button,
  .admin-filter-actions .button {
    width: 100%;
  }
}

/* admin sidebar refinement */
.admin-body {
  --admin-font-stack: "Inter", "Manrope", "Segoe UI", Roboto, Arial, sans-serif;
}

.admin-body,
.admin-body button,
.admin-body input,
.admin-body select,
.admin-body textarea,
.admin-body a,
.admin-body p,
.admin-body span,
.admin-body strong,
.admin-body small,
.admin-body label,
.admin-body li,
.admin-body th,
.admin-body td,
.admin-body h1,
.admin-body h2,
.admin-body h3,
.admin-body h4 {
  font-family: var(--admin-font-stack) !important;
}

.admin-body code,
.admin-body pre,
.admin-body kbd {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace !important;
}

.admin-shell {
  grid-template-columns: 248px minmax(0, 1fr);
}

.admin-sidebar {
  gap: 16px;
  min-width: 0;
  padding: 18px 14px 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(18, 207, 227, 0.12), transparent 28%),
    linear-gradient(180deg, #061b3a 0%, #082a55 48%, #06182f 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.admin-brand {
  gap: 12px;
  min-height: 0;
  padding: 2px 6px 8px;
}

.admin-brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
}

.admin-brand strong {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.05;
}

.admin-brand small {
  margin-top: 2px;
  color: rgba(228, 236, 252, 0.74);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.admin-nav {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  display: grid;
  gap: 8px;
  overflow-x: hidden;
  overflow-y: auto;
  padding-right: 4px;
  padding-bottom: 2px;
}

.admin-nav-group {
  margin: 0;
  min-width: 0;
}

.admin-nav-group summary::-webkit-details-marker {
  display: none;
}

.admin-nav-group summary::marker {
  content: "";
}

.admin-nav-link,
.admin-nav-trigger,
.admin-nav-child {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(234, 241, 250, 0.86);
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

.admin-nav-trigger {
  cursor: pointer;
  list-style: none;
}

.admin-nav-link-main,
.admin-nav-link-end {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.admin-nav-link-end {
  gap: 10px;
  margin-left: auto;
}

.admin-nav-link:hover,
.admin-nav-link:focus-visible,
.admin-nav-trigger:hover,
.admin-nav-trigger:focus-visible,
.admin-nav-child:hover,
.admin-nav-child:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateX(1px);
}

.admin-nav-link.is-active,
.admin-nav-group[open] > .admin-nav-trigger,
.admin-nav-group.is-active > .admin-nav-trigger,
.admin-nav-child.is-active {
  color: #fff;
  background: rgba(18, 207, 227, 0.15);
  border-color: rgba(18, 207, 227, 0.24);
  box-shadow: inset 0 0 0 1px rgba(18, 207, 227, 0.05);
}

.admin-nav-group[open] > .admin-nav-trigger .admin-nav-icon,
.admin-nav-group.is-active > .admin-nav-trigger .admin-nav-icon,
.admin-nav-link.is-active .admin-nav-icon,
.admin-nav-child.is-active .admin-nav-icon {
  color: #73f5ff;
  background: rgba(18, 207, 227, 0.12);
  border-color: rgba(18, 207, 227, 0.2);
}

.admin-nav-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  color: currentColor;
  transition: inherit;
}

.admin-nav-icon svg {
  width: 18px;
  height: 18px;
}

.admin-nav-chevron svg {
  width: 100%;
  height: 100%;
}

.admin-nav-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
}

.admin-nav-badge {
  min-width: 22px;
  min-height: 22px;
  padding: 0 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #1677ff;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
}

.admin-nav-chevron {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: rgba(227, 236, 248, 0.66);
  transition: transform 0.22s ease, color 0.22s ease;
}

.admin-nav-group[open] > .admin-nav-trigger .admin-nav-chevron {
  color: #73f5ff;
  transform: rotate(90deg);
}

.admin-nav-children {
  min-width: 0;
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow-x: hidden;
  transition: grid-template-rows 0.22s ease, opacity 0.22s ease;
}

.admin-nav-group[open] .admin-nav-children {
  grid-template-rows: 1fr;
  opacity: 1;
}

.admin-nav-children-inner {
  overflow: hidden;
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 6px 0 2px 14px;
}

.admin-nav-group:not([open]) .admin-nav-children-inner {
  visibility: hidden;
  pointer-events: none;
}

.admin-nav-child {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 12px;
  color: rgba(226, 236, 248, 0.8);
}

.admin-nav-icon-child {
  width: 18px;
  height: 18px;
  flex-basis: 18px;
}

.admin-sidebar-promo {
  margin-top: auto;
  flex: 0 0 auto;
  gap: 10px;
  max-height: 220px;
  padding: 12px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.admin-sidebar-promo img {
  width: 100%;
  height: 102px;
  object-fit: cover;
  border-radius: 14px;
}

.admin-sidebar-promo strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.admin-sidebar-promo p {
  color: rgba(223, 232, 247, 0.72);
  margin: 0;
  font-size: 0.79rem;
  line-height: 1.42;
}

.admin-sidebar-promo-link {
  font-size: 0.88rem;
}

@media (max-width: 1180px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    width: min(252px, calc(100vw - 36px));
    padding: 18px 12px 12px;
  }
}

.admin-brand-compact {
  justify-content: center;
}

.admin-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: inherit;
}

.admin-settings-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-settings-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 35, 63, 0.1);
  background: rgba(255, 255, 255, 0.7);
  color: var(--admin-muted-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.admin-settings-tab:hover,
.admin-settings-tab:focus-visible {
  color: var(--admin-ink);
  border-color: rgba(22, 119, 255, 0.16);
  background: rgba(255, 255, 255, 0.92);
}

.admin-settings-tab.is-active {
  color: #1677ff;
  border-color: rgba(22, 119, 255, 0.2);
  background: rgba(22, 119, 255, 0.1);
}

.admin-branding-preview,
.admin-note-card {
  border-radius: 20px;
  background: rgba(247, 250, 255, 0.9);
  border: 1px solid rgba(19, 35, 63, 0.08);
}

.admin-branding-preview {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  padding: 18px;
}

.admin-branding-preview__logo {
  width: 88px;
  height: 88px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(18, 207, 227, 0.18), rgba(22, 119, 255, 0.1));
  color: #1677ff;
  overflow: hidden;
  font-size: 2rem;
  font-weight: 800;
}

.admin-branding-preview__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.admin-branding-preview strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.admin-branding-preview p,
.admin-note-card p {
  margin: 0;
  color: var(--admin-muted-strong);
  line-height: 1.6;
}

.admin-branding-preview small {
  display: block;
  margin-top: 10px;
  color: var(--admin-muted);
}

.admin-note-card {
  padding: 16px 18px;
}

.admin-note-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--admin-ink);
}

.admin-note-card code,
.admin-field-hint {
  color: var(--admin-muted-strong);
}

.admin-field-hint {
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
}

.admin-checkbox-inline {
  justify-content: flex-start;
  margin: 0;
}

@media (max-width: 760px) {
  .admin-branding-preview {
    grid-template-columns: 1fr;
  }
}

.admin-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.admin-checkbox-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(19, 35, 63, 0.1);
  background: rgba(247, 250, 255, 0.86);
}

.admin-checkbox-card input {
  flex: 0 0 auto;
}

.admin-checkbox-card span {
  color: var(--admin-ink);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.admin-visit-agenda {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.admin-visit-day {
  min-height: 100%;
}

.admin-visit-day-list {
  display: grid;
  gap: 12px;
}

.admin-visit-slot {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(19, 35, 63, 0.08);
  background: rgba(247, 250, 255, 0.78);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-visit-slot:hover,
.admin-visit-slot:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(22, 119, 255, 0.18);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.admin-visit-slot__time {
  display: grid;
  gap: 2px;
}

.admin-visit-slot__time strong {
  color: var(--admin-ink);
  font-size: 1rem;
}

.admin-visit-slot__time span,
.admin-visit-slot__body span,
.admin-visit-slot__body small,
.admin-visit-photo__meta span {
  color: var(--admin-muted-strong);
}

.admin-visit-slot__body {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.admin-visit-slot__body strong {
  color: var(--admin-ink);
}

.admin-visit-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.admin-visit-photo {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(19, 35, 63, 0.08);
  background: rgba(247, 250, 255, 0.82);
}

.admin-visit-photo a {
  display: block;
}

.admin-visit-photo img {
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 14px;
  background: rgba(19, 35, 63, 0.05);
}

.admin-visit-photo__meta {
  display: grid;
  gap: 4px;
}

.admin-visit-photo__meta strong {
  color: var(--admin-ink);
  word-break: break-word;
}

@media (max-width: 760px) {
  .admin-visit-slot {
    grid-template-columns: 1fr;
  }
}
