* {
  box-sizing: border-box;
}

:root {
  --ws-ink: #172033;
  --ws-text: #344054;
  --ws-muted: #667085;
  --ws-border: #e3e8ef;
  --ws-soft: #f6f8fb;
  --ws-surface: #ffffff;
  --ws-orange: #f97316;
  --ws-orange-dark: #c2410c;
  --ws-teal: #14b8a6;
  --ws-green: #16a34a;
  --ws-radius: 8px;
  --ws-shadow: 0 18px 48px rgba(23, 32, 51, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ws-text);
  background: var(--ws-surface);
  font-family: var(--tm-font);
  font-size: 15px;
}

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

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

button {
  cursor: pointer;
}

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

.ws-site {
  min-height: 100vh;
  overflow-x: hidden;
}

.ws-container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.ws-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(227, 232, 239, 0.86);
  backdrop-filter: blur(14px);
}

.ws-brand,
.ws-header-actions,
.ws-nav,
.ws-btn,
.ws-kicker,
.ws-trust,
.ws-benefits div,
.ws-cta .ws-container,
.ws-footer .ws-container {
  display: flex;
  align-items: center;
}

.ws-brand {
  gap: 11px;
}

.ws-brand > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--ws-orange-dark);
  background: #fff2e8;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

.ws-brand > span.has-logo {
  background: #ffffff;
  border-color: var(--ws-border);
}

.ws-brand > span.has-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ws-brand strong,
.ws-brand small,
.ws-section-title span,
.ws-section-title h2,
.ws-section-title p,
.ws-service-grid p,
.ws-case-grid strong,
.ws-case-grid span,
.ws-process strong,
.ws-process p,
.ws-footer strong,
.ws-footer span {
  display: block;
}

.ws-brand strong {
  color: var(--ws-ink);
  font-size: 17px;
  line-height: 22px;
}

.ws-brand small {
  margin-top: 2px;
  color: var(--ws-muted);
  font-size: 12px;
  line-height: 16px;
}

.ws-nav {
  justify-content: center;
  gap: 24px;
  color: var(--ws-text);
  font-size: 14px;
}

.ws-nav a {
  padding: 9px 0;
}

.ws-nav a:hover {
  color: var(--ws-orange-dark);
}

.ws-header-actions {
  gap: 10px;
}

.ws-btn {
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  padding: 0 15px;
  color: var(--ws-ink);
  background: var(--ws-surface);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
  font-weight: 800;
  white-space: nowrap;
}

.ws-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.2;
}

.ws-btn-primary {
  color: #ffffff;
  background: var(--ws-orange);
  border-color: var(--ws-orange);
}

.ws-btn-light {
  background: #ffffff;
}

.ws-btn-large {
  min-height: 48px;
  padding: 0 20px;
  font-size: 16px;
}

.ws-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 32, 51, 0.1);
}

.ws-hero {
  position: relative;
  min-height: 590px;
  color: #ffffff;
  overflow: hidden;
}

.ws-hero > img,
.ws-hero-overlay {
  position: absolute;
  inset: 0;
}

.ws-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ws-hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 18, 32, 0.78), rgba(12, 18, 32, 0.48) 48%, rgba(12, 18, 32, 0.22)),
    linear-gradient(180deg, rgba(12, 18, 32, 0.12), rgba(12, 18, 32, 0.52));
}

.ws-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 56px;
}

.ws-kicker {
  width: max-content;
  min-height: 32px;
  padding: 0 12px;
  color: #fff7ed;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.ws-kicker svg {
  width: 15px;
  height: 15px;
}

.ws-hero h1 {
  max-width: 760px;
  margin: 20px 0 0;
  font-size: 54px;
  line-height: 64px;
  font-weight: 900;
}

.ws-hero p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 32px;
}

.ws-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ws-hero-actions .ws-btn-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
}

