:root {
  --black: #0a0a0a;
  --off-white: #f5f2ec;
  --white: #ffffff;
  --accent: #c94e00;
  --accent-dark: #b64500;
  --text: #121212;
  --text-muted: #666666;
  --border: rgba(10, 10, 10, 0.08);
  --green: #2eaf5d;
  --page-max: 1240px;
  --desktop-inline: 48px;
  --mobile-inline: 24px;
  --section-space: 96px;
  --radius-sm: 8px;
  --radius-md: 8px;
  --radius-lg: 8px;
  --shadow-soft: 0 12px 30px rgba(10, 10, 10, 0.06);
  --shadow-strong: 0 22px 60px rgba(10, 10, 10, 0.18);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--off-white);
}

body.nav-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 2;
  background: var(--off-white);
  box-shadow: 0 40px 80px rgba(10, 10, 10, 0.08);
}

h1,
h2,
h3,
h4,
p,
ol,
ul {
  margin-top: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

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

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

.container {
  width: min(100% - (var(--desktop-inline) * 2), var(--page-max));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  transform: translateY(-200%);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.65rem 0.9rem;
  z-index: 120;
}

.skip-link:focus {
  transform: translateY(0);
}

.section {
  position: relative;
  z-index: 2;
  padding-block: var(--section-space);
  background: var(--off-white);
}

.section-anchor {
  position: relative;
  top: -84px;
  height: 0;
}

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

body[data-page-slug="despre-noi"] .page-content > .block:nth-of-type(odd),
body[data-page-slug="blog"] .page-content > .block:nth-of-type(odd) {
  background: var(--off-white);
}

body[data-page-slug="despre-noi"] .page-content > .block:nth-of-type(even),
body[data-page-slug="blog"] .page-content > .block:nth-of-type(even) {
  background: var(--white);
}

body[data-page-slug="home"] .page-content > .block:nth-of-type(even) {
  background: var(--off-white);
}

body[data-page-slug="home"] .page-content > .block:nth-of-type(odd):not(.block-hero-split) {
  background: var(--white);
}

body[data-page-slug="servicii"] .page-content > .block:nth-of-type(odd),
body[data-page-slug^="servicii/"] .page-content > .block:nth-of-type(odd),
body[data-page-slug="industrii"] .page-content > .block:nth-of-type(odd),
body[data-page-slug^="industrii/"] .page-content > .block:nth-of-type(odd) {
  background: var(--off-white);
}

body[data-page-slug="servicii"] .page-content > .block:nth-of-type(even),
body[data-page-slug^="servicii/"] .page-content > .block:nth-of-type(even),
body[data-page-slug="industrii"] .page-content > .block:nth-of-type(even),
body[data-page-slug^="industrii/"] .page-content > .block:nth-of-type(even) {
  background: var(--white);
}

body[data-page-slug="despre-noi"] .card,
body[data-page-slug="despre-noi"] .column,
body[data-page-slug="despre-noi"] .faq-item,
body[data-page-slug="despre-noi"] .process-step,
body[data-page-slug="despre-noi"] .cta-panel,
body[data-page-slug="blog"] .card,
body[data-page-slug="blog"] .column,
body[data-page-slug="blog"] .faq-item,
body[data-page-slug="blog"] .process-step,
body[data-page-slug="blog"] .cta-panel {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

body[data-page-slug="blog"] .block-cta .cta-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page-slug="despre-noi"] .block-stats-bar {
  border-top: 1px solid var(--border);
}

body[data-page-slug="despre-noi"] .block-stats-bar .stat-icon {
  background: var(--white);
}

body[data-page-slug="despre-noi"] .block-cta .container {
  width: 100%;
  max-width: none;
}

body[data-page-slug="despre-noi"] .block-cta .cta-panel {
  width: min(100% - (var(--desktop-inline) * 2), var(--page-max));
  margin-inline: auto;
  padding: 0;
  border: 0;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

body[data-page-slug="despre-noi"] .block-cta .section-head,
body[data-page-slug="despre-noi"] .block-cta .cta-actions {
  justify-items: center;
  justify-content: center;
}

body[data-page-slug="despre-noi"] .block-cta .section-subtitle,
body[data-page-slug="despre-noi"] .block-cta .cta-copy {
  max-width: 42rem;
}

.section-split,
.two-col,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 35%) minmax(0, 65%);
  gap: 2rem 3.5rem;
  align-items: start;
}

