@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --ink: #202832;
  --heading: #171d24;
  --text: #56616d;
  --muted: #56616d;
  --subtle: #7b8794;
  --line: #e2e8ef;
  --soft: #f6f8fb;
  --paper: #ffffff;
  --brand: #0a5f8f;
  --brand-dark: #123c59;
  --brand-soft: #eaf4f9;
  --accent: #b8872f;
  --accent-soft: #fff4df;
  --shadow: 0 18px 45px rgba(20, 32, 43, 0.12);
  --site-width: 1180px;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2"),
    url("../fonts/fontawesome-webfont.woff") format("woff"),
    url("../fonts/fontawesome-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

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

main p,
main li,
main small {
  color: var(--text);
}

::selection {
  background: var(--brand);
  color: #fff;
}

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

.topbar {
  background: #f1f5f8;
  color: var(--text);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}

.topbar .container,
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar .container {
  min-height: 44px;
}

.topbar span,
.top-links a,
.footer-grid > div:first-child p,
.contact-line {
  position: relative;
}

.topbar span,
.top-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.topbar span::before,
.top-links a::before,
.footer-grid > div:first-child p::before,
.contact-line::before {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "FontAwesome";
  color: var(--brand);
}

.topbar span::before {
  content: "\f041";
}

.top-links a[href^="tel"]::before {
  content: "\f095";
}

.top-links a[href^="mailto"]::before {
  content: "\f0e0";
}

.top-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(227, 232, 238, 0.8);
  backdrop-filter: blur(14px);
}

.logo {
  display: flex;
  align-items: center;
  min-height: 82px;
}

.logo img {
  width: 290px;
  height: auto;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font-size: 24px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 12px 14px;
  color: #303944;
  font-weight: 700;
  border-radius: 6px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: var(--brand-soft);
}

.hero {
  position: relative;
  min-height: 590px;
  color: #fff;
  overflow: hidden;
  background: #172432;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(9, 20, 32, 0.82), rgba(9, 20, 32, 0.36) 58%, rgba(9, 20, 32, 0.14));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 590px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #d9ecf8;
  font-size: 17px;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  font-family: "Sora", "Outfit", Arial, Helvetica, sans-serif;
  line-height: 1.12;
}

.hero h1,
.page-title h1,
.page-title p,
.footer h3 {
  color: inherit;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.14;
}

.hero p {
  max-width: 620px;
  margin: 22px 0 30px;
  color: #e8eef4;
  font-size: 18px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 95, 143, 0.24);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.45);
}

.section {
  padding: 72px 0;
}

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

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

.section-head h2,
.page-title h1 {
  color: var(--heading);
  font-size: clamp(26px, 3.2vw, 38px);
}

.section-head p,
.page-title p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: stretch;
}

.experience-section {
  background: #f4f6f8;
  overflow: hidden;
}

.experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.experience-heading {
  margin-bottom: 22px;
}

.experience-heading h2 {
  max-width: 100%;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.26;
}

.experience-copy .lead {
  max-width: 740px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.experience-title {
  margin-top: 28px;
  font-size: clamp(22px, 2.5vw, 30px);
}

.experience-section .feature-list {
  gap: 6px;
  margin-top: 12px;
  color: var(--text);
  font-size: 17px;
  list-style: circle;
  padding-left: 34px;
}

.experience-section .feature-list li {
  padding-left: 0;
}

.experience-section .feature-list li::before {
  display: none;
}

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

.partner-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 118px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18, 33, 43, 0.08);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 86px;
  height: 86px;
  padding: 10px;
  border-radius: 18px;
  background: #f8fafc;
}

.partner-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}

.partner-item strong {
  display: block;
  color: var(--heading);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.1;
  white-space: nowrap;
}

.partner-item small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 15px;
}

.panels-visual {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
}

.panels-visual img {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(18, 33, 43, 0.14));
}

.lead {
  color: var(--muted);
  font-size: 17px;
}

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

.feature-list li,
.reference-list li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before,
.reference-list li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.partner-panel {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.process-panel {
  position: relative;
  gap: 14px;
  padding: 24px;
  align-content: space-between;
  min-height: 100%;
  color: #dce7ef;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 60, 89, 0.96), rgba(17, 26, 34, 0.98)),
    radial-gradient(circle at 82% 18%, rgba(184, 135, 47, 0.26), transparent 34%);
}

.process-panel::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06));
  background-size: 34px 34px, auto;
  content: "";
  opacity: 0.42;
}

.process-panel::after {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(241, 210, 142, 0.28);
  border-radius: 50%;
  content: "";
}

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

.process-kicker {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(241, 210, 142, 0.28);
  border-radius: 999px;
  color: #f1d28e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.process-panel h3 {
  color: #fff;
  font-size: 25px;
}

.process-panel p {
  margin: 0;
  color: #c7d5df;
}

.process-steps {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.process-steps::before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 26px;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(255, 255, 255, 0.12));
  content: "";
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 62px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.process-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-family: "Sora", "Outfit", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1;
}

