:root {
  --orange: #F15B2B;
  --orange-dark: #F15B2B;
  --orange-grad: radial-gradient(120% 120% at 26% 10%, #FBB042 0%, #F89521 52%, #F15B2B 100%);
  --orange-soft: rgba(241, 91, 43, .14);
  --ink: #1b1b1b;
  --muted: #969CA8;
  --bg: #00161F;
  --bg-soft: #002533;
  --surface: #142D3B;
  --surface-2: #1B3A48;
  --text-on-dark: #FFFFFF;
  --muted-dark: #DADADA;
  --line: rgba(255, 255, 255, .10);
  --radius: 20px;
  --shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-on-dark);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
}
body.menu-open, body.modal-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
:focus-visible { outline: 3px solid rgba(242, 101, 34, .35); outline-offset: 3px; }

.wrap {
  width: min(1300px, calc(100% - 48px));
  margin: 0 auto;
}

.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 22, 31, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
  color: #fff;
}
.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}
.brand img { width: auto; height: 40px; object-fit: contain; }
.place {
  display: grid;
  gap: 0;
  line-height: 1.05;
}
.place span:first-child {
  font-weight: 800;
  letter-spacing: 0;
}
.place span:last-child {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.main-nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.nav-right .nav-cta { display: none; }
.site .brand .place span:last-child { display: block; }
.site .brand .place span:first-child { font-size: 22px; }
.main-nav a:hover,
.main-nav a.active {
  color: #fff;
  background: rgba(241, 91, 43, .16);
}
.mobile-menu-actions,
.mobile-lang-switch { display: none; }
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.lang-switch {
  display: inline-flex;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}
.lang-switch button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 7px 9px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .7);
}
.lang-switch button.active {
  color: #fff;
  background: var(--orange);
}
.phone-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 11px 18px;
  border: 1px solid rgba(241, 91, 43, .55);
  border-radius: 999px;
  background: rgba(241, 91, 43, .08);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.phone-chip::before {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 250px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .3px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); background: #d94a1f; }
.btn.ghost {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, .35);
}
.btn.ghost:hover { background: rgba(255, 255, 255, .08); }
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  cursor: pointer;
  place-items: center;
}
.burger span {
  width: 18px;
  height: 2px;
  background: #fff;
  display: block;
  margin: 3px 0;
  border-radius: 999px;
}

.hero {
  padding: 62px 0 44px;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 44px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}