.section-head {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.section-title + .section-subtitle {
  margin-top: 0.55rem;
}

.section-head--compact {
  max-width: 56rem;
  margin-bottom: 2rem;
}

.section-head--sticky {
  position: sticky;
  top: 7.25rem;
}

.section-label,
.eyebrow,
.hero-form-label,
.partner-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label::before {
  content: "";
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: currentColor;
}

.hero-title,
.section-title,
.cta-panel .section-title,
.block-hero h1,
.stat-value,
.reason-number,
.process-step-number {
  font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.section-title,
.block-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 3.05vw, 3.2rem);
  line-height: 1.04;
  font-weight: 650;
  text-wrap: balance;
}

.block-hero h1 {
  max-width: 17ch;
}

.home-hero-page .hero-title {
  font-weight: 700;
}

.section-subtitle,
.lead,
.page-lead,
.hero-text,
.hero-form-copy,
.contact-brief-lead,
.contact-form-intro p,
.card-text,
.column p,
.process-step p,
.faq-item p,
.cta-copy,
.legal-article p,
.legal-article li {
  color: var(--text-muted);
  line-height: 1.68;
}

.section-subtitle,
.lead,
.page-lead {
  max-width: 40rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body:not(.home-hero-page) .site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.035);
  backdrop-filter: blur(18px);
}

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

.site-logo,
.footer-logo,
.mobile-nav-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img,
.mobile-nav-logo img {
  width: auto;
  height: 28px;
}

.site-logo-mark--dark,
.site-header.is-scrolled .site-logo-mark--light,
body:not(.home-hero-page) .site-logo-mark--light {
  display: none;
}

.site-header.is-scrolled .site-logo-mark--dark,
body:not(.home-hero-page) .site-logo-mark--dark {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.12rem;
  margin-left: auto;
}

.nav-item {
  position: relative;
}

.nav-item--has-menu .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 0.9rem;
  color: var(--white);
  font-size: 0.94rem;
  line-height: 1;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-header.is-scrolled .nav-link,
