:root {
  --ink: #111827;
  --muted: #64748b;
  --primary: #0b1f3a;
  --primary-2: #12385f;
  --secondary: #2563eb;
  --accent: #00a88e;
  --warning: #f59e0b;
  --success: #16a34a;
  --danger: #dc2626;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-2: #eef4fb;
  --border: #e2e8f0;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
  --radius: 8px;
  --container: 1180px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --phone-1: "0553 219 1710";
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.top-strip {
  color: #dce8f7;
  background: var(--primary);
  font-size: 13px;
}

.top-strip__inner,
.nav,
.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.top-strip__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-strip__inner span {
  white-space: nowrap;
}

.nav {
  display: grid;
  min-height: 72px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--secondary));
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.23);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.nav-links a {
  border-radius: 8px;
  color: #25334a;
  font-size: 14px;
  font-weight: 650;
  padding: 10px 12px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--secondary);
  background: #eef4ff;
}

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

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--primary);
  background: #fff;
}

.button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 750;
  line-height: 1.1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button--primary {
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.24);
}

.button--dark {
  color: #fff;
  background: var(--primary);
}

.button--accent {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 168, 142, 0.2);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.button--light {
  border-color: var(--border);
  color: var(--primary);
  background: #fff;
}

.button--wide {
  width: 100%;
}

.button__badge {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100svh - 84px));
  overflow: hidden;
  color: #fff;
  background: var(--primary);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(11, 31, 58, 0.95) 0%, rgba(11, 31, 58, 0.76) 44%, rgba(11, 31, 58, 0.34) 100%),
    linear-gradient(0deg, rgba(11, 31, 58, 0.32), rgba(11, 31, 58, 0.06));
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: inherit;
  align-content: center;
  padding: 64px 0;
}

.hero__content {
  width: min(680px, 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 74px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero p {
  width: min(650px, 100%);
  margin: 22px 0 0;
  color: #dbe7f5;
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__proof {
  display: grid;
  width: min(620px, 100%);
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
}

.proof-item {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.proof-item strong {
  display: block;
  color: #fff;
  font-size: 26px;
  line-height: 1;
}

.proof-item span {
  color: #cbd8e8;
  font-size: 13px;
}

.section {
  padding: 84px 0;
}

.section--tight {
  padding: 58px 0;
}

.section--white {
  background: #fff;
}

.section--dark {
  color: #fff;
  background: var(--primary);
}

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

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.04;
  letter-spacing: 0;
}

.section--dark .section-heading h2,
.section--dark .section-heading p {
  color: #fff;
}

.section h1,
.section h2,
.quote-panel h2,
.service-panel h2 {
  margin-top: 0;
  color: var(--primary);
  letter-spacing: 0;
}

.section h1 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
}

.section-heading p {
  max-width: 520px;
  margin: 10px 0 0;
  color: var(--muted);
}

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

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

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

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

.service-card,
.product-card,
.value-card,
.blog-card,
.contact-card,
.stat-card,
.filter-panel,
.quote-panel,
.service-panel,
.detail-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.service-card,
.value-card,
.contact-card,
.stat-card,
.quote-panel,
.service-panel,
.detail-panel {
  padding: 24px;
}

.service-card h3,
.value-card h3,
.contact-card h3,
.blog-card h3,
.detail-panel h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 20px;
  line-height: 1.2;
}

.service-card p,
.value-card p,
.contact-card p,
.blog-card p,
.detail-panel p {
  margin: 0;
  color: var(--muted);
}

.icon-box {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: var(--secondary);
  background: #eef4ff;
  font-weight: 900;
}

.brand-strip {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: #fff;
}

.brand-strip__track {
  position: relative;
  width: 100%;
  padding: 18px 0;
}

.brand-strip__track::before,
.brand-strip__track::after {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  width: 90px;
  content: "";
  pointer-events: none;
}

.brand-strip__track::before {
  left: 0;
  background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.brand-strip__track::after {
  right: 0;
  background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.brand-marquee {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 14px;
  animation: brand-scroll 34s linear infinite;
}

.brand-marquee:hover {
  animation-play-state: paused;
}

.brand-marquee span {
  display: inline-flex;
  min-width: 132px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 20px;
  color: #25334a;
  background: #f8fafc;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

@keyframes brand-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.product-card {
  display: grid;
  overflow: hidden;
}

.product-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eaf0f7;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border-radius: 999px;
  padding: 4px 9px;
  color: #334155;
  background: #eef2f7;
  font-size: 12px;
  font-weight: 750;
}

.tag--accent {
  color: #006c5d;
  background: #dff8f3;
}

.product-card h3 {
  margin: 0;
  color: var(--primary);
  font-size: 18px;
  line-height: 1.22;
}

.product-card__meta {
  color: var(--muted);
  font-size: 14px;
}

.product-card__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 4px;
}

.product-card__actions .button {
  min-width: 0;
  padding-inline: 10px;
}

.button.is-selected,
.js-toggle-compare.is-selected {
  border-color: rgba(0, 168, 142, 0.32);
  color: #064e44;
  background: #dff8f3;
}

.product-card__actions .js-toggle-compare {
  grid-column: 1 / -1;
}

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

.stat-card strong {
  display: block;
  color: var(--secondary);
  font-size: 34px;
  line-height: 1;
}

.stat-card span {
  color: var(--muted);
  font-weight: 650;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-radius: 8px;
  padding: 32px;
  color: #fff;
  background: var(--primary);
  box-shadow: var(--shadow);
}

.action-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.action-band h2,
.action-band p {
  margin: 0;
}

.action-band p {
  margin-top: 8px;
  color: var(--muted);
}

.action-band__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

.process-step {
  position: relative;
  min-height: 210px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--secondary);
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 19px;
}

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

.corporate-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.corporate-split h2 {
  max-width: 720px;
  margin: 0;
  color: var(--primary);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

.corporate-split p {
  max-width: 700px;
  color: var(--muted);
}

.corporate-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.corporate-checks span {
  border: 1px solid rgba(0, 168, 142, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: #056355;
  background: #e4fbf6;
  font-size: 13px;
  font-weight: 800;
}

.corporate-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(238, 244, 255, 0.86), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow);
}

.corporate-panel__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.corporate-panel__header strong,
.corporate-panel__header small {
  display: block;
}

.corporate-panel__header small {
  color: var(--muted);
  font-weight: 650;
}

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

.corporate-metrics div {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

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

.corporate-metrics strong {
  color: var(--secondary);
  font-size: 26px;
  line-height: 1;
}

.corporate-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

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

.process-card {
  position: relative;
  min-height: 230px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.process-card span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.process-card h3 {
  margin: 18px 0 8px;
  color: var(--primary);
  font-size: 19px;
}

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

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cta-band p {
  margin-top: 8px;
  color: #cbd8e8;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--primary);
}

.service-detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

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

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

.service-list li {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  color: #334155;
  font-weight: 650;
}

.side-panel {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
}

.side-panel h2,
.side-panel p {
  margin: 0;
}

.page-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}

.page-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(11, 31, 58, 0.92), rgba(11, 31, 58, 0.65));
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  padding: 82px 0 74px;
}