/* Figma layout has no orange section descriptors; keep only the hero eyebrow */
.section .eyebrow { display: none; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(34px, 3.85vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.hero-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 32px 0 0;
}
.metrics div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.metrics dt {
  font-size: 30px;
  line-height: 1;
  color: var(--orange-dark);
  font-weight: 900;
}
.metrics dd {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.hero-media {
  position: relative;
  margin: 0;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.hero-media figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(27, 27, 27, .82);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}
.mobile-dots { display: none; }

.strip {
  background: #001016;
  color: #fff;
  font-weight: 700;
}
.strip .wrap {
  padding: 14px 0;
  text-align: center;
}
.strip .wrap span + span { display: none; }
.section { padding: 82px 0; }
.section.soft { background: var(--bg-soft); }
.section-head {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}
.section-head h2,
.about-grid h2,
.cta-band h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.section-head p:not(.eyebrow),
.lead,
.page-hero p:not(.eyebrow),
.cta-band p {
  color: var(--muted-dark);
  font-size: 17px;
}

.service-grid {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.mobile-service-list { display: none; }
.service-card,
.feature-card,
.case-card,
.wide-service,
.contact-card,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.service-card {
  display: grid;
  grid-template-rows: 220px 1fr;
  overflow: hidden;
}
.service-card img,
.case-card img,
.wide-service img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-card div { padding: 20px; }
.service-cta { display: none; }
.service-card h3,
.feature-card h3,
.case-card h3,
.wide-service h2,
.contact-card h2 {
  margin: 0 0 8px;
  line-height: 1.18;
  font-size: 20px;
}
.service-card p,
.feature-card p,
.wide-service p,
.contact-card p {
  margin: 0;
  color: var(--muted-dark);
}
.section-action { margin-top: 32px; text-align: center; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  padding: 24px;
}
.feature-toggle { display: none; }
.feature-card img {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  padding: 11px;
  border-radius: 999px;
  background: rgba(241, 91, 43, .12);
  border: 1px solid rgba(241, 91, 43, .35);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(380px, 1.05fr);
  gap: 44px;
  align-items: stretch;
}
.about-grid .lead { margin: 18px 0 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 28px;
}
.stats-grid div {
  position: relative;
  padding: 4px 0 4px 22px;
}
.stats-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
}
.stats-grid strong {
  display: block;
  color: var(--orange-dark);
  font-size: 28px;
  line-height: 1;
}
.stats-grid span {
  display: block;
  margin-top: 0;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
.about-media {
  position: relative;
  min-height: 100%;
  align-self: stretch;
}
.about-photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 18px;
}
.cert-photo {
  position: absolute;
  left: -16px;
  bottom: -44px;
  width: min(250px, 46%);
  border: 8px solid #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  background: #fff;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.case-card {
  overflow: hidden;
}
.case-card img {
  height: 230px;
}
.case-card h3 {
  padding: 18px;
  margin: 0;
}
.cases-contact-btn { display: none; }
.logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 28px 14px;
  padding: 40px 48px;
  border-radius: var(--radius);
  background: #fff;
}
.marquee-clone { display: none; }
.logo-grid img {
  width: 100%;
  height: 90px;
  object-fit: contain;
  padding: 0 12px;
}

.cta-section { padding-top: 0; }
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
  padding: 0;
  background: transparent;
  color: #fff;
}
.cta-band .eyebrow { color: var(--orange); }
.cta-band p { color: rgba(255,255,255,.76); }
.partners .section-head h2 { text-transform: none; }
.brand-word {
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}
.cta-contacts {
  display: grid;
  gap: 9px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.84);
}
.cta-contacts a {
  color: #fff;
  font-size: 20px;
  font-weight: 900;
}
.cta-contacts span {
  color: rgba(255,255,255,.72);
}
.lead-form {
  display: grid;
  gap: 14px;
  padding: 32px;
  color: var(--ink);
  background: #fff;
  border-color: transparent;
}
.lead-form h2 {
  margin: 0 0 6px;
  color: var(--ink);
}
.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1.5px solid #d9dde4;
  border-radius: 250px;
  padding: 16px 22px;
  background: #fbfbfc;
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(0,0,0,.02);
}
.lead-form textarea { border-radius: 22px; }
.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: #5f6673;
  opacity: 1;
}
.lead-form input:focus,
.lead-form textarea:focus {
  border-color: #F15B2B;
  background: #fff;
}
.lead-form textarea { resize: vertical; }
.lead-form .btn[type="submit"] {
  width: 100%;
  margin-top: 16px;
  padding-left: 40px;
  padding-right: 40px;
}
.lead-form .btn[type="submit"]:disabled {
  cursor: progress;
  opacity: .72;
}
.form-note,
.cta-band .lead-form .form-note {
  margin: 0;
  color: #4a5160;
  font-size: 13px;
  line-height: 1.45;
}
.form-status {
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-weight: 750;
}
.form-status.error {
  background: #fff1f1;
  color: #b42318;
}

.page-hero {
  padding: 70px 0 54px;
  background: var(--bg-soft);
}
.page-hero .wrap {
  max-width: 900px;
  text-align: center;
}
.service-list {
  display: grid;
  gap: 16px;
}
.wide-service {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 210px;
  overflow: hidden;
}
.wide-service img {
  min-height: 210px;
}
.wide-service div {
  padding: 26px;
  align-self: center;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1.2fr);
  gap: 20px;
}
.contact-card {
  padding: 26px;
}
.contact-card a {
  display: block;
  margin: 10px 0;
  color: var(--orange-dark);
  font-size: 20px;
  font-weight: 850;
}
.contact-form {
  padding: 26px;
}