.process-step span {
  color: #eef5f9;
  font-weight: 600;
  line-height: 1.35;
}

.sectors-panel {
  gap: 13px;
  margin: 28px 0 30px;
  padding: 22px;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, #ffffff, #f8fbfd),
    radial-gradient(circle at 92% 12%, rgba(184, 135, 47, 0.12), transparent 30%);
  box-shadow: 0 18px 42px rgba(20, 32, 43, 0.1);
}

.sectors-panel::before {
  background:
    linear-gradient(135deg, rgba(10, 95, 143, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, transparent, rgba(184, 135, 47, 0.08));
  background-size: 34px 34px, auto;
  opacity: 1;
}

.sectors-panel::after {
  border-color: rgba(10, 95, 143, 0.12);
}

.sectors-panel .process-kicker {
  border-color: rgba(184, 135, 47, 0.24);
  background: var(--accent-soft);
  color: #8f6521;
  font-size: 12px;
}

.sectors-panel h3 {
  color: var(--heading);
  font-size: 23px;
}

.sectors-panel .process-step {
  min-height: 58px;
  padding: 9px 11px;
  border-color: var(--line);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(20, 32, 43, 0.06);
}

.sectors-panel .process-step strong {
  width: 42px;
  height: 42px;
  background: var(--brand);
  font-size: 16px;
}

.sectors-panel .process-step span {
  color: var(--text);
}

.sectors-panel .process-steps::before {
  background: linear-gradient(var(--brand), rgba(10, 95, 143, 0.12));
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.partner-card,
.product-card,
.sidebar,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(18, 33, 43, 0.08);
}

.partner-card {
  padding: 16px;
}

.partner-card img {
  width: 100%;
  height: 82px;
  object-fit: contain;
}

.partner-card h3 {
  margin-top: 12px;
  font-size: 20px;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.stat {
  padding: 18px;
  border-left: 4px solid var(--brand);
  background: #f8fbfd;
}

.stat strong {
  display: block;
  color: var(--brand-dark);
  font-size: 28px;
  line-height: 1;
}

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

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  position: relative;
  min-height: 100%;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eef3f7;
}

.product-body {
  padding: 18px;
}

.product-body h3 {
  font-size: 19px;
  color: var(--heading);
}

.product-body p {
  margin: 8px 0 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding: 62px 0 58px;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(14, 38, 56, 0.96) 0%, rgba(18, 60, 89, 0.88) 48%, rgba(18, 60, 89, 0.52) 100%),
    url("../images/slider0.webp") center/cover;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 100%),
    linear-gradient(90deg, transparent 0%, rgba(184, 135, 47, 0.2) 100%);
  background-size: 38px 38px, auto;
  content: "";
  opacity: 0.55;
}

.page-hero::after {
  position: absolute;
  right: max(20px, calc((100vw - var(--site-width)) / 2));
  bottom: -58px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  content: "";
}

.page-title {
  position: relative;
  z-index: 1;
  width: min(var(--site-width), 100%);
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.page-title h1,
.page-title p {
  color: #fff;
}

.page-title h1 {
  margin-bottom: 14px;
}

.page-title p {
  margin-right: auto;
  margin-left: auto;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.notice {
  margin: 0 0 18px;
  padding: 14px 18px;
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  color: #60451d;
  font-weight: 700;
}

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

.sidebar {
  position: sticky;
  top: 112px;
  padding: 18px;
}

.side-nav {
  display: grid;
  gap: 9px;
}

.side-nav a {
  min-height: 64px;
  padding: 12px 14px;
  border-radius: 6px;
  background: #f2f6f9;
  color: var(--ink);
  font-weight: 800;
}

.side-nav a span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.35;
}

.side-nav a:hover,
.side-nav a.active {
  background: var(--brand-dark);
  color: #fff;
}

.side-nav a:hover span,
.side-nav a.active span {
  color: #d7e7f2;
}

.ral-box {
  margin: 18px 0;
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fbfd, var(--brand-soft));
  border: 1px solid var(--line);
}

.ral-box a {
  display: block;
}

.ral-pdf a {
  position: relative;
  min-height: 58px;
  padding-left: 58px;
}

.ral-pdf a::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 52px;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent);
  content: "\f1c1";
  font-family: "FontAwesome";
  font-size: 24px;
}

.ral-box strong {
  display: block;
  color: var(--brand-dark);
  font-size: 18px;
}

.ral-box span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.tags a,
.tags span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
}

.tags a:hover {
  border-color: rgba(184, 135, 47, 0.42);
  background: var(--accent-soft);
  color: #60451d;
}

.reference-columns {
  position: relative;
  padding: 0;
}

.reference-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 36px;
  row-gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.reference-list li {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 12px 14px 12px 30px;
  border-bottom: 1px solid rgba(226, 232, 239, 0.9);
  border-radius: 6px;
  color: var(--text);
  background: linear-gradient(90deg, rgba(234, 244, 249, 0.48), transparent 74%);
  transition: color 160ms ease, padding-left 160ms ease, background 160ms ease, border-color 160ms ease;
}