.page-hero p {
  max-width: 710px;
  margin: 18px 0 0;
  color: #dbe7f5;
  font-size: 18px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: #bcd0e6;
  font-size: 14px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 110px;
  padding: 18px;
}

.filter-panel h2 {
  margin: 0 0 18px;
  color: var(--primary);
  font-size: 18px;
}

.field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.field label {
  color: #334155;
  font-size: 13px;
  font-weight: 800;
}

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

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

.input:focus,
.select:focus,
.textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.catalog-toolbar p {
  margin: 0;
  color: var(--muted);
  font-weight: 650;
}

.compare-panel {
  display: grid;
  gap: 16px;
}

.compare-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.compare-actions strong,
.compare-actions span {
  display: block;
}

.compare-actions strong {
  color: var(--primary);
}

.compare-actions span {
  color: var(--muted);
  font-size: 14px;
}

.compare-actions > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--border);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--primary);
  background: #f8fafc;
}

.compare-table td {
  color: #334155;
}

.compare-table td strong,
.compare-table td span {
  display: block;
}

.compare-table td span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 28px;
  align-items: start;
}

.detail-gallery {
  overflow: hidden;
  border-radius: 8px;
  background: #eaf0f7;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.detail-summary h1 {
  margin: 0;
  color: var(--primary);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.02;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border-bottom: 1px solid var(--border);
  padding: 13px 0;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 36%;
  color: #334155;
  font-size: 14px;
}