.footer {
  padding: 56px 0 28px;
  background: #00161F;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr .9fr;
  gap: 40px;
}
.footer .brand { color: #fff; }
.footer .place span:last-child { color: rgba(255,255,255,.62); }
.footer h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.footer a {
  display: block;
  margin: 8px 0;
}
.footer-contact-row { margin: 8px 0; }
.footer-contact-row span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.footer-contact-row p { margin: 6px 0 0; }
.social-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.social-row span { width: 100%; }
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(241, 91, 43, .5);
  border-radius: 999px;
  color: transparent;
  font-size: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
}
.social-link[href*="instagram"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F15B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='18' height='18' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.3' cy='6.7' r='1' fill='%23F15B2B' stroke='none'/%3E%3C/svg%3E");
}
.social-link[href*="facebook"] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23F15B2B'%3E%3Cpath d='M15.12 8.5H17V5.6h-2.36c-2.2 0-3.32 1.2-3.32 3.34V11H9v2.9h2.32V22h3.04v-8.1h2.34l.36-2.9h-2.7V9.3c0-.6.24-.8.8-.8z'/%3E%3C/svg%3E");
}
.social-link:hover { background-color: rgba(241, 91, 43, .12); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}
.footer-bottom a {
  display: inline-flex;
  margin: 0;
}
.powered-link,
.privacy-link {
  color: rgba(255,255,255,.78);
}
.powered-link {
  gap: 3px;
}
.powered-link strong {
  color: #fff;
}
.privacy-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  background: #00161F;
}
.legal-card {
  max-width: 900px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #142D3B;
}
.legal-card h1 {
  font-size: clamp(34px, 5vw, 54px);
}
.legal-card .lead {
  max-width: 760px;
}
.legal-updated {
  margin: 16px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}
.legal-section {
  margin-top: 28px;
}
.legal-section h2 {
  margin: 0 0 8px;
  font-size: 22px;
}
.legal-section p {
  margin: 0;
  color: rgba(255,255,255,.76);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0,0,0,.55);
}
.modal.open { display: flex; }
.modal-panel {
  position: relative;
  width: min(460px, 100%);
  border-radius: 18px;
  background: #fff;
  padding: 28px;
  color: var(--ink);
}
.modal-panel .lead-form {
  padding: 0;
  border: 0;
}
.modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}
.thanks-panel {
  width: min(680px, 100%);
  padding: 64px 40px 72px;
  background: #2D4553;
  color: #fff;
  text-align: center;
  border-radius: 16px;
}
.thanks-close {
  background: transparent;
  font-size: 22px;
}
.thanks-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.thanks-brand img { width: 44px; height: 44px; }
.thanks-brand span { font-size: 24px; font-weight: 800; }
.thanks-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .92);
}

/* ===== Figma desktop: nav dropdown ===== */
.nav-item { position: relative; display: inline-flex; align-items: center; }
.nav-caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 36px;
  margin-left: -4px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .82);
  cursor: pointer;
}
.nav-caret::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.nav-item.open .nav-caret::before { transform: translateY(1px) rotate(-135deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 320px;
  padding: 10px;
  background: #0a2230;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .45);
  z-index: 60;
}
/* invisible bridge over the gap so the menu stays open while the cursor moves to it */
.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 0;
  right: 0;
  height: 16px;
}
.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown { display: flex; }
.nav-dropdown a {
  padding: 11px 14px;
  border-radius: 10px;
  color: rgba(255, 255, 255, .85);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: rgba(241, 91, 43, .16); color: #fff; }

/* ===== Figma desktop: full-bleed hero ===== */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 96px 0 72px;
  background:
    linear-gradient(90deg, rgba(0,22,31,.94) 0%, rgba(0,22,31,.78) 36%, rgba(0,22,31,.30) 66%, rgba(0,22,31,.55) 100%),
    linear-gradient(180deg, rgba(0,22,31,.45) 0%, rgba(0,0,0,0) 28%),
    url("Alpassets/herobannermain.webp") center / cover no-repeat;
}
.hero-grid { display: block; }
.hero-copy { max-width: 760px; }
.hero .hero-media,
.hero .metrics,
.hero .hero-actions .ghost { display: none; }
.hero .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: .2px;
}
.hero .eyebrow::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--orange);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* ===== Figma desktop: services showcase (tabs + featured) ===== */
.service-showcase { display: block; }
.svc-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 32px;
  margin-bottom: 34px;
}
.svc-tab {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 4px 0 14px;
  color: rgba(255, 255, 255, .82);
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.svc-tab::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 5px;
  border-radius: 999px;
  background: var(--orange);
}
.svc-tab.active { color: #fff; font-weight: 700; }
.svc-tab-label { line-height: 1.3; }
.svc-tab.active .svc-tab-label {
  padding-bottom: 7px;
  border-bottom: 3px solid var(--orange);
}
.svc-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .28s ease, transform .28s ease, border-color .28s ease;
}
.svc-feature.is-changing {
  opacity: .58;
  transform: translateY(8px);
  border-color: rgba(241, 91, 43, .35);
}
.svc-feature-media img,
.svc-feature-bg {
  transition: opacity .32s ease, transform .32s ease, filter .32s ease;
}
.svc-feature.is-changing .svc-feature-media img { transform: scale(1.025); }
.svc-feature-body {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  justify-content: flex-start;
  padding: 44px;
}
.svc-feature-title { margin: 0 0 14px; font-size: 26px; font-weight: 700; color: #fff; }
.svc-feature-desc { margin: 0; color: var(--muted-dark); font-size: 16px; line-height: 1.65; }
.svc-feature-cta { display: flex; align-items: center; gap: 18px; margin-top: auto; padding-top: 32px; flex-wrap: wrap; }
.svc-feature-cta span { color: rgba(255, 255, 255, .7); font-weight: 600; font-size: 15px; }
.svc-feature-media { position: relative; margin: 0; overflow: hidden; }
.svc-feature-bg {
  position: absolute;
  inset: 0;
  background: center / cover no-repeat;
  filter: blur(26px) brightness(.5);
  transform: scale(1.15);
}
.svc-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.svc-controls { display: flex; gap: 12px; margin-top: 24px; }
.svc-controls .case-arrow { width: 48px; height: 48px; }

/* ===== Figma desktop: cases carousel ===== */
.cases-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 48px;
  align-items: center;
}
.cases-head { text-align: left; }
.cases-head h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.cases-head p { color: var(--muted-dark); font-size: 16px; margin: 0 0 26px; }
.cases-head .cases-contact-btn { display: inline-flex; }
.cases-carousel { min-width: 0; }
.case-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(50% - 9px);
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.case-grid::-webkit-scrollbar { display: none; }
.case-card { scroll-snap-align: start; }
.cases-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
}
.cases-nav .case-dots { display: flex; gap: 7px; margin: 0; }
.cases-nav .case-dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .3);
}
.cases-nav .case-dots span.active { background: var(--orange); }
.case-arrows { display: flex; gap: 12px; }
.case-arrow {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.case-arrow:hover { background: rgba(255, 255, 255, .08); }
.case-arrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}
.case-prev::before,
.svc-prev::before { transform: rotate(45deg); margin-left: 3px; }
.case-next::before,
.svc-next::before { transform: rotate(-135deg); margin-right: 3px; }