.ws-trust {
  gap: 12px;
  width: min(720px, 100%);
  margin-top: 44px;
}

.ws-trust div {
  min-width: 0;
  flex: 1;
  min-height: 88px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--ws-radius);
  backdrop-filter: blur(10px);
}

.ws-trust strong,
.ws-trust span {
  display: block;
}

.ws-trust strong {
  color: #ffffff;
  font-size: 24px;
  line-height: 32px;
}

.ws-trust span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 20px;
}

.ws-section {
  padding: 72px 0;
}

.ws-soft-band {
  background: var(--ws-soft);
  border-top: 1px solid var(--ws-border);
  border-bottom: 1px solid var(--ws-border);
}

.ws-quick {
  padding: 26px 0;
  background: #fffaf5;
  border-bottom: 1px solid rgba(249, 115, 22, 0.16);
}

.ws-quick-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.3fr;
  gap: 14px;
}

.ws-quick-grid div {
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(249, 115, 22, 0.16);
  border-radius: var(--ws-radius);
}

.ws-quick-grid span,
.ws-quick-grid strong {
  display: block;
}

.ws-quick-grid span {
  color: var(--ws-muted);
  font-size: 12px;
  line-height: 18px;
}

.ws-quick-grid strong {
  margin-top: 5px;
  color: var(--ws-ink);
  line-height: 23px;
}

.ws-section-title {
  max-width: 700px;
  margin-bottom: 26px;
}

.ws-section-title span {
  color: var(--ws-orange-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 20px;
}

.ws-section-title h2 {
  margin: 8px 0 0;
  color: var(--ws-ink);
  font-size: 32px;
  line-height: 42px;
}

.ws-section-title p {
  margin: 10px 0 0;
  color: var(--ws-muted);
  line-height: 25px;
}

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

.ws-service-grid article,
.ws-case-grid article,
.ws-process div {
  background: var(--ws-surface);
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.04);
}

.ws-service-grid article {
  min-height: 210px;
  padding: 20px;
}

.ws-service-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ws-service-head i {
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--ws-teal);
}

.ws-service-head svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.9;
}

.ws-service-head strong {
  color: var(--ws-ink);
  font-size: 19px;
  line-height: 26px;
}

.ws-service-grid p {
  margin: 14px 0 0;
  color: var(--ws-muted);
  line-height: 24px;
}

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

.ws-split .ws-section-title {
  margin-bottom: 0;
}

.ws-benefits {
  display: grid;
  gap: 14px;
}

.ws-benefits div {
  gap: 14px;
  min-height: 92px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
}

.ws-benefits svg {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  color: var(--ws-orange);
  stroke-width: 1.9;
}

.ws-benefits strong,
.ws-benefits span {
  display: block;
}

.ws-benefits strong {
  flex: 0 0 72px;
  color: var(--ws-ink);
  font-size: 18px;
  line-height: 24px;
  white-space: nowrap;
}

.ws-benefits span {
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 4px;
  color: var(--ws-muted);
  line-height: 22px;
}

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

.ws-case-grid article {
  overflow: hidden;
}

.ws-case-grid img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--ws-soft);
}

.ws-case-grid div {
  padding: 16px;
}

.ws-case-grid strong {
  color: var(--ws-ink);
  font-size: 18px;
  line-height: 24px;
}

.ws-case-grid span {
  margin-top: 6px;
  color: var(--ws-muted);
  line-height: 22px;
}

.ws-process div {
  min-height: 176px;
  padding: 18px;
}

.ws-process span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  background: var(--ws-orange);
  border-radius: 50%;
  font-weight: 900;
}

.ws-process strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-left: 10px;
  vertical-align: top;
}

.ws-process strong {
  color: var(--ws-ink);
  font-size: 18px;
  line-height: 24px;
}

.ws-process p {
  margin: 8px 0 0;
  color: var(--ws-muted);
  line-height: 22px;
}