.spec-table td {
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

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

.faq-item p {
  margin: 0;
  border-top: 1px solid var(--border);
  padding: 0 20px 18px;
  color: var(--muted);
}

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

.reference-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.reference-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.reference-card--featured {
  grid-row: span 2;
}

.reference-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.reference-card--featured img {
  aspect-ratio: 4 / 3;
}

.reference-card__body {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.reference-card h3,
.reference-card p {
  margin: 0;
}

.reference-card h3 {
  color: var(--primary);
  font-size: 19px;
  line-height: 1.22;
}

.reference-card p {
  color: var(--muted);
}

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

.reference-meta span {
  border-radius: 999px;
  padding: 6px 9px;
  color: #064e44;
  background: #e4fbf6;
  font-size: 12px;
  font-weight: 800;
}

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

.reference-summary div {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.reference-summary strong,
.reference-summary span {
  display: block;
}

.reference-summary strong {
  color: var(--primary);
  font-size: 17px;
}

.reference-summary span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-card__body {
  padding: 16px;
}

.gallery-card h3,
.gallery-card p {
  margin: 0;
}

.gallery-card p {
  margin-top: 6px;
  color: var(--muted);
}

.timeline-item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  color: var(--muted);
}

.timeline-dot {
  width: 14px;
  height: 14px;
  margin-top: 5px;
  border: 3px solid #cbd5e1;
  border-radius: 50%;
}

.timeline-item.is-active .timeline-dot {
  border-color: var(--accent);
  background: var(--accent);
}

.timeline-item strong {
  display: block;
  color: var(--primary);
}

.service-result {
  display: none;
  margin-top: 18px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}

.service-result.is-visible {
  display: block;
}

.quote-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.quote-item img {
  width: 92px;
  height: 70px;
  border-radius: 8px;
  object-fit: cover;
}

.quote-item h3 {
  margin: 0 0 4px;
  color: var(--primary);
  font-size: 17px;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 24px;
  align-items: start;
}

.builder-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
}

.builder-panel + .builder-panel {
  margin-top: 18px;
}

.builder-panel h2,
.builder-summary h2 {
  margin: 0 0 16px;
  color: var(--primary);
}

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

.choice-card {
  display: grid;
  gap: 8px;
  min-height: 116px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  text-align: left;
  background: #fff;
}

.choice-card.is-selected {
  border-color: var(--secondary);
  background: #eef4ff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.choice-card strong {
  color: var(--primary);
  font-size: 16px;
}

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

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

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

.check-row {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: #334155;
  background: #fff;
  font-weight: 750;
}

.builder-summary {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  max-height: calc(100svh - 128px);
  overflow-y: auto;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

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

.summary-list li {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
  color: #334155;
  font-size: 14px;
}

.system-score {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(0, 168, 142, 0.22);
  border-radius: 8px;
  padding: 14px;
  background: #e4fbf6;
}

.system-score strong,
.system-score span {
  display: block;
}

.system-score strong {
  color: #064e44;
}

.system-score span {
  color: #0f766e;
  font-size: 13px;
  font-weight: 700;
}

.system-stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 0;
  white-space: nowrap;
}

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

.pc-result-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: #f8fafc;
}

.pc-result-card span,
.pc-result-card strong {
  display: block;
}

.pc-result-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pc-result-card strong {
  margin-top: 5px;
  color: var(--primary);
  font-size: 17px;
  line-height: 1.2;
}

.pc-fit-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  background: #fff;
}

.pc-fit-panel h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 16px;
}

.pc-fit-panel ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-fit-panel li {
  color: #334155;
  font-size: 14px;
  line-height: 1.35;
}

.pc-fit-panel li strong,
.pc-fit-panel li span {
  display: block;
}

.pc-fit-panel li strong {
  color: var(--primary);
}

.pc-fit-panel li span {
  color: var(--muted);
}

.fps-panel {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  background: #f8fafc;
}

.fps-panel h3 {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 16px;
}

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

.fps-panel li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.summary-list strong {
  color: var(--primary);
}

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

.compatibility-list li {
  border-radius: 8px;
  padding: 10px 12px;
  color: #14532d;
  background: #dcfce7;
  font-size: 14px;
  font-weight: 700;
}

.compatibility-list li.is-warning {
  color: #7c2d12;
  background: #ffedd5;
}

.compatibility-list li.is-danger {
  color: #7f1d1d;
  background: #fee2e2;
}

.suggestion-list,
.part-detail-list,
.comparison-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.suggestion-list li,
.part-detail-list li,
.comparison-list li {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}

.suggestion-list strong,
.part-detail-list strong,
.comparison-list strong {
  display: block;
  color: var(--primary);
}

.suggestion-list span,
.part-detail-list span,
.comparison-list span {
  color: var(--muted);
  font-size: 14px;
}

.suggestion-list button {
  margin-top: 10px;
}

.report-sheet {
  display: none;
}

@media print {
  body > *:not(.report-sheet) {
    display: none !important;
  }

  .report-sheet {
    display: block;
    padding: 28px;
    color: #111827;
    background: #fff;
    font-family: Arial, sans-serif;
  }

  .report-sheet h1,
  .report-sheet h2 {
    color: #0b1f3a;
  }

  .report-sheet table {
    width: 100%;
    border-collapse: collapse;
  }

  .report-sheet th,
  .report-sheet td {
    border-bottom: 1px solid #d1d5db;
    padding: 9px;
    text-align: left;
  }
}

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