.reference-list li::before {
  display: none;
}

.reference-list li::after {
  position: absolute;
  top: 50%;
  left: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 0 0 4px rgba(10, 95, 143, 0.1);
  content: "";
  opacity: 0.9;
  transform: translateY(-50%);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.reference-list li:hover {
  padding-left: 34px;
  border-color: rgba(10, 95, 143, 0.18);
  background: linear-gradient(90deg, rgba(234, 244, 249, 0.95), rgba(255, 255, 255, 0.7));
  color: var(--brand-dark);
}

.reference-list li:hover::after {
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 0 0 5px rgba(10, 95, 143, 0.16);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}

.map-frame {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-card {
  height: 100%;
  min-height: 420px;
  padding: 24px;
}

.contact-card h2 {
  margin-bottom: 14px;
  font-size: 24px;
}

.contact-card p {
  margin: 10px 0;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 18px;
}

.contact-line {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--muted);
}

.contact-line::before {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--brand-soft);
  font-size: 17px;
}

.contact-line.address::before {
  content: "\f041";
}

.contact-line.phone::before {
  content: "\f095";
}

.contact-line.users::before {
  content: "\f0c0";
}

.contact-line.fax::before {
  content: "\f1ac";
}

.contact-line.mail::before {
  content: "\f0e0";
}

.contact-line strong {
  display: block;
  margin-bottom: 2px;
  color: var(--heading);
}

.local-seo-hero {
  background:
    linear-gradient(110deg, rgba(17, 34, 48, 0.92), rgba(10, 95, 143, 0.72)),
    url("../images/slider0.webp") center/cover;
}

.local-seo-grid,
.local-process {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: stretch;
}

.local-seo-copy h2 {
  margin: 10px 0 18px;
  max-width: 760px;
  font-size: clamp(28px, 3vw, 42px);
}

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

.local-seo-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  border: 1px solid rgba(10, 95, 143, 0.16);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f3f8fb);
  box-shadow: var(--shadow);
}

.local-seo-card h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.local-seo-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.local-seo-card li {
  position: relative;
  padding-left: 24px;
  font-weight: 600;
}

.local-seo-card li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(10, 95, 143, 0.1);
}

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

.local-service-card {
  min-height: 250px;
}

.local-service-card .product-body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-start;
}

.local-service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand);
  font-weight: 800;
}

.local-process {
  align-items: center;
}

.local-process .process-panel {
  min-height: auto;
}

.faq-section {
  max-width: var(--site-width);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(20, 32, 43, 0.07);
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
}

.footer {
  background: #111a22;
  color: #dce5ec;
  padding: 54px 0 24px;
}

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

.footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 20px;
}

.footer p,
.footer a {
  color: #c8d2dc;
}

.footer a:hover {
  color: #fff;
}

.footer-grid > div:first-child p {
  padding-left: 30px;
}

.footer-grid > div:first-child p::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
}

.footer-grid > div:first-child p:first-of-type::before {
  content: "\f041";
}

.footer-grid > div:first-child p:nth-of-type(2)::before {
  content: "\f095";
}

.footer-grid > div:first-child p:nth-of-type(3)::before {
  content: "\f0e0";
}

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

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9facb7;
  font-size: 14px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(8, 15, 22, 0.82);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-height: 86vh;
  border-radius: 8px;
  background: #fff;
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 920px) {
  .topbar .container {
    min-height: auto;
    align-items: center;
    padding: 8px 0;
    gap: 12px;
    font-size: 13px;
  }

  .topbar span {
    min-width: 0;
    max-width: 44%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-links {
    flex: 1;
    justify-content: flex-end;
    gap: 10px;
    min-width: 0;
  }

  .top-links a {
    gap: 5px;
    white-space: nowrap;
  }

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

  .nav-links {
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 36px rgba(18, 33, 43, 0.12);
  }

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

  .intro-grid,
  .experience-grid,
  .content-layout,
  .contact-grid,
  .local-seo-grid,
  .local-process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

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

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

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

  .topbar {
    font-size: 13px;
  }

  .topbar .container {
    justify-content: center;
    padding: 7px 0;
  }

  .topbar span,
  .top-links a:nth-child(2) {
    display: none;
  }

  .top-links {
    width: 100%;
    flex: initial;
    justify-content: center;
    gap: 8px;
  }

  .top-links a {
    min-height: 30px;
    padding: 5px 9px;
    border: 1px solid rgba(10, 95, 143, 0.14);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
  }

  .logo img {
    width: 220px;
  }

  .hero,
  .hero-content {
    min-height: 520px;
  }

  .section {
    padding: 48px 0;
  }

  .partner-grid,
  .partner-list,
  .stats,
  .products-grid,
  .local-service-grid,
  .product-list {
    grid-template-columns: 1fr;
  }

  .partner-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 14px;
  }

  .partner-logo {
    width: 88px;
    height: 88px;
  }

  .reference-list {
    grid-template-columns: 1fr;
  }
}