.ws-faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 42px;
  align-items: start;
}

.ws-faq-layout .ws-section-title {
  margin-bottom: 0;
}

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

.ws-faq-list details {
  background: #ffffff;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
}

.ws-faq-list summary {
  padding: 17px 18px;
  color: var(--ws-ink);
  font-weight: 900;
  cursor: pointer;
}

.ws-faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--ws-muted);
  line-height: 24px;
}

.ws-cta {
  padding: 44px 0;
  color: #ffffff;
  background: #172033;
}

.ws-cta .ws-container {
  justify-content: space-between;
  gap: 26px;
}

.ws-cta span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.ws-cta h2 {
  margin: 6px 0 0;
  font-size: 30px;
  line-height: 40px;
}

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

.ws-cta .ws-btn-light {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}

.ws-footer {
  padding: 24px 0;
  background: #0f1726;
}

.ws-footer .ws-container {
  justify-content: space-between;
  gap: 20px;
}

.ws-footer strong {
  color: #ffffff;
  line-height: 22px;
}

.ws-footer span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 20px;
}

.ws-footer .ws-container > div:last-child {
  text-align: right;
}

.ws-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  min-width: 180px;
  padding: 12px 14px;
  color: #ffffff;
  background: var(--ws-ink);
  border-radius: var(--ws-radius);
  box-shadow: var(--ws-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
}

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

.ws-back-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ws-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--ws-border);
  border-radius: 50%;
  box-shadow: var(--ws-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: 0.18s ease;
}

.ws-back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ws-back-top svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
}

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

.site-lead-fab {
  position: fixed;
  right: 24px;
  bottom: 82px;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--ws-orange);
  border: 0;
  border-radius: 999px;
  box-shadow: var(--ws-shadow);
  font-weight: 900;
  cursor: pointer;
}

.site-lead-fab svg {
  width: 17px;
  height: 17px;
}

.site-lead-drawer {
  position: fixed;
  right: 24px;
  bottom: 140px;
  z-index: 76;
  width: min(340px, calc(100vw - 32px));
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--ws-border);
  border-radius: 18px;
  box-shadow: var(--ws-shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: 0.18s ease;
}

.site-lead-drawer.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-lead-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.site-lead-head strong {
  color: var(--ws-ink);
  font-size: 18px;
}

.site-lead-head button {
  width: 32px;
  height: 32px;
  color: var(--ws-muted);
  background: var(--ws-soft);
  border: 1px solid var(--ws-border);
  border-radius: 999px;
  font-size: 20px;
  cursor: pointer;
}

.site-lead-drawer form,
.site-lead-drawer label {
  display: grid;
  gap: 10px;
}

.site-lead-drawer label {
  color: var(--ws-muted);
  font-size: 13px;
  font-weight: 800;
}

.site-lead-drawer input,
.site-lead-drawer textarea {
  width: 100%;
  color: var(--ws-ink);
  background: #f9fbfd;
  border: 1px solid var(--ws-border);
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  outline: none;
}

.site-lead-drawer form > button {
  min-height: 44px;
  color: #ffffff;
  background: var(--ws-orange);
  border: 0;
  border-radius: 12px;
  font-weight: 900;
  cursor: pointer;
}