body:not(.home-hero-page) .nav-link {
  color: var(--black);
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-link.is-active {
  color: var(--accent);
}

.nav-link[aria-current="page"],
.nav-link.is-active {
  background: rgba(201, 78, 0, 0.09);
  border-radius: var(--radius-md);
}

.nav-caret {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.55rem);
  left: 50%;
  width: 270px;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown a {
  display: block;
  padding: 0.85rem 0.9rem;
  border-radius: var(--radius-sm);
  color: var(--black);
  font-size: 0.92rem;
  line-height: 1.2;
  cursor: pointer;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background: var(--off-white);
  color: var(--accent);
}

.nav-contact {
  margin-left: 1.15rem;
  padding: 0.92rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-weight: 600;
}

.site-header.is-scrolled .nav-contact,
body:not(.home-hero-page) .nav-contact {
  background: var(--black);
  color: var(--white);
}

.site-header.is-scrolled .nav-contact:hover,
body:not(.home-hero-page) .nav-contact:hover {
  background: #1c1c1c;
  color: var(--white);
}

.nav-toggle,
.mobile-nav-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.site-logo,
.lang-switch-toggle,
.lang-switch-option {
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
body:not(.home-hero-page) .nav-toggle {
  background: var(--white);
  color: var(--accent);
}

.nav-toggle svg,
.mobile-nav-close span {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.site-drawer {
  display: grid;
  position: fixed;
  inset: 0;
  z-index: 160;
  padding: calc(env(safe-area-inset-top, 0px) + 1rem) var(--mobile-inline) calc(env(safe-area-inset-bottom, 0px) + 1.5rem);
  background: var(--off-white);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), opacity 180ms ease, visibility 180ms ease;
  overflow-y: auto;
  align-content: start;
}

.site-drawer.open {
  gap: 0.35rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: inherit;
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + 0rem);
  z-index: 2;
}

.mobile-nav-close {
  display: inline-flex;
  background: var(--white);
  color: var(--accent);
}

.mobile-nav-close span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.mobile-nav-close span:first-child {
  transform: rotate(45deg);
}

.mobile-nav-close span:last-child {
  transform: rotate(-45deg);
}

.site-drawer .nav-link,
.site-drawer a:not(.mobile-nav-logo) {
  padding: 0.9rem 0.75rem;
  color: var(--black);
  border-bottom: 1px solid var(--border);
}

.site-drawer .nav-link.is-active,
.site-drawer .nav-link[aria-current="page"],
.mobile-subnav a[aria-current="page"] {
  padding-inline: 0.85rem;
}

.mobile-subnav {
  display: grid;
  gap: 0.1rem;
  margin: -0.2rem 0 0.3rem 1rem;
}

.mobile-subnav a {
  padding: 0.72rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.mobile-nav-group {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-parent {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  border-bottom: 0 !important;
}

.mobile-nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.mobile-nav-group.is-open .mobile-nav-caret {
  transform: rotate(225deg);
}

.mobile-subnav {
  display: none;
}

.mobile-subnav.is-open {
  display: grid;
}

.mobile-subnav a:first-child {
  margin-top: 0.15rem;
}

.nav-cta {
  color: var(--white) !important;
}

.site-drawer .nav-cta {
  margin-top: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  will-change: transform;
}

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

.btn:active,
button[type="submit"]:active,
.process-tool:active,
.quote-modal__close:active,
.pagination a:active,
.pagination button:active {
  transform: scale(0.97);
}

.interactive-bounce {
  animation: interactive-bounce 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes interactive-bounce {
  0% { transform: scale(0.97); }
  55% { transform: scale(1.03); }
  100% { transform: scale(1); }
}

.btn-primary,
button[type="submit"] {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover,
button[type="submit"]:hover {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--white);
  border-color: var(--border);
  color: var(--black);
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

.block-hero-split {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 0;
  background: var(--black);
}

.block-hero-split::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(10, 10, 10, 0.76), rgba(10, 10, 10, 0.82)),
    var(--hero-bg-image, linear-gradient(135deg, #241a14, #4d2f1d)) center/cover no-repeat;
  filter: blur(5px);
  transform: scale(1.03) scaleX(-1);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 2rem;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
}

.hero-copy-wrap,
.hero-form-wrap {
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 100%;
  max-width: 660px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-dot {
  position: relative;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(46, 175, 93, 0.28);
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(2.8); opacity: 0; }
}

.hero-title {
  margin: 0;
  font-size: clamp(3.3rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
  color: var(--white);
}

.hero-title .accent {
  color: var(--accent);
}

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

.hero-text {
  max-width: 34rem;
  margin: 1.35rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
}

.hero-actions,
.actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.hero-actions {
  margin-top: 2rem;
}

.partner-strip {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 42rem;
  display: grid;
  gap: 0.75rem;
}

.partner-label {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.hero-partner-marquee {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.hero-partner-track {
  display: flex;
  width: max-content;
  gap: 0.9rem;
  animation: marquee-left 32s linear infinite;
  will-change: transform;
}

.hero-partner-sequence {
  display: flex;
  gap: 0.9rem;
}

.hero-partner-item {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.45rem 0.8rem 0.45rem 0.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero-partner-avatar {
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}

.hero-partner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.25rem;
}

.hero-partner-avatar--text {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-partner-name {
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-form-wrap {
  justify-content: flex-end;
}

.hero-form-card {
  width: 100%;
  max-width: 420px;
  padding: 36px;
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  color: var(--white);
  box-shadow: var(--shadow-strong);
}

.hero-form-label {
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0.75rem;
}

.hero-form-title {
  margin: 0 0 0.85rem;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.hero-form-copy {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.hero-form-fields {
  display: grid;
  gap: 0.8rem;
}

.hero-form-point {
  min-height: 50px;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-form-field {
  width: 100%;
  min-height: 50px;
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.hero-form-field::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

textarea.hero-form-field {
  min-height: 128px;
  resize: vertical;
}

.hero-form-actions {
  margin-top: 0.8rem;
}

.hero-form-note {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  line-height: 1.45;
}

.block-stats-bar {
  position: relative;
  z-index: 2;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stats-bar-inner {
  min-height: 148px;
  display: grid;
  align-items: center;
  padding-block: 42px;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 2.5rem;
  padding-inline: 1rem;
}

.stat-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.3rem 0.9rem;
  position: relative;
  align-items: center;
}

.stat-item + .stat-item::before {
  content: "";
  position: absolute;
  left: -1.75rem;
  top: -42px;
  width: 1px;
  height: calc(100% + 84px);
  background: rgba(10, 10, 10, 0.12);
}

.stat-value {
  margin: 0;
  color: var(--black);
  font-size: 2.35rem;
  line-height: 0.95;
  grid-column: 2;
}

.stat-label {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
  grid-column: 2;
}

.stat-icon,
.card-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--accent);
}

.stat-icon {
  grid-row: 1 / span 2;
  border: 1px solid var(--border);
  background: var(--off-white);
}

.card-icon {
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  background: var(--white);
}

.stat-icon svg,
.card-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.block-hero {
  padding-top: calc(84px + 5rem);
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(201, 78, 0, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 242, 236, 0.98));
}

.block-hero .container {
  display: grid;
  gap: 1rem;
}

.block-hero .eyebrow {
  color: var(--accent);
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb li {
  color: var(--text-muted);
  font-size: 0.94rem;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  color: rgba(10, 10, 10, 0.3);
}

.columns,
.card-grid,
.faq-list,
.footer-list {
  display: grid;
  gap: 1rem;
}

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

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

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

.card-stack {
  grid-template-columns: 1fr;
}

.card,
.column,
.faq-item,
.contact-quick-item,
.contact-brief,
.contact-form-wrap,
.legal-article,
.cta-panel {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.card-title,
.column h3,
.faq-item summary,
.contact-brief h2,
.contact-form-intro h2,
.legal-article h2,
.legal-article h3 {
  margin: 0 0 0.45rem;
  color: var(--black);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.38;
}

.card--clickable {
  position: relative;
}

.card-link-cover {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 2;
}

.card-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card--reasons {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.2rem;
  align-items: start;
  border-left: 3px solid var(--accent);
  padding-left: calc(1.7rem - 3px);
}

.reason-number {
  color: var(--accent);
  font-size: 3.4rem;
  line-height: 0.9;
}

.urgency-badge,
.process-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.75rem;
  border-radius: 999px;
  background: rgba(201, 78, 0, 0.1);
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.card--sectors {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card--sectors:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.08);
  border-color: rgba(10, 10, 10, 0.12);
}

.card--sectors-horizontal {
  display: grid;
  grid-template-columns: 9.25rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: start;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card--sectors-horizontal:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.08);
  border-color: rgba(10, 10, 10, 0.12);
}

.card--sectors-horizontal .card-head {
  margin-bottom: 0;
  display: grid;
  gap: 0.9rem;
  justify-items: start;
}

.card--sectors-horizontal .card-icon {
  width: 4rem;
  height: 4rem;
}

.card--sectors-horizontal .urgency-badge {
  min-height: 34px;
  padding-inline: 0.95rem;
}

.card--sectors-horizontal .card-title {
  margin-bottom: 0.65rem;
  font-size: 1.5rem;
  line-height: 1.23;
}

.card--sectors-horizontal .card-text {
  max-width: 32rem;
}

.card-grid.columns-3 .card--sectors-horizontal {
  grid-template-columns: 7.1rem minmax(0, 1fr);
  gap: 0.45rem;
}

.card--market .stat-value {
  font-size: 3rem;
}

.service-path-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-path-grid::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 78, 0, 0.42), transparent);
}

.card--service-path {
  position: relative;
  display: grid;
  gap: 1.1rem;
  padding: 24px;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(201, 78, 0, 0.24), rgba(10, 10, 10, 0.05)) border-box;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.card--service-path::after {
  content: "→";
  position: absolute;
  right: -0.85rem;
  top: 34px;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  z-index: 2;
}

.card--service-path:last-child::after {
  display: none;
}

.card--service-path:hover,
.card--service-path:focus {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(10, 10, 10, 0.1);
  outline: none;
}

.process-shell {
  display: grid;
  gap: 2rem;
}

.process-head {
  max-width: 56rem;
}

.process-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
}

.process-toolbar-copy {
  display: grid;
  gap: 0.35rem;
  max-width: 36rem;
}

.process-toolbar-label {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process-toolbar-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

.process-toolbar-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.process-toolbar-group {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 30px rgba(10, 10, 10, 0.05);
}

.process-tool {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  background: var(--white);
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.process-tool:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 78, 0, 0.28);
  box-shadow: 0 10px 22px rgba(201, 78, 0, 0.12);
}

.process-scale-indicator {
  min-width: 4.6rem;
  padding: 0 0.85rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.process-viewport {
  position: relative;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(201, 78, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 78, 0, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, #fff, #faf8f4);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92), 0 20px 40px rgba(10, 10, 10, 0.05);
}

.process-viewport.is-dragging {
  cursor: grabbing;
}

.process-canvas {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 5rem;
  width: max-content;
  min-width: 100%;
  padding: clamp(42px, 5vw, 72px);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.process-canvas::before {
  content: "";
  position: absolute;
  left: 8rem;
  right: 8rem;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(201, 78, 0, 0.08), rgba(201, 78, 0, 0.42), rgba(201, 78, 0, 0.08));
  transform: translateY(-50%);
}

.process-step {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.25rem;
  flex: 0 0 31rem;
  min-height: 30rem;
  padding: 2.4rem;
  border-radius: calc(var(--radius-lg) - 2px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(10, 10, 10, 0.07);
  box-shadow: 0 24px 48px rgba(10, 10, 10, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
  z-index: 1;
}

.process-step::before,
.process-step::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--accent);
  transform: translateY(-50%);
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.9);
}

.process-step::before {
  left: -0.62rem;
}

.process-step::after {
  right: -0.62rem;
}

.process-step:first-child::before,
.process-step:last-child::after {
  display: none;
}

.process-step:hover,
.process-step:focus {
  transform: translateY(-4px);
  border-color: rgba(201, 78, 0, 0.26);
  box-shadow: 0 28px 58px rgba(10, 10, 10, 0.12);
  outline: none;
}

.process-step.is-dimmed {
  opacity: 0.62;
}

.process-step-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
}

.process-step-number {
  color: rgba(10, 10, 10, 0.08);
  font-size: clamp(4.3rem, 7vw, 5.6rem);
  line-height: 0.82;
}

.process-step h3 {
  margin: 0;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 650;
  line-height: 1.2;
}

.process-step p {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.68;
  color: var(--text-muted);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-block: 18px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.85rem;
  animation: marquee-left 26s linear infinite;
}

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

.logo-marquee-item {
  min-width: 132px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.logo-marquee--text .logo-marquee-item {
  color: rgba(255, 255, 255, 0.84);
  white-space: nowrap;
}

.logo-marquee--partner-cards {
  min-height: 204px;
  padding-block: 12px;
}

.logo-marquee--partner-cards .logo-marquee-track {
  gap: 1rem;
}

.logo-marquee--partner-cards .logo-marquee-item {
  min-width: 190px;
  min-height: 108px;
  padding: 28px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.logo-marquee--partner-cards .logo-marquee-item img {
  width: 142px;
  height: 48px;
  object-fit: contain;
}

.logo-marquee--static {
  overflow: visible;
  min-height: 0;
  mask-image: none;
  -webkit-mask-image: none;
}

.logo-marquee--static .logo-marquee-track {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  animation: none;
}

.logo-marquee--static .logo-marquee-item {
  min-width: 0;
}

@keyframes marquee-left {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.425rem)); }
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
  margin: 0;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.faq-arrow {
  flex: 0 0 auto;
  width: 0.7rem;
  height: 0.7rem;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(225deg);
}

.faq-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px 20px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.faq-item:hover {
  border-color: rgba(201, 78, 0, 0.18);
}

.article-card {
  display: grid;
  gap: 0.75rem;
}

.article-card-date,
.article-card-link,
.article-card-topic {
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card-link {
  margin-top: 0.4rem;
}

.article-list-controls {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.article-list-options {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: flex-end;
  gap: 0.85rem;
}

.article-list-controls label {
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
}

.article-list-controls select,
.article-list-controls input[type="search"] {
  width: auto;
  min-width: 180px;
  min-height: 48px;
  padding: 0.7rem 2.2rem 0.7rem 0.85rem;
  background: var(--white);
}

.article-list-count {
  margin: 0;
}

.article-list-empty {
  margin: 1rem 0 0;
  color: var(--text-muted);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.pagination a,
.pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--black);
  cursor: pointer;
}

.pagination a[aria-current="page"],
.pagination button[aria-current="page"] {
  background: var(--black);
  color: var(--white);
}

.cta-panel {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.block-cta .container {
  width: 100%;
  max-width: none;
}

.block-cta .cta-panel {
  width: min(100% - (var(--desktop-inline) * 2), var(--page-max));
  margin-inline: auto;
  padding: 0;
  border: 0;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.block-cta .section-head {
  max-width: 62rem;
  margin-inline: auto;
  margin-bottom: 0;
  justify-items: center;
}

.block-cta .cta-actions {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.block-cta .section-subtitle,
.block-cta .cta-copy {
  max-width: 42rem;
}

.cta-copy {
  max-width: 34rem;
  margin: 0;
}

.page-content {
  min-height: 40vh;
}

.contact-page .contact-hero {
  background:
    radial-gradient(circle at top left, rgba(201, 78, 0, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 242, 236, 0.98));
}

.contact-form-section {
  border-top: 1px solid var(--border);
}

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.contact-info-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-info-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.7rem;
}

.contact-info-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(201, 78, 0, 0.08);
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-info-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

.contact-info-label {
  margin: 0;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-info-value {
  margin: 0;
  color: var(--black);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 1.25rem;
  align-items: start;
}

.contact-brief {
  position: sticky;
  top: 7.25rem;
  display: grid;
  gap: 0.85rem;
}

.contact-topic-list {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.contact-form-wrap {
  padding: 32px;
}

.contact-form-intro {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 600;
  color: var(--black);
}

input,
textarea,
select,
.form-field {
  width: 100%;
  min-height: 54px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--black);
}

textarea,
textarea.form-field {
  min-height: 132px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder,
.form-field::placeholder {
  color: rgba(10, 10, 10, 0.42);
}

.phone-field {
  display: flex;
  gap: 0.5rem;
}

.phone-field--inline {
  align-items: stretch;
}

.phone-country-select {
  max-width: 9rem;
}

.phone-number-input {
  flex: 1 1 auto;
  min-width: 0;
}

.hero-form-card .phone-field {
  gap: 0.45rem;
}

.hero-form-card .phone-country-select {
  max-width: 7.7rem;
}

.hero-form-card .phone-country-select option {
  color: var(--black);
}

.field-error,
.form-toast--error,
.is-invalid {
  color: #9b1c1c;
}

input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border-color: rgba(155, 28, 28, 0.35);
}

.field-hint,
.form-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.quote-service-field {
  position: relative;
}

.quote-service-label {
  font-weight: 600;
  color: var(--black);
}

.quote-multiselect {
  position: relative;
}

.quote-multiselect__button {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.quote-multiselect__button:hover,
.quote-multiselect.is-open .quote-multiselect__button {
  border-color: rgba(201, 78, 0, 0.28);
  background: var(--white);
}

.quote-multiselect__chevron {
  width: 0.58rem;
  height: 0.58rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.quote-multiselect.is-open .quote-multiselect__chevron {
  transform: translateY(2px) rotate(225deg);
}

.quote-multiselect__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 4;
  display: none;
  gap: 0.3rem;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 42px rgba(10, 10, 10, 0.12);
}

.quote-multiselect.is-open .quote-multiselect__panel {
  display: grid;
  animation: preview-card-enter 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quote-multiselect__option {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-sm);
  color: var(--black);
  cursor: pointer;
}

.quote-multiselect__option:hover {
  background: rgba(201, 78, 0, 0.08);
}

.quote-multiselect__option input {
  width: 1rem;
  height: 1rem;
  min-height: 1rem;
  padding: 0;
  accent-color: var(--accent);
}

.quote-multiselect__option--all {
  color: var(--accent);
  font-weight: 700;
  background: rgba(201, 78, 0, 0.06);
}

.quote-combobox {
  position: relative;
}

.quote-combobox__trigger {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
  color: var(--black);
  text-align: left;
  cursor: pointer;
  font-size: inherit;
}

.quote-combobox__trigger:hover,
.quote-combobox.is-open .quote-combobox__trigger {
  border-color: rgba(201, 78, 0, 0.28);
  background: var(--white);
}

.quote-combobox__trigger [data-county-label] {
  color: rgba(10, 10, 10, 0.42);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-combobox__trigger.has-value [data-county-label] {
  color: var(--black);
}

.quote-combobox.is-open .quote-combobox__trigger .quote-multiselect__chevron {
  transform: translateY(2px) rotate(225deg);
}

.quote-combobox__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.45rem);
  z-index: 4;
  display: none;
  flex-direction: column;
  padding: 0.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 20px 42px rgba(10, 10, 10, 0.12);
}

.quote-combobox.is-open .quote-combobox__panel {
  display: flex;
  animation: preview-card-enter 180ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.quote-combobox__search {
  margin-bottom: 0.4rem;
  min-height: 40px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--off-white);
  font-size: 0.9rem;
}

.quote-combobox__options {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  max-height: 200px;
  overflow-y: auto;
}

.quote-combobox__options [data-county-option] {
  width: 100%;
  min-height: 38px;
  display: flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  color: var(--black);
  font-size: inherit;
  text-align: left;
  cursor: pointer;
}

.quote-combobox__options [data-county-option]:hover,
.quote-combobox__options [data-county-option].is-selected {
  background: rgba(201, 78, 0, 0.08);
}

.quote-combobox__options [data-county-option].is-hidden {
  display: none;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-toast-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 320;
  width: min(420px, calc(100vw - 32px));
}

.form-toast {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(201, 78, 0, 0.28);
  border-radius: var(--radius-md);
  background: #fff4ee;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.16);
  animation: toast-slide-in 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.form-toast__content {
  display: grid;
  gap: 0.3rem;
  color: #7a2400;
}

.form-toast__content strong {
  color: #9c2f00;
}

.form-toast--error {
  border-color: rgba(201, 78, 0, 0.36);
  background: #ffe7da;
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.form-toast__close {
  width: auto;
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: #9c2f00;
}

.legal-content,
.error-page {
  padding-top: calc(84px + 4rem);
  padding-bottom: 4rem;
}

.legal-article {
  max-width: 860px;
  margin-inline: auto;
}

.legal-content .legal-article {
  padding: clamp(36px, 5vw, 72px);
}

.legal-article h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.legal-article ul,
.legal-article ol {
  padding-left: 1.2rem;
}

.article-page .article-hero {
  position: sticky;
  top: 0;
  z-index: 1;
  min-height: clamp(520px, 68vh, 680px);
  padding-bottom: 2.75rem;
}

.article-page .article-body-section {
  position: relative;
  z-index: 3;
  margin-top: -5vh;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  transition: box-shadow 180ms ease;
}

.article-page.article-depth .article-body-section {
  box-shadow: 0 -24px 52px rgba(10, 10, 10, 0.1);
}

.article-body {
  padding: clamp(36px, 5vw, 72px);
}

.article-body a {
  color: var(--accent);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.article-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.article-share__label {
  margin: 0;
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.article-share__button,
.footer-socials a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--accent);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.article-share__button:hover,
.article-share__button.is-copied {
  transform: translateY(-1px);
  border-color: rgba(201, 78, 0, 0.28);
  background: var(--accent);
  color: var(--white);
}

.article-share__button svg,
.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.article-bottom-nav,
.sibling-nav {
  max-width: none;
  width: 100%;
  margin: 1.25rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.article-bottom-card,
.sibling-nav-card {
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 24px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.sibling-nav-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(201, 78, 0, 0.1);
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}

.article-bottom-card span,
.sibling-nav-card span {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-bottom-card strong,
.sibling-nav-card strong {
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.35;
}

.article-bottom-card--next,
.sibling-nav-card--next {
  text-align: right;
  justify-items: end;
}

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  background: var(--off-white);
  color: var(--black);
  overflow: hidden;
}

.quote-modal.is-open,
.quote-modal.is-closing {
  display: block;
}

.quote-modal__panel {
  height: 100vh;
  height: 100dvh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  animation: quote-modal-open 280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.quote-modal.is-closing .quote-modal__panel {
  animation: quote-modal-close 240ms cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes quote-modal-open {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes quote-modal-close {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
}

.quote-modal__close {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  will-change: transform;
}

.quote-modal__close-icon {
  position: relative;
  width: 22px;
  height: 22px;
  display: block;
}

.quote-modal__close-icon::before,
.quote-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}

.quote-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.quote-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.quote-modal__close:hover {
  transform: translateY(-1px);
  border-color: rgba(201, 78, 0, 0.24);
  box-shadow: 0 10px 22px rgba(10, 10, 10, 0.08);
}

.quote-modal__form,
.quote-modal__preview {
  padding: clamp(28px, 5vw, 72px);
}

.quote-modal__form {
  display: grid;
  align-content: start;
  gap: 0.8rem;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: max(clamp(28px, 5vw, 72px), env(safe-area-inset-bottom, 0px));
}

.quote-modal__form h2 {
  max-width: 13ch;
  margin: 0.25rem 0 0.35rem;
  font-size: clamp(2.15rem, 3.6vw, 4.25rem);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.quote-modal__form > p {
  max-width: 38rem;
  margin-bottom: 0.15rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.quote-modal__preview {
  display: grid;
  align-content: start;
  max-height: 100vh;
  max-height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-left: 1px solid var(--border);
  background:
    linear-gradient(rgba(201, 78, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 78, 0, 0.08) 1px, transparent 1px),
    #fff;
  background-size: 28px 28px;
}

.workflow-preview-head {
  display: none;
  gap: 0.55rem;
  margin-bottom: 1.2rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 14px 34px rgba(10, 10, 10, 0.05);
}

.workflow-preview-head.is-active {
  display: grid;
  animation: preview-card-enter 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.workflow-preview-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workflow-preview-head h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.2;
}

.workflow-preview-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.6rem;
}

.workflow-preview-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.1rem 0.75rem;
  border-radius: 999px;
  background: rgba(201, 78, 0, 0.08);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.workflow-preview {
  display: grid;
  gap: 1rem;
  margin-top: 0;
}

.workflow-preview article {
  position: relative;
  display: none;
  gap: 0.45rem;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-soft);
}

.workflow-preview article:not(:last-child)::after {
  content: "↓";
  position: absolute;
  left: 50%;
  bottom: -1.15rem;
  width: 1.7rem;
  height: 1.7rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}

.workflow-preview article.is-active {
  display: grid;
  animation: preview-card-enter 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes preview-card-enter {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.workflow-preview span {
  color: var(--accent);
  font-weight: 750;
}

.workflow-preview strong {
  font-size: 1.25rem;
  min-height: 1.5em;
}

.workflow-preview p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.55;
}

.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

.footer-top {
  padding-block: 4.5rem 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1fr 1.1fr;
  gap: 2rem 3rem;
}

.footer-logo img {
  width: auto;
  height: 28px;
  margin-bottom: 1rem;
}

.footer-copy {
  max-width: 28rem;
  margin: 0;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.footer-socials a:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--accent);
}

.footer-legal-links {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.footer-compliance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.footer-compliance img {
  display: block;
  height: auto;
  max-height: 58px;
  width: auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.25rem;
}

.footer-legal-links a {
  display: inline-flex;
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-legal-links a:hover {
  color: var(--white);
  transform: translateX(2px);
}

.footer-title {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.96rem;
  font-weight: 600;
}

.footer-list {
  gap: 0.6rem;
}

.footer-list a:hover {
  color: var(--white);
}

.footer-list--contact span {
  line-height: 1.6;
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 1.15rem 1.4rem;
}

.footer-legal-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 2rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1rem;
}

.footer-credit a {
  color: var(--white);
}

.footer-links a:hover {
  color: var(--white);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-mode-bar {
  position: fixed;
  inset: auto 0 0;
  z-index: 120;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 0.75rem 1rem;
}

.admin-mode-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.1rem;
}

@media (max-width: 1100px) {
  .site-nav {
    display: none;
  }

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

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

  .site-drawer {
    display: grid;
  }

  .block-hero-split {
    min-height: auto;
  }

  .hero-grid,
  .section-split,
  .contact-shell,
  .footer-grid,
  .contact-main,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .contact-brief {
    position: static;
  }

  .hero-form-wrap,
  .hero-copy-wrap {
    justify-content: center;
  }

  .hero-copy {
    text-align: center;
    margin-inline: auto;
  }

  .hero-text,
  .partner-strip {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-grid {
    min-height: 100svh;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-block: 104px 32px;
  }

  .hero-form-wrap {
    order: 2;
  }

  .hero-copy-wrap {
    order: 1;
  }

  .hero-form-card {
    max-width: none;
    padding: 28px 24px;
  }

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

  .process-toolbar-controls {
    width: 100%;
    justify-content: space-between;
  }

  .process-canvas {
    gap: 3rem;
    padding: 2rem;
  }

  .process-step {
    flex-basis: min(86vw, 28rem);
    min-height: 25rem;
    padding: 1.9rem;
  }

  .card-grid.columns-3,
  .card-grid.columns-2,
  .service-path-grid {
    grid-template-columns: 1fr;
  }

  .card--sectors-horizontal {
    grid-template-columns: 1fr;
  }

  .card--sectors-horizontal .card-head {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
  }

  .section-head--sticky {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - (var(--mobile-inline) * 2), var(--page-max));
  }

  .section {
    padding-block: 80px;
  }

  .live-badge {
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    font-size: 0.62rem;
    letter-spacing: 0.09em;
    white-space: nowrap;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 4.5rem);
    line-height: 1.08;
  }

  .hero-actions,
  .actions,
  .cta-actions,
  .form-actions {
    align-items: stretch;
  }

  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-ghost-light,
  button[type="submit"] {
    width: 100%;
    justify-content: center;
  }

  .stats-list,
  .columns--cards,
  .contact-card-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .block-timeline .container {
    width: 100%;
  }

  .block-timeline .section-head {
    padding-inline: var(--mobile-inline);
  }

  .process-shell {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-inline: 0;
  }

  .process-viewport {
    border-radius: 0;
    border-left: none;
    border-right: none;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    cursor: default;
  }

  .process-viewport::-webkit-scrollbar {
    display: none;
  }

  .process-step {
    scroll-snap-align: start;
  }

  .process-toolbar {
    padding-inline: var(--mobile-inline);
  }

  .process-toolbar-controls {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.65rem;
  }

  .process-toolbar-group {
    width: auto;
    flex: 1 1 0;
    justify-content: space-between;
  }

  .process-canvas {
    gap: 1rem;
    padding: 1.5rem var(--mobile-inline);
  }

  .process-step {
    flex-basis: 84vw;
    min-height: 21rem;
    padding: 1.5rem;
  }

  .process-canvas::before,
  .service-path-grid::before,
  .card--service-path::after {
    display: none;
  }

  .process-step::before,
  .process-step::after {
    display: none;
  }

  .stats-list {
    gap: 1rem;
    padding-inline: 0;
  }

  .stat-item {
    padding-block: 0.8rem;
  }

  .stat-item + .stat-item::before {
    display: none;
  }

  .logo-marquee-item {
    min-width: 124px;
  }

  .footer-legal-inner,
  .footer-links {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-compliance {
    justify-content: center;
  }

  .article-list-controls,
  .quote-modal__panel {
    grid-template-columns: 1fr;
  }

  .article-list-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .article-list-options {
    width: 100%;
    justify-content: stretch;
  }

  .article-list-options > * {
    width: 100%;
  }

  .article-bottom-nav,
  .sibling-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .quote-modal__preview {
    display: none;
  }

  .quote-modal__form h2 {
    max-width: none;
  }

  .form-toast-stack {
    padding-inline: 12px;
  }
}