.preset-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}

.preset-card h3,
.preset-card p {
  margin: 0;
}

.preset-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.quote-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 34px 42px 34px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.qty-control button {
  height: 36px;
  border: 0;
  background: #f8fafc;
  font-weight: 900;
}

.qty-control span {
  text-align: center;
  font-weight: 800;
}

.remove-button {
  width: 38px;
  height: 38px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: var(--danger);
  background: #fff5f5;
  font-weight: 900;
}

.empty-state {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  color: var(--muted);
  background: #fff;
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  margin-top: 24px;
  align-items: start;
}

.contact-card a {
  color: var(--primary);
  font-weight: 800;
}

.camera-discovery-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

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

.camera-form h2,
.camera-form__wide {
  grid-column: 1 / -1;
}

.map-embed {
  min-height: 420px;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #dfe8f3;
}

.map-embed iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  color: #d7e4f3;
  background: #07172b;
}

.floating-actions {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 16px;
  color: #fff;
  background: var(--primary);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
  font-size: 14px;
  font-weight: 850;
}

.floating-actions a:nth-child(1) {
  background: var(--accent);
}

.floating-actions a:nth-child(2) {
  background: var(--secondary);
}

.floating-actions a:nth-child(3) {
  background: var(--primary);
}

.mobile-contact-bar {
  display: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr 0.9fr 1fr;
  gap: 22px;
  padding: 34px 0;
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 12px;
  color: #fff;
}

.site-footer p,
.site-footer li {
  color: #aebdd0;
  font-size: 14px;
}

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

.footer-brand p + p {
  margin-top: 18px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.footer-actions a {
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 8px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
}

.footer-legal {
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  padding: 18px 0;
  color: #8fa4bd;
  font-size: 14px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: min(360px, calc(100vw - 36px));
  transform: translateY(16px);
  border: 1px solid rgba(0, 168, 142, 0.24);
  border-radius: 8px;
  padding: 14px 16px;
  color: #064e44;
  background: #e4fbf6;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

@media (max-width: 1040px) {
  .nav {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 106px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px;
    background: #fff;
    box-shadow: var(--shadow);
  }

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

  .nav-actions {
    display: none;
  }

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

  .catalog-layout,
  .product-detail,
  .contact-layout,
  .camera-discovery-layout,
  .service-detail-layout,
  .builder-layout,
  .corporate-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

  .side-panel {
    position: static;
  }

  .builder-summary {
    position: static;
  }

}

@media (max-width: 760px) {
  .top-strip__inner {
    justify-content: center;
  }

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

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 640px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero__proof,
  .grid--2,
  .grid--3,
  .grid--4,
  .stats,
  .gallery-grid,
  .reference-grid,
  .reference-summary,
  .service-list,
  .choice-grid,
  .parts-grid,
  .camera-form,
  .builder-tools,
  .preset-grid,
  .process-steps,
  .process-grid,
  .corporate-metrics,
  .product-card__actions,
  .cta-band,
  .action-band {
    grid-template-columns: 1fr;
  }

  .action-band__buttons {
    justify-content: stretch;
  }

  .action-band__buttons .button {
    width: 100%;
  }

  .cta-band__actions {
    justify-content: stretch;
  }

  .cta-band__actions .button {
    width: 100%;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    display: block;
  }

  .brand-strip__track {
    padding: 14px 0;
  }

  .brand-strip__track::before,
  .brand-strip__track::after {
    width: 42px;
  }

  .brand-marquee {
    gap: 10px;
  }

  .brand-marquee span {
    min-width: 118px;
    min-height: 48px;
    padding: 10px 16px;
    font-size: 14px;
  }

  .catalog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-item {
    grid-template-columns: 72px 1fr;
  }

  .quote-item img {
    width: 72px;
    height: 58px;
  }

  .quote-item__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
  }

  .floating-actions {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 65;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18);
    backdrop-filter: blur(10px);
  }

  .mobile-contact-bar a {
    display: grid;
    min-height: 50px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--primary);
    text-align: center;
    line-height: 1.1;
  }

  .mobile-contact-bar a:nth-child(2) {
    background: var(--accent);
  }

  .mobile-contact-bar a:nth-child(3) {
    background: var(--secondary);
  }

  .mobile-contact-bar strong {
    font-size: 13px;
  }

  .mobile-contact-bar span {
    font-size: 11px;
    font-weight: 700;
    opacity: 0.86;
  }

  body {
    padding-bottom: 82px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
