:root {
  --bg: #06131f;
  --bg-soft: #0e2233;
  --surface: #ffffff;
  --surface-soft: #f3f7fb;
  --surface-muted: #eaf1f6;
  --text: #132739;
  --text-soft: #4f6578;
  --text-inverse: #edf5fb;
  --line: #d5e1ea;
  --line-strong: #9db3c4;
  --accent: #d7873d;
  --accent-deep: #b76922;
  --accent-soft: rgba(215, 135, 61, 0.12);
  --shadow: 0 24px 60px rgba(7, 20, 32, 0.12);
  --shadow-soft: 0 14px 34px rgba(7, 20, 32, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(215, 135, 61, 0.12), transparent 26%),
    linear-gradient(180deg, #eef3f7 0%, #f7fafc 40%, #eef3f7 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

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

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

p,
ul,
h1,
h2,
h3,
h5 {
  margin: 0;
}

.site-shell {
  width: min(1400px, calc(100% - 24px));
  margin: 12px auto 24px;
}

.site-header,
.middle,
.site-footer {
  border: 1px solid rgba(157, 179, 196, 0.24);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-header {
  position: relative;
  z-index: 220;
  padding: 18px 24px 16px;
  overflow: visible;
}

.topback {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.brand-block {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo {
  display: block;
  flex: 0 0 auto;
  padding: 4px 0;
}

.logo img {
  width: clamp(165px, 16vw, 220px);
  max-height: 92px;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  max-width: 430px;
}

.brand-kicker,
.section-label,
.service-tag,
.hero-proof-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-subtitle {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.header-utility {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  text-align: right;
}

.topfont {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 700;
}

.topfont a:hover,
.footer-column a:hover,
.contentfont a:hover,
.service-link:hover {
  color: var(--accent-deep);
}

.header-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.header-pill {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.header-region {
  color: var(--text-soft);
  font-size: 12px;
}

.menu {
  position: relative;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.94) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  overflow: visible;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(157, 179, 196, 0.24);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.nav-panel {
  position: relative;
  z-index: 250;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow: visible;
}

.sf-menu,
.sf-menu ul,
.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-menu {
  position: static;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.sf-menu li {
  position: relative;
}

.sf-menu li.has-submenu {
  position: relative;
}

.sf-menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(157, 179, 196, 0.18);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.sf-menu > li.has-submenu > a {
  gap: 8px;
}

.sf-menu > li.has-submenu > a::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: -2px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.72;
}

.sf-menu > li > a:hover,
.sf-menu > li:hover > a,
.sf-menu > li:focus-within > a {
  border-color: rgba(183, 105, 34, 0.26);
  background: var(--surface);
  color: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(7, 20, 32, 0.08);
}

.sf-menu ul {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(157, 179, 196, 0.28);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 80;
}

.sf-menu ul li a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.45;
}

.sf-menu ul li a:hover,
.sf-menu ul li:focus-within > a {
  background: var(--surface-soft);
  color: var(--accent-deep);
}

.sf-menu li:hover > ul,
.sf-menu li:focus-within > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sf-menu ul ul {
  top: 0;
  left: calc(100% + 10px);
}

.submenu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 38px;
  border: 1px solid rgba(157, 179, 196, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.submenu-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

@media (min-width: 901px) {
  .sf-menu > li:nth-child(3) {
    position: static;
  }

  .sf-menu > li:nth-child(3) > ul {
    top: calc(100% + 14px);
    left: 50%;
    width: min(1080px, calc(100vw - 120px));
    min-width: 0;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 28px 60px rgba(7, 20, 32, 0.16);
    transform: translate(-50%, 14px);
    z-index: 999;
  }

  .sf-menu > li:nth-child(3) > ul::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    width: 18px;
    height: 18px;
    border-top: 1px solid rgba(157, 179, 196, 0.28);
    border-left: 1px solid rgba(157, 179, 196, 0.28);
    background: rgba(255, 255, 255, 0.985);
    transform: translateX(-50%) rotate(45deg);
  }

  .sf-menu > li:nth-child(3):hover > ul,
  .sf-menu > li:nth-child(3):focus-within > ul {
    transform: translate(-50%, 0);
  }

  .sf-menu > li:nth-child(3) > ul > li {
    position: relative;
    min-width: 0;
    padding: 16px;
    border: 1px solid rgba(157, 179, 196, 0.18);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(243, 247, 251, 0.86) 0%, rgba(255, 255, 255, 0.98) 100%);
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  }

  .sf-menu > li:nth-child(3) > ul > li::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(215, 135, 61, 0) 72%);
    opacity: 0.92;
  }

  .sf-menu > li:nth-child(3) > ul > li:hover,
  .sf-menu > li:nth-child(3) > ul > li:focus-within {
    transform: translateY(-2px);
    border-color: rgba(183, 105, 34, 0.26);
    box-shadow: 0 20px 34px rgba(7, 20, 32, 0.08);
  }

  .sf-menu > li:nth-child(3) > ul > li > a {
    padding: 0;
    margin-bottom: 12px;
    border-radius: 0;
    background: transparent;
    color: var(--text);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .sf-menu > li:nth-child(3) > ul > li > a:hover {
    background: transparent;
  }

  .sf-menu > li:nth-child(3) > ul > li > ul {
    position: static;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .sf-menu > li:nth-child(3) > ul > li > ul > li > a {
    padding: 8px 0;
    border-radius: 0;
    font-size: 13px;
    line-height: 1.55;
  }

  .sf-menu > li:nth-child(3) > ul > li > ul > li > a:hover {
    background: transparent;
    color: var(--accent-deep);
  }
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-cta,
.primary-button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(183, 105, 34, 0.24);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
}

.secondary-button {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--text);
}

.secondary-button--light {
  border-color: rgba(255, 255, 255, 0.34);
  background: transparent;
  color: #fff;
}

.site-main {
  position: relative;
  z-index: 1;
  margin-top: 18px;
}

.middle {
  padding: 24px;
}

.home-main {
  display: grid;
  gap: 18px;
}

.hero-section,
.trust-section,
.services-section,
.advantage-section,
.process-section,
.industries-section,
.blog-section,
.cta-section,
.content,
.site-footer {
  border-radius: var(--radius-lg);
}

.hero-section,
.trust-section,
.services-section,
.advantage-section,
.process-section,
.industries-section,
.blog-section,
.content {
  border: 1px solid rgba(157, 179, 196, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 252, 0.98) 100%);
  box-shadow: var(--shadow-soft);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.82fr);
  gap: 20px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(215, 135, 61, 0.18), transparent 25%),
    linear-gradient(135deg, #f8fbfd 0%, #eef4f8 100%);
  animation: lift-in 0.7s ease both;
}

.hero-title,
.section-heading h2,
.cta-copy h2,
.footer-brand h2 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -0.03em;
}

.hero-title {
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(2.2rem, 3.45vw, 3.75rem);
  line-height: 1.04;
}

.hero-summary,
.section-heading p,
.trust-card p,
.service-card p,
.service-card li,
.advantage-card p,
.process-card p,
.industry-pills span,
.cta-copy p,
.footer-brand p,
.footer-column a {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.8;
}

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

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

.metric-card,
.trust-card,
.advantage-card,
.process-card {
  padding: 16px 18px;
  border: 1px solid rgba(157, 179, 196, 0.26);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.metric-card span {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.65;
}

.hero-visuals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: start;
}

.hero-main-media,
.hero-secondary-media {
  overflow: hidden;
  border-radius: 24px;
}

.hero-main-media {
  min-height: 520px;
}

.hero-secondary-media {
  min-height: 150px;
}

.hero-main-media img,
.hero-secondary-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-aside {
  display: grid;
  gap: 14px;
  align-content: start;
}

.hero-proof-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(157, 179, 196, 0.26);
  border-radius: 22px;
  background: linear-gradient(180deg, #0d2132 0%, #132b3f 100%);
  color: var(--text-inverse);
  box-shadow: var(--shadow-soft);
}

.hero-proof-card h3 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.24;
}