@media (max-width: 980px) {
  .ws-header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px 18px;
  }

  .ws-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .ws-header-actions {
    justify-content: flex-start;
  }

  .ws-hero {
    min-height: 620px;
  }

  .ws-hero h1 {
    font-size: 38px;
    line-height: 48px;
  }

  .ws-trust,
  .ws-quick-grid,
  .ws-service-grid,
  .ws-case-grid,
  .ws-process,
  .ws-split,
  .ws-faq-layout,
  .ws-cta .ws-container,
  .ws-footer .ws-container {
    grid-template-columns: 1fr;
  }

  .ws-trust,
  .ws-cta .ws-container,
  .ws-footer .ws-container {
    display: grid;
    align-items: stretch;
  }

  .ws-split,
  .ws-faq-layout {
    gap: 24px;
  }

  .ws-footer .ws-container > div:last-child {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 76px;
  }

  .ws-container,
  .ws-hero-inner {
    width: min(100% - 32px, 1180px);
  }

  .ws-section {
    padding: 52px 0;
  }

  .ws-nav {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    padding: 2px 0 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .ws-nav::-webkit-scrollbar {
    display: none;
  }

  .ws-nav a {
    flex: 0 0 auto;
    min-height: 30px;
    padding: 6px 10px;
    color: var(--ws-text);
    background: var(--ws-soft);
    border: 1px solid var(--ws-border);
    border-radius: 999px;
    font-size: 13px;
    line-height: 16px;
  }

  .ws-header-actions {
    display: none;
  }

  .ws-btn {
    min-width: 0;
    padding: 0 10px;
  }

  .ws-header {
    min-height: 64px;
    padding: 10px 16px;
  }

  .ws-brand > span {
    width: 38px;
    height: 38px;
  }

  .ws-brand strong {
    font-size: 16px;
    line-height: 20px;
  }

  .ws-hero {
    min-height: 560px;
  }

  .ws-hero-overlay {
    background:
      linear-gradient(180deg, rgba(12, 18, 32, 0.36), rgba(12, 18, 32, 0.82)),
      linear-gradient(90deg, rgba(12, 18, 32, 0.68), rgba(12, 18, 32, 0.38));
  }

  .ws-hero-inner {
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .ws-kicker {
    width: fit-content;
    max-width: 100%;
  }

  .ws-hero h1 {
    margin-top: 16px;
    font-size: 34px;
    line-height: 42px;
  }

  .ws-hero p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 28px;
  }

  .ws-hero-actions,
  .ws-trust,
  .ws-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ws-hero-actions .ws-btn {
    min-height: 46px;
  }

  .ws-trust {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
  }

  .ws-trust div {
    min-height: 62px;
    padding: 10px 8px;
  }

  .ws-trust strong {
    font-size: 18px;
    line-height: 24px;
    white-space: nowrap;
  }

  .ws-trust span {
    margin-top: 2px;
    font-size: 12px;
    line-height: 16px;
  }

  .ws-quick {
    padding: 16px 0;
  }

  .ws-quick-grid {
    gap: 10px;
  }

  .ws-service-grid article,
  .ws-process div {
    min-height: auto;
  }

  .ws-case-grid img {
    height: 210px;
  }

  .ws-benefits div {
    align-items: center;
    gap: 12px;
    padding: 16px;
  }

  .ws-faq-list summary {
    padding: 15px 16px;
  }

  .ws-section-title h2,
  .ws-cta h2 {
    font-size: 26px;
    line-height: 34px;
  }

  .ws-cta {
    padding: 34px 0;
  }

  .ws-footer {
    padding-bottom: 28px;
  }

  .ws-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--ws-border);
    box-shadow: 0 -12px 28px rgba(23, 32, 51, 0.08);
    backdrop-filter: blur(14px);
  }

  .ws-mobile-bar a,
  .ws-mobile-bar button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 46px;
    color: var(--ws-ink);
    background: #ffffff;
    border: 1px solid var(--ws-border);
    border-radius: var(--ws-radius);
    font-weight: 900;
    text-decoration: none;
  }

  .ws-mobile-bar a {
    color: #ffffff;
    background: var(--ws-orange);
    border-color: var(--ws-orange);
  }

  .ws-mobile-bar svg {
    width: 16px;
    height: 16px;
    stroke-width: 2.2;
  }

  .ws-toast {
    right: 16px;
    bottom: 88px;
    left: 16px;
    text-align: center;
  }

  .ws-back-top {
    right: 16px;
    bottom: 88px;
    width: 42px;
    height: 42px;
  }
}