/* ===== Figma desktop: form title ===== */
.form-title { margin: 0 0 6px; color: var(--ink); font-size: 24px; font-weight: 700; }

/* ===== Figma desktop: footer connect + bar ===== */
.footer-grid { display: none; }
.footer-connect { margin-bottom: 8px; }
.footer-connect h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.connect-lead { max-width: 780px; margin: 0 0 44px; color: var(--muted-dark); font-size: 16px; }
.connect-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; }
.connect-item > span {
  display: block;
  margin-bottom: 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
}
.connect-item a,
.connect-item p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}
.ci-phone a::before,
.ci-mail a::before,
.ci-hours p::before {
  content: "";
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 1px solid rgba(241, 91, 43, .5);
  border-radius: 999px;
  background: rgba(241, 91, 43, .06) center / 20px 20px no-repeat;
}
.ci-phone a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F15B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15.05 5A5 5 0 0 1 19 8.95M15.05 1A9 9 0 0 1 23 8.94'/%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.ci-mail a::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F15B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='8' width='18' height='12' rx='2'/%3E%3Cpath d='m3 10 9 5 9-5'/%3E%3Cpath d='M12 9V2m-3 3 3-3 3 3'/%3E%3C/svg%3E");
}
.ci-hours p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F15B2B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01'/%3E%3C/svg%3E");
}
.connect-social { display: flex; gap: 12px; }
.connect-social .social-link { width: 48px; height: 48px; font-size: 0; background-size: 20px 20px; }
.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.footer-bar .footer-brand { color: #fff; min-width: 0; }
.footer-bar-nav { display: flex; flex-wrap: wrap; gap: 6px; }
.footer-bar-nav a {
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 600;
}
.footer-bar-nav a:hover { color: #fff; background: rgba(241, 91, 43, .16); }
.footer-phone { color: #fff; }

@media (max-width: 980px) {
  .nav-shell { min-height: 68px; }
  .brand { min-width: 0; }
  .brand img { height: 40px; width: 40px; }
  .place { display: grid; }
  .place span:first-child { font-size: 18px; }
  .place span:last-child { font-size: 11px; }
  .main-nav {
    position: fixed;
    top: 68px;
    left: 12px;
    right: 12px;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    height: max-content;
    max-height: calc(100vh - 86px);
    overflow: auto;
    padding: 14px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,.22);
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 17px;
  }
  .nav-cta, .nav-right > .lang-switch { display: none; }
  .mobile-menu-actions {
    display: grid;
    gap: 10px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #ececec;
  }
  .mobile-lang-switch {
    display: inline-flex;
    width: max-content;
    margin-bottom: 2px;
  }
  .mobile-menu-actions a {
    color: var(--orange-dark);
    background: var(--orange-soft);
    font-weight: 900;
    border: 1px solid rgba(242, 101, 34, .35);
    text-align: center;
  }
  /* Phone link styled like the desktop header chip */
  .mobile-menu-actions a[href^="tel:"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    border: 1px solid rgba(241, 91, 43, .55);
    border-radius: 999px;
    background: rgba(241, 91, 43, .08);
    color: #fff;
    font-weight: 700;
  }
  .mobile-menu-actions a[href^="tel:"]::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    background: var(--orange);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .mobile-menu-actions .btn {
    width: 100%;
  }
  .burger { display: grid; }
  .hero-grid,
  .about-grid,
  .cta-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { padding-top: 42px; }
  .hero-media,
  .hero-media img { min-height: 430px; }
  .service-grid,
  .feature-grid,
  .case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-photo { width: 100%; min-height: 430px; }
  .wide-service { grid-template-columns: 220px minmax(0, 1fr); }

  .hero { min-height: 560px; padding: 80px 0 56px; }
  .svc-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .svc-feature { grid-template-columns: 1fr; }
  .svc-feature-media { min-height: 280px; }
  .cases-layout { grid-template-columns: 1fr; gap: 28px; }
  .case-grid { grid-auto-columns: 68%; grid-template-columns: none; }
  .connect-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; }
  .footer-bar { flex-wrap: wrap; gap: 18px; }
}

@media (max-width: 600px) {
  :root {
    --bg: #001e24;
    --bg-soft: #00262d;
    --surface: #07323b;
    --surface-2: #0c3a45;
    --line: rgba(255,255,255,.16);
    --radius: 7px;
  }
  body {
    background: #001e24;
    font-size: 14px;
  }
  .wrap { width: min(1180px, calc(100% - 24px)); }

  /* Mobile keeps the original slider markup; hide the desktop Figma structures */
  .service-showcase { display: none; }
  .nav-item { display: block; }
  .nav-caret { display: none; }
  .nav-dropdown { display: none !important; }
  .hero { display: block; }
  .hero .eyebrow::before { width: 16px; height: 16px; flex-basis: 16px; }
  .cases-layout { display: block; }
  .cases-carousel { min-width: 0; }
  .cases-nav { justify-content: center; margin-top: 12px; }
  .case-arrows { display: none; }
  .form-title { display: none; }

  /* Footer matches the "Оставайтесь на связи" block from the Figma mobile layout */
  .footer-grid,
  .footer-bar { display: none; }
  .footer-connect { display: block; }
  .footer-connect h2 { margin-bottom: 12px; font-size: 18px; }
  .connect-lead { margin-bottom: 24px; font-size: 13px; color: rgba(255, 255, 255, .78); }
  .connect-grid { grid-template-columns: 1fr; gap: 18px; }
  .connect-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }
  .connect-item > span { margin: 0; font-size: 12px; line-height: 1.15; }
  .connect-item a,
  .connect-item p { gap: 12px; font-size: 13px; }
  .ci-phone a::before,
  .ci-mail a::before,
  .ci-hours p::before {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    background-size: 18px 18px;
  }
  .connect-social { gap: 10px; }
  .connect-social .social-link {
    width: 40px !important;
    height: 40px !important;
    font-size: 0 !important;
    background-size: 18px 18px;
  }
  .site {
    background: #00232b;
    border-bottom-color: rgba(255,255,255,.12);
    color: #fff;
  }
  .nav-shell {
    min-height: 58px;
    gap: 10px;
    justify-content: space-between;
  }
  .nav-right { gap: 8px; }
  .brand {
    gap: 8px;
    flex: 1;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .place span:first-child {
    color: #fff;
    font-size: 15px;
  }
  .site .brand .place span:last-child,
  .place span:last-child { display: none; }
  .phone-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    color: transparent;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    font-size: 0;
  }
  .phone-chip::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background: var(--orange);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .burger {
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
  }
  .burger span {
    width: 25px;
    height: 3px;
    background: #fff;
  }
  .main-nav {
    top: 58px;
    left: 8px;
    right: 8px;
    padding: 12px;
    background: #032b33;
    border-color: rgba(255,255,255,.14);
    color: #fff;
  }
  .main-nav a {
    color: #fff;
    font-size: 15px;
    padding: 12px 14px;
  }
  .mobile-menu-actions {
    border-top-color: rgba(255,255,255,.14);
  }
  .mobile-menu-actions a {
    color: #fff;
    background: #101010;
  }
  .hero {
    position: relative;
    min-height: 530px;
    padding: 82px 0 32px;
    background:
      linear-gradient(180deg, rgba(0,30,36,.14) 0%, rgba(0,30,36,.34) 45%, rgba(0,30,36,.72) 100%),
      url("Alpassets/workexamplegeneral.webp") 62% 74% / cover no-repeat;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 92px;
    background: linear-gradient(180deg, rgba(0,30,36,0), #001e24 86%);
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: block;
  }
  h1 {
    font-size: 27px;
    line-height: 1.06;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .65);
  }
  .hero-copy,
  .hero-lead {
    max-width: 100%;
    min-width: 0;
  }
  .eyebrow {
    margin-bottom: 10px;
    color: #ff7433;
    font-size: 10px;
  }
  .hero .eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: none;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .8);
  }
  .hero .eyebrow::before {
    content: "";
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border-radius: 0;
    background: var(--orange);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7Zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }
  .hero-lead {
    max-width: 330px;
    margin-top: 18px;
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 0 1px 10px rgba(0, 0, 0, .8);
  }
  .hero-actions {
    display: flex !important;
    justify-content: center;
    margin-top: 150px;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 0;
    min-width: 294px;
    min-height: 54px;
    padding: 15px 34px;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
  }
  .hero-actions .ghost { display: none; }
  .hero-media,
  .hero-media img {
    display: none;
  }
  .metrics { display: none; }
  .mobile-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 250px;
  }
  .hero .mobile-dots { display: none; }
  .mobile-dots span {
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,.35);
  }
  .mobile-dots span:first-child { background: var(--orange); }
  .service-dots span:first-child { background: rgba(255,255,255,.35); }
  .service-dots span.active { background: var(--orange); }
  .case-dots span:first-child { background: rgba(255,255,255,.35); }
  .case-dots span.active { background: var(--orange); }
  /* Strip between hero and services: seamless slow marquee (text doesn't fit without wrapping) */
  .strip { overflow: hidden; }
  .strip .wrap {
    display: flex;
    width: max-content;
    padding: 12px 0;
    white-space: nowrap;
    font-size: 13px;
    animation: strip-marquee 22s linear infinite;
  }
  .strip .wrap span + span { display: inline; }
  .strip .wrap span::after {
    content: "|";
    padding: 0 16px;
    color: var(--orange);
  }
  @keyframes strip-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  @media (prefers-reduced-motion: reduce) {
    .strip .wrap {
      animation: none;
      width: auto;
      white-space: normal;
      text-align: center;
    }
    .strip .wrap span + span { display: none; }
    .strip .wrap span::after { content: none; }
  }
  .section {
    padding: 34px 0;
    background: #001e24;
  }
  .section.soft { background: #00262d; }
  .section-head {
    margin: 0 0 18px;
    text-align: left;
  }
  .section-head h2,
  .about-grid h2,
  .cta-band h2 {
    font-size: 18px;
    line-height: 1.12;
    text-transform: uppercase;
  }
  .section-head p:not(.eyebrow),
  .lead,
  .cta-band p {
    font-size: 12px;
  }
  #services .section-head {
    margin-bottom: 10px;
  }
  #services .section-head p:not(.eyebrow) {
    display: none;
  }
  .mobile-service-list {
    display: grid;
    gap: 9px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
  }
  .mobile-service-list li {
    position: relative;
    padding-left: 0;
    color: #dce7ea;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.25;
  }
  .mobile-service-list button {
    position: relative;
    display: inline-flex;
    align-items: flex-start;
    min-height: 22px;
    padding: 0 0 2px 16px;
    border: 0;
    background: transparent;
    color: #dce7ea;
    text-align: left;
    font: inherit;
    cursor: pointer;
    transition: color .18s ease, transform .18s ease;
  }
  .mobile-service-list button::before {
    content: "";
    position: absolute;
    left: 0;
    top: .45em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--orange);
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .mobile-service-list button.active {
    color: #fff;
    transform: translateX(2px);
  }
  .mobile-service-list button.active::before {
    transform: scale(1.18);
    box-shadow: 0 0 0 4px rgba(241, 91, 43, .16);
  }
  .mobile-service-list button.active::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 0;
    bottom: -2px;
    height: 2px;
    border-radius: 999px;
    background: var(--orange);
  }
  .metrics,
  .service-grid,
  .feature-grid,
  .case-grid,
  .stats-grid,
  .logo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-inline: 0;
    padding: 16px 0 4px;
    -webkit-overflow-scrolling: touch;
  }
  .service-grid::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    display: grid;
    grid-template-rows: minmax(106px, auto) 156px 70px;
    min-height: 332px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px;
    background: #07323b;
    box-shadow: 0 18px 44px rgba(0,0,0,.22);
    transition: border-color .24s ease, transform .24s ease, box-shadow .24s ease;
  }
  .service-card.active {
    border-color: rgba(241, 91, 43, .45);
    box-shadow: 0 22px 48px rgba(0,0,0,.28);
  }
  .service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: .38;
  }
  .service-card > div:not(.service-cta) {
    order: -1;
    padding: 18px 18px 12px;
    position: relative;
    z-index: 1;
  }
  .service-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
  }
  .service-card p {
    display: block;
    margin: 0;
    font-size: 12px;
    line-height: 1.25;
    color: rgba(255,255,255,.72);
  }
  .service-card img {
    width: 100%;
    height: 156px;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 1;
  }
  .service-card:first-child img {
    object-position: center 29%;
  }
  .service-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 13px 18px 18px;
    position: relative;
    z-index: 1;
  }
  .service-cta span {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1.16;
    font-weight: 800;
  }
  .service-cta button {
    min-width: 98px;
    min-height: 44px;
    padding: 11px 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8a1b, #f26522);
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
  }
  .section-dots {
    margin-top: 18px;
  }
  #advantages .section-head {
    margin-bottom: 14px;
  }
  .feature-grid {
    display: grid;
    gap: 9px;
  }
  .feature-card {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr) 24px;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    background: #173f4a;
  }
  .feature-card img {
    width: 30px;
    height: 30px;
    margin: 0;
    padding: 5px;
    border-radius: 999px;
    background: #fff;
  }
  .feature-card h3 {
    margin: 0;
    font-size: 12px;
    color: #fff;
  }
  .feature-toggle {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    justify-self: end;
    align-self: center;
    border: 0;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
  }
  .feature-toggle::before {
    content: "";
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,.74);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform .18s ease;
  }
  .feature-card.open .feature-toggle::before {
    transform: rotate(180deg);
  }
  .feature-card p {
    display: none;
    grid-column: 2 / 3;
    font-size: 11px;
  }
  .feature-card.open {
    align-items: start;
  }
  .feature-card.open p { display: block; }
  #about {
    background: #00262d;
  }
  .about-grid {
    display: block;
  }
  .about-grid .lead {
    max-height: none;
    overflow: visible;
    margin-top: 12px;
    color: rgba(255,255,255,.78);
  }
  .stats-grid {
    display: grid;
    gap: 5px;
    margin-top: 14px;
  }
  .stats-grid div {
    display: block;
    padding: 0 0 0 14px;
    border: 0;
    background: transparent;
    position: relative;
  }
  .stats-grid div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--orange);
  }
  .stats-grid strong {
    display: inline;
    font-size: 12px;
    color: #fff;
  }
  .stats-grid span {
    display: block;
    margin: 0;
    color: #fff;
    font-size: 11px;
  }
  .about-media {
    display: block;
    position: relative;
    min-height: auto;
    margin-top: 20px;
    padding-left: 34%;
  }
  .about-photo {
    order: initial;
    width: 100%;
    min-height: 170px;
    height: 190px;
    margin-top: 0;
    border-radius: 5px;
    object-position: right center;
  }
  .cert-photo {
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45%;
    height: 178px;
    object-fit: cover;
    object-position: top center;
    border: 4px solid #fff;
    border-radius: 5px;
    box-shadow: 0 12px 30px rgba(0,0,0,.28);
  }
  #about .cert-photo {
    width: 45%;
    max-width: 160px;
  }
  #cases .section-head {
    margin-bottom: 14px;
  }
  #cases .section-head p:not(.eyebrow) {
    margin-bottom: 0;
  }
  .cases-contact-btn {
    display: flex;
    width: 100%;
    min-height: 43px;
    margin: 18px 0 20px;
    font-size: 12px;
  }
  .case-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0;
    padding: 2px 0 4px;
    -webkit-overflow-scrolling: touch;
  }
  .case-grid::-webkit-scrollbar,
  .logo-grid::-webkit-scrollbar { display: none; }
  .case-card {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 5px;
    background: #07323b;
  }
  .case-card img {
    height: 250px;
  }
  .case-card h3 {
    padding: 10px;
    font-size: 11px;
  }
  .partners {
    padding: 0;
    background: #fff;
    overflow: hidden;
  }
  .partners .section-head { display: none; }
  .partners .wrap {
    width: 100%;
    overflow: hidden;
  }
  .logo-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 96px;
    grid-template-columns: none;
    gap: 22px;
    width: max-content;
    overflow: visible;
    padding: 18px 0;
    animation: partners-marquee 34s linear infinite;
    will-change: transform;
  }
  .logo-grid img {
    height: 54px;
    width: 96px;
    padding: 6px;
    border: 0;
    border-radius: 0;
  }
  .marquee-clone { display: block; }
  @keyframes partners-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 11px)); }
  }
  @media (prefers-reduced-motion: reduce) {
    .logo-grid {
      animation: none;
      transform: none;
    }
  }
  .wide-service {
    grid-template-columns: 1fr;
  }
  .wide-service img { height: 220px; }
  .cta-section {
    padding: 34px 0;
    background: #00262d;
  }
  .cta-band {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }
  .cta-band h2 {
    font-size: 24px;
  }
  .cta-contacts { display: none; }
  .lead-form {
    margin-top: 20px;
    padding: 16px;
    gap: 8px;
    border-radius: 16px;
  }
  .lead-form input,
  .lead-form textarea {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: 12px;
  }
  .lead-form textarea {
    min-height: 0;
    height: 38px;
    resize: none;
  }
  .lead-form .btn[type="submit"] {
    min-height: 37px;
    margin-top: 4px;
    font-size: 12px;
  }
  .form-note { font-size: 11px; }
  .footer {
    padding: 34px 0 24px;
    background: #001e24;
  }
  .footer-grid {
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.14);
  }
  .footer-grid > div:first-child,
  .footer-grid > div:nth-child(2) {
    display: none;
  }
  .footer h2 {
    margin-bottom: 12px;
    font-size: 16px;
    text-transform: uppercase;
  }
  .footer-contact-row {
    display: grid;
    grid-template-columns: 92px minmax(0,1fr);
    gap: 10px;
    align-items: center;
    margin: 14px 0;
  }
  .footer-contact-row span {
    color: #fff;
    font-size: 11px;
    line-height: 1.1;
  }
  .footer-contact-row a,
  .footer-contact-row p {
    margin: 0;
    color: rgba(255,255,255,.74);
    font-size: 12px;
  }
  .footer-contact-row a::before,
  .footer-contact-row p::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 7px;
    vertical-align: middle;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    background:
      rgba(255,255,255,.05)
      center / 13px 13px no-repeat;
  }
  .contact-phone a::before {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f26522' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.12.9.32 1.77.59 2.61a2 2 0 0 1-.45 2.11L8 9.69a16 16 0 0 0 6.31 6.31l1.25-1.25a2 2 0 0 1 2.11-.45c.84.27 1.71.47 2.61.59A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
  }
  .contact-mail a::before {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f26522' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
  }
  .contact-hours p::before {
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f26522' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18M8 14h.01M12 14h.01M16 14h.01M8 18h.01M12 18h.01M16 18h.01'/%3E%3C/svg%3E");
  }
  .social-row {
    grid-template-columns: 92px auto auto 1fr;
  }
  .social-link {
    display: inline-flex !important;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 999px;
    color: var(--orange) !important;
    font-size: 10px !important;
    font-weight: 900;
  }
  .social-link::before { content: none !important; }
  .footer-bottom {
    display: grid;
    justify-items: start;
    text-align: left;
    font-size: 11px;
  }
  .footer-bottom span {
    justify-self: center;
  }
  .legal-card {
    padding: 22px 12px;
    border-radius: 10px;
  }
  .legal-card h1 {
    font-size: 27px;
    letter-spacing: 0;
    text-transform: none;
  }
  .legal-section h2 {
    font-size: 18px;
  }
}