.hero-proof-card ul {
  margin: 0;
  padding-left: 18px;
  color: rgba(237, 245, 251, 0.84);
  font-size: 13px;
  line-height: 1.6;
}

.hero-proof-card__label {
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd9b0;
}

.trust-section,
.advantage-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.trust-section {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 24px;
}

.section-label--small {
  margin-bottom: 10px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading h2,
.cta-copy h2,
.footer-brand h2 {
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.advantage-section .section-heading,
.process-section .section-heading,
.blog-section .section-heading {
  margin-bottom: 16px;
}

.advantage-section .section-heading h2,
.process-section .section-heading h2,
.blog-section .section-heading h2 {
  font-size: clamp(1.75rem, 2.2vw, 2.45rem);
  line-height: 1.12;
}

.services-section,
.advantage-section,
.process-section,
.industries-section,
.blog-section {
  padding: 24px;
}

.section-heading--split {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
}

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

.service-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid rgba(157, 179, 196, 0.24);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.service-card__media {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 76px;
}

.service-card__media img {
  max-height: 88px;
  width: auto;
}

.service-card__media--photo {
  overflow: hidden;
  border-radius: 20px;
}

.service-card__media--photo img {
  width: 100%;
  max-height: 180px;
  object-fit: cover;
}

.service-tag {
  margin-bottom: 0;
  width: fit-content;
}

.service-card h3,
.trust-card h3,
.advantage-card h3,
.process-card h3,
.footer-column h3 {
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

.service-card h3 {
  font-size: 24px;
  line-height: 1.18;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
}

.service-link {
  color: var(--accent-deep);
  font-size: 14px;
  font-weight: 800;
}

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

.advantage-card h3,
.process-card h3,
.trust-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.advantage-section,
.process-section {
  padding: 20px;
}

.advantage-grid,
.process-grid {
  gap: 14px;
}

.advantage-card,
.process-card {
  padding: 14px 16px;
}

.advantage-card h3,
.process-card h3 {
  font-size: 18px;
}

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

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg-soft) 0%, #18354c 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.industry-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industry-pills span {
  padding: 14px 18px;
  border: 1px solid rgba(157, 179, 196, 0.28);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.blog-status {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(157, 179, 196, 0.26);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.6;
}

.blog-status.is-ready {
  border-color: rgba(16, 40, 59, 0.16);
  background: rgba(9, 23, 35, 0.04);
  color: var(--text);
}

.blog-status.is-fallback {
  border-color: rgba(215, 135, 61, 0.24);
  background: rgba(215, 135, 61, 0.08);
}

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

.blog-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(157, 179, 196, 0.24);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.blog-card h3 {
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.2;
}

.blog-card p {
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.72;
}

.blog-card p:not(.service-tag):not(.blog-card__meta) {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.blog-card__meta {
  color: var(--accent-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background:
    radial-gradient(circle at top left, rgba(215, 135, 61, 0.24), transparent 26%),
    linear-gradient(135deg, #13324a 0%, #1d4766 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.section-label--inverse {
  background: rgba(255, 255, 255, 0.14);
  color: #ffd9b0;
}

.cta-copy p,
.footer-brand p {
  color: rgba(237, 245, 251, 0.82);
}

.cta-copy {
  max-width: 560px;
}

.cta-copy h2 {
  color: #fff;
  font-size: clamp(1.45rem, 1.85vw, 1.95rem);
  line-height: 1.16;
}

.cta-copy p {
  max-width: 48ch;
  font-size: 14px;
  line-height: 1.68;
}

.cta-actions .primary-button,
.cta-actions .secondary-button {
  min-height: 44px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content {
  padding: 34px;
  text-align: left;
}

.content h1 {
  margin-bottom: 18px;
  color: var(--text);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
}

.content h5 {
  margin-top: 26px;
  margin-bottom: 12px;
  color: var(--accent-deep);
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: 24px;
  line-height: 1.2;
}

.contentfont {
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.95;
}

.contentfont a {
  color: var(--accent-deep);
  font-weight: 700;
}

.content ul.contentfont {
  columns: 2;
  column-gap: 36px;
}

.content ul.contentfont li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.site-footer {
  margin-top: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(215, 135, 61, 0.18), transparent 24%),
    linear-gradient(135deg, #091723 0%, #10283b 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(210px, 240px) repeat(4, minmax(0, 1fr));
  gap: 16px 18px;
  padding: 24px 22px;
}

.footer-brand {
  max-width: none;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-brand h2 {
  margin: 0 0 10px;
  max-width: 11ch;
  color: #fff;
  font-size: clamp(1.25rem, 1.5vw, 1.7rem);
  line-height: 1.12;
}

.footer-brand p {
  max-width: none;
  font-size: 13px;
  line-height: 1.62;
}

.footer-brand .section-label {
  margin-bottom: 10px;
}

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

.footer-contact-list li {
  display: grid;
  gap: 2px;
}

.footer-contact-list span {
  color: rgba(237, 245, 251, 0.64);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-contact-list a {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.footer-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 16px;
}

.footer-actions .primary-button,
.footer-actions .secondary-button {
  width: 100%;
  min-height: 40px;
  padding: 0 12px;
  font-size: 13px;
}

.footer-column {
  padding: 6px 0;
  align-self: start;
}

.footer-column h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #edf5fb;
  font-size: 16px;
}

.footer-column ul {
  display: grid;
  gap: 6px;
}

.footer-column a {
  color: rgba(237, 245, 251, 0.9);
  font-size: 13px;
  line-height: 1.55;
}

.footer-bottom {
  padding: 16px 24px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footerfont {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: rgba(237, 245, 251, 0.72);
  font-size: 13px;
  line-height: 1.8;
}

.email {
  margin-left: auto;
  min-width: 0;
  max-width: 100%;
  text-align: right;
  overflow-wrap: anywhere;
}

.footerfont a,
.email a {
  color: #fff;
  font-weight: 700;
  overflow-wrap: anywhere;
}

@keyframes lift-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-section,
  .services-grid,
  .advantage-grid,
  .process-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visuals,
  .hero-metrics,
  .trust-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-visuals {
    grid-template-columns: 1fr;
  }

  .cta-section {
    display: grid;
  }

  .footerfont {
    justify-content: flex-start;
  }

  .site-shell {
    width: min(100% - 20px, 100%);
  }

  .hero-section,
  .services-section,
  .advantage-section,
  .process-section,
  .industries-section,
  .blog-section,
  .content {
    padding: 22px;
  }
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 20px, 100%);
    margin: 10px auto 20px;
  }

  .site-header,
  .middle {
    padding: 16px;
  }

  .topback,
  .brand-block,
  .header-contact {
    flex-direction: column;
    align-items: flex-start;
  }

  .topback {
    gap: 12px;
    padding-bottom: 12px;
  }

  .menu {
    align-items: stretch;
    gap: 12px;
    margin-top: 12px;
    padding: 10px;
  }

  .logo img {
    width: min(170px, 100%);
    max-height: none;
  }

  .header-utility,
  .topfont,
  .header-contact {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .nav-toggle {
    display: inline-flex;
    width: 100%;
  }

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .menu.is-open .nav-panel {
    display: flex;
  }

  .sf-menu {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .sf-menu > li > a {
    flex: 1 1 auto;
    width: auto;
    justify-content: flex-start;
    border: 1px solid var(--line);
    background: #fff;
  }

  .sf-menu > li {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: start;
  }

  .sf-menu > li:not(.has-submenu) {
    grid-template-columns: 1fr;
  }

  .sf-menu > li.has-submenu > a::after {
    display: none;
  }

  .submenu-toggle {
    display: inline-flex;
  }

  .submenu-toggle:hover,
  .submenu-toggle:focus-visible,
  .sf-menu li.submenu-open > .submenu-toggle {
    border-color: rgba(183, 105, 34, 0.3);
    background: rgba(215, 135, 61, 0.12);
    color: var(--accent-deep);
  }

  .sf-menu li.submenu-open > .submenu-toggle::before {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .sf-menu ul,
  .sf-menu ul ul {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 10px;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    grid-column: 1 / -1;
    border-radius: 16px;
    background: rgba(243, 247, 251, 0.88);
  }

  .sf-menu li.submenu-open > ul {
    display: block;
  }

  .sf-menu ul li a {
    background: rgba(255, 255, 255, 0.82);
  }

  .sf-menu > li:nth-child(3) > ul > li {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .sf-menu > li:nth-child(3) > ul > li > a {
    margin-bottom: 6px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .sf-menu > li:nth-child(3) > ul > li > ul {
    padding: 4px 0 0 8px;
    background: transparent;
    display: block;
  }

  .hero-section,
  .services-section,
  .advantage-section,
  .process-section,
  .industries-section,
  .blog-section,
  .content,
  .cta-section {
    padding: 18px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
  }

  .content ul.contentfont {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .hero-title,
  .section-heading h2,
  .cta-copy h2,
  .footer-brand h2,
  .content h1 {
    font-size: 2rem;
  }

  .primary-button,
  .secondary-button,
  .nav-cta,
  .header-pill,
  .nav-panel .nav-cta {
    width: 100%;
  }
}
