:root {
  --sw-orange: #ff6819;
  --sw-orange-dark: #dc4f0b;
  --sw-ink: #171b24;
  --sw-text: #343b49;
  --sw-muted: #687182;
  --sw-bg: #fbfaf8;
  --sw-soft: #f5f3ef;
  --sw-card: #ffffff;
  --sw-border: rgba(23, 27, 36, 0.1);
  --sw-shadow: 0 18px 55px rgba(23, 27, 36, 0.09);
  --sw-green: #073f3a;
  --sw-line: #dfe6e2;
  --sw-radius-lg: 28px;
  --sw-radius-md: 18px;
  --sw-radius-sm: 12px;
  --sw-container: min(1320px, calc(100% - 72px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.sw-mock-page {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--sw-text);
  background: var(--sw-bg);
  line-height: 1.55;
  overflow-x: hidden;
}

body.sw-mock-page img { max-width: 100%; height: auto; }
body.sw-mock-page a { color: inherit; }

body.sw-mock-page main,
body.sw-mock-page section,
body.sw-mock-page footer {
  max-width: 100%;
}

body.sw-mock-page :where(h1, h2, h3, p, a, strong, span, li) {
  overflow-wrap: break-word;
}

body.sw-mock-page .sticky-header {
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid rgba(23,27,36,.08);
  box-shadow: 0 8px 28px rgba(23,27,36,.04);
}

body.sw-mock-page .container-fluid,
body.sw-mock-page .header-nav,
body.sw-mock-page .nav-container {
  max-width: 100%;
}

body.sw-mock-page .menu-items > ul > li > a,
body.sw-mock-page .nav-audit-link,
body.sw-mock-page .contact-info {
  letter-spacing: 0;
  text-transform: uppercase;
}

body.sw-mock-page .menu-items > ul > li > a {
  font-weight: 900;
}

.skip-link {
  position: absolute;
  top: -70px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--sw-ink);
}
.skip-link:focus { top: 14px; }

.sw-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;
}

.sw-container { width: var(--sw-container); margin: 0 auto; }

.sw-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid rgba(23,27,36,0.08);
  backdrop-filter: blur(16px);
}
.sw-header__inner {
  width: var(--sw-container);
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.sw-logo img { display: block; width: 182px; height: auto; }
.sw-nav { display: flex; align-items: center; gap: 25px; font-size: 0.91rem; font-weight: 750; }
.sw-nav a { text-decoration: none; color: #1f2430; }
.sw-nav a.is-active { color: var(--sw-orange-dark); }
.sw-nav a.is-active::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 6px;
  background: var(--sw-orange);
  border-radius: 999px;
}
.sw-header__actions { display: flex; align-items: center; gap: 12px; }
.sw-menu { display: none; }

.sw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: inherit;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.92rem;
  font-weight: 850;
  text-decoration: none;
  line-height: 1;
  white-space: normal;
  text-align: center;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}
.sw-btn:hover, .sw-btn:focus { transform: translateY(-2px); text-decoration: none; }
.sw-btn:active { transform: translateY(0); }
.sw-btn:focus-visible { outline: 3px solid rgba(255,159,0,.34); outline-offset: 4px; }
.sw-btn--primary { color: #fff; background: linear-gradient(135deg, #ff6819 0%, #ff9d00 100%); box-shadow: 0 22px 42px rgba(255,104,25,.28); }
.sw-btn--primary:hover, .sw-btn--primary:focus-visible { color: #fff; background: linear-gradient(135deg, #f45c10 0%, #ff8c00 100%); box-shadow: 0 26px 50px rgba(255,104,25,.34); }
.sw-btn--ghost { color: var(--sw-ink); background: #fff; border-color: var(--sw-border); box-shadow: 0 12px 28px rgba(23,27,36,.07); }
.sw-btn--ghost:hover, .sw-btn--ghost:focus-visible { color: #fff; border-color: var(--sw-green); background: var(--sw-green); }
.sw-btn--white { color: var(--sw-green); border-color: rgba(7,63,58,.2); background: rgba(255,255,255,.88); box-shadow: inset 0 0 0 1px rgba(255,255,255,.72), 0 16px 36px rgba(23,27,36,.06); backdrop-filter: blur(10px); }
.sw-btn--white:hover, .sw-btn--white:focus-visible { color: #fff; border-color: var(--sw-green); background: var(--sw-green); }
.sw-btn--outline-light { color: #fff; background: transparent; border-color: rgba(255,255,255,.78); }
.sw-btn--outline-light:hover, .sw-btn--outline-light:focus-visible { color: var(--sw-green); background: #fff; border-color: #fff; }
.sw-btn--big { min-height: 56px; padding: 0 26px; border-radius: 12px; }
.sw-hero__actions .sw-btn { min-height: 58px; padding-inline: 24px; border-radius: 12px; font-size: 1rem; }
button.sw-btn[data-contact-subject] { font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: .92rem; font-weight: 850; line-height: 1; }
button.sw-btn--big[data-contact-subject] { font-size: 1rem; }
body.sw-mock-page .sw-btn--primary,
body.sw-mock-page .sw-showcase-cta {
  color: #fff;
}
body.sw-mock-page .sw-btn--white {
  color: var(--sw-green);
}

.sw-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 6vw, 82px) 0 38px;
  background:
    linear-gradient(110deg, rgba(255,104,25,.06) 0%, transparent 34%),
    linear-gradient(90deg, rgba(7,63,58,.035) 0%, transparent 42%),
    linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}
.sw-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(520px, 1.12fr);
  gap: clamp(42px, 6vw, 84px);
  align-items: center;
}
.sw-hero__content,
.sw-dashboard,
.sw-hero-showcase {
  min-width: 0;
}
.sw-eyebrow {
  margin: 0 0 18px;
  color: var(--sw-orange-dark);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.sw-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--sw-ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(3.1rem, 4.2vw, 4.55rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: anywhere;
}
.sw-hero h1::after {
  content: "";
  display: block;
  width: min(250px, 42%);
  height: 5px;
  margin: 16px 0 0 0;
  border-radius: 999px;
  background: var(--sw-orange);
}
.sw-hero__lead {
  max-width: 575px;
  margin: 22px 0 0;
  color: #424a59;
  font-size: 1.08rem;
}
.sw-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.sw-location { margin: 24px 0 0; color: #565f70; font-size: .96rem; }
.sw-location strong { color: var(--sw-ink); }
.sw-location span { color: var(--sw-orange-dark); font-weight: 900; }

.sw-hero-proofline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin-top: 24px;
}
.sw-hero-proofline span {
  min-width: 0;
  padding: 12px 13px;
  border: 1px solid rgba(7,63,58,.1);
  border-radius: 10px;
  color: #596374;
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 24px rgba(23,27,36,.045);
  font-size: .8rem;
  line-height: 1.28;
}
.sw-hero-proofline strong {
  display: block;
  color: var(--sw-ink);
  font-size: .84rem;
  line-height: 1.15;
}

.sw-hero-showcase {
  position: relative;
  isolation: isolate;
}
.sw-hero-showcase::before {
  content: "";
  position: absolute;
  inset: 38px -22px -20px 28px;
  z-index: -1;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,104,25,.2), transparent 42%),
    linear-gradient(135deg, rgba(7,63,58,.12), rgba(7,63,58,.02));
  filter: blur(10px);
}
.sw-showcase-shell {
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  background:
    linear-gradient(135deg, #0d1818 0%, #102521 48%, #17201c 100%);
  box-shadow: 0 28px 80px rgba(23,27,36,.2);
}
.sw-showcase-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: rgba(255,255,255,.68);
}
.sw-showcase-toolbar strong {
  margin-right: auto;
  color: #fff;
  font-size: .96rem;
  letter-spacing: 0;
}
.sw-showcase-toolbar span {
  color: rgba(255,255,255,.62);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sw-showcase-toolbar i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.sw-showcase-media {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  background: #f8f5ee;
  text-decoration: none;
}
.sw-showcase-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(6,20,18,.7));
  pointer-events: none;
}
body.sw-mock-page .sw-showcase-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.02);
}
.sw-showcase-tag,
.sw-showcase-cta {
  position: absolute;
  z-index: 1;
}
.sw-showcase-tag {
  left: 18px;
  bottom: 18px;
  max-width: 260px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
  text-shadow: 0 2px 16px rgba(0,0,0,.28);
}
.sw-showcase-cta {
  right: 18px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 9px;
  color: #fff;
  background: var(--sw-orange);
  box-shadow: 0 14px 28px rgba(255,104,25,.28);
  font-size: .82rem;
  font-weight: 900;
}
.sw-showcase-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.sw-showcase-meta article {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.08);
}
.sw-showcase-meta strong {
  display: block;
  color: #fff;
  font-size: .9rem;
}
.sw-showcase-meta span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.66);
  font-size: .76rem;
  line-height: 1.32;
}
.sw-showcase-float {
  position: absolute;
  z-index: 2;
  max-width: 245px;
  padding: 16px 18px;
  border: 1px solid rgba(23,27,36,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(23,27,36,.12);
  backdrop-filter: blur(14px);
}
.sw-showcase-float strong {
  display: block;
  color: var(--sw-ink);
  font-size: .92rem;
}
.sw-showcase-float span {
  display: block;
  margin-top: 4px;
  color: #5f6877;
  font-size: .8rem;
  line-height: 1.35;
}
.sw-showcase-float--top {
  top: -22px;
  right: -18px;
}
.sw-showcase-float--bottom {
  left: -24px;
  bottom: 72px;
}

.sw-dashboard {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(23,27,36,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--sw-shadow);
}
.sw-dashboard::before {
  content: "";
  position: absolute;
  left: -50px;
  top: 155px;
  width: 36px;
  height: 80px;
  background-image: radial-gradient(var(--sw-orange) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  opacity: .55;
}
.sw-dashboard__top { display: flex; align-items: center; gap: 7px; margin-bottom: 12px; color: #303747; font-weight: 900; }
.sw-dashboard__top span { margin-right: auto; }
.sw-dashboard__top i { width: 10px; height: 10px; border-radius: 50%; background: #d6d8de; }
.sw-dashboard__main { display: grid; grid-template-columns: 1fr 170px; gap: 14px; }
.sw-site-preview {
  min-height: 365px;
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(7,63,58,.1);
  color: var(--sw-ink);
  background:
    radial-gradient(circle at 82% 16%, rgba(255,104,25,.16), transparent 12rem),
    linear-gradient(135deg, #fffaf4 0%, #ffffff 45%, #f4f8f6 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sw-device-showcase {
  position: relative;
  min-height: 286px;
}
.sw-laptop-mockup {
  position: relative;
  width: 100%;
}
.sw-laptop-mockup__screen {
  overflow: hidden;
  padding: 0;
  border-radius: 14px;
  border: 1px solid rgba(7,63,58,.12);
  background: #fff;
  box-shadow: 0 22px 46px rgba(23,27,36,.13);
}
.sw-browser-strip {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 24px;
  padding: 0 10px;
  border-radius: 13px 13px 0 0;
  color: #5c6675;
  background: #f7f6f2;
  font-size: .58rem;
  font-weight: 850;
  text-transform: uppercase;
}
.sw-browser-strip i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cfd3d8;
}
.sw-browser-strip span {
  margin-left: auto;
}
body.sw-mock-page .sw-laptop-mockup img {
  display: block;
  width: 100%;
  height: clamp(240px, 18vw, 286px);
  border-radius: 0 0 13px 13px;
  object-fit: cover;
  object-position: 50% 50%;
  background: #fff;
}
.sw-laptop-mockup__base {
  display: none;
}
.sw-site-preview__caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-top: 12px;
}
.sw-site-preview__caption span {
  color: #324052;
  font-size: .78rem;
  font-weight: 900;
}
.sw-site-preview__caption a {
  display: inline-flex;
  padding: 10px 15px;
  border-radius: 8px;
  background: var(--sw-orange);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(255,104,25,.2);
}
.sw-score-card { padding: 20px 18px; border-radius: 12px; background: #fff; border: 1px solid var(--sw-border); text-align: center; }
.sw-score-card span { display: block; color: #293142; font-size: .86rem; font-weight: 800; }
.sw-score-card strong { display: grid; place-items: center; width: 86px; height: 86px; margin: 16px auto 12px; border: 7px solid #24bd79; border-radius: 50%; color: #1e293b; font-size: 2.1rem; }
.sw-score-card p { margin: 0; color: #536071; font-size: .88rem; }
.sw-dashboard__metrics { display: grid; grid-template-columns: 1fr 1fr 1.05fr; gap: 14px; margin-top: 14px; }
.sw-dashboard__metrics article { padding: 18px; border-radius: 12px; border: 1px solid var(--sw-border); background: #fff; }
.sw-dashboard__metrics span { color: #313849; font-size: .86rem; font-weight: 850; }
.sw-dashboard__metrics strong { display: block; margin-top: 34px; color: var(--sw-green); font-size: 1.75rem; }
.sw-dashboard__metrics p { margin: 4px 0 0; color: #7a8393; font-size: .78rem; }
.sw-dashboard__metrics ul { margin: 12px 0 10px; padding: 0; list-style: none; color: #505a69; font-size: .82rem; }
.sw-dashboard__metrics li { display: flex; justify-content: space-between; gap: 12px; }
.sw-dashboard__metrics a { color: var(--sw-orange-dark); font-size: .8rem; font-weight: 900; text-decoration: none; }
.sw-dashboard__badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 14px; }
.sw-dashboard__badges span { min-height: 36px; display: grid; place-items: center; border-radius: 8px; color: #486055; background: #f4fbf7; border: 1px solid #d9efe2; font-size: .78rem; font-weight: 850; text-align: center; }

.sw-fast-proof {
  padding: 18px 0 24px;
  background: #fff;
  border-top: 1px solid rgba(23,27,36,.06);
  border-bottom: 1px solid rgba(23,27,36,.06);
}
.sw-fast-proof__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.sw-fast-proof a {
  min-width: 0;
  padding: 17px 18px;
  border: 1px solid rgba(7,63,58,.1);
  border-radius: 10px;
  background: linear-gradient(180deg, #fff, #fbfaf8);
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(23,27,36,.045);
}
.sw-fast-proof strong {
  display: block;
  color: var(--sw-ink);
  font-size: .92rem;
  line-height: 1.15;
}
.sw-fast-proof span {
  display: block;
  margin-top: 5px;
  color: #5f6877;
  font-size: .78rem;
  line-height: 1.35;
}

.sw-section { padding: 54px 0; }
.sw-center-title, .sw-section-head h2 { margin: 0; color: var(--sw-ink); text-align: center; font-size: clamp(1.8rem, 2.4vw, 2.55rem); line-height: 1.12; letter-spacing: 0; text-wrap: balance; }
.sw-section-head { text-align: center; margin-bottom: 28px; }
.sw-section-head p { margin: 8px 0 0; color: #303747; }

.sw-problems { padding-top: 44px; background: #faf9f7; }
.sw-problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 22px; }
.sw-problem-card { padding: 24px 24px 26px; border: 1px solid var(--sw-border); border-radius: 10px; background: #fff; box-shadow: 0 12px 32px rgba(23,27,36,.055); }
.sw-icon, .sw-service-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; margin-bottom: 14px; color: var(--sw-orange); font-size: 1.7rem; }
.sw-problem-card h3 { margin: 0 0 10px; color: var(--sw-ink); font-size: 1.05rem; line-height: 1.22; }
.sw-problem-card p { margin: 0; color: #5f6877; font-size: .95rem; }

.sw-solution { padding-top: 18px; background: #fff; }
.sw-solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 28px; text-align: center; }
.sw-solution-grid article { padding: 0 46px; border-right: 1px solid var(--sw-border); }
.sw-solution-grid article:last-child { border-right: 0; }
.sw-solution-grid h3 { margin: 0 0 10px; color: var(--sw-ink); font-size: 1.35rem; }
.sw-solution-grid p { margin: 0; color: #566070; font-size: .98rem; }

.sw-services { background: #fff; }
.sw-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 26px; }
.sw-service-card { display: flex; flex-direction: column; min-height: 230px; padding: 27px 24px; border: 1px solid var(--sw-border); border-radius: 10px; background: #fff; box-shadow: 0 10px 30px rgba(23,27,36,.055); }
.sw-service-card h3 { margin: 0 0 10px; color: var(--sw-ink); font-size: 1.13rem; text-align: center; }
.sw-service-card p { margin: 0; color: #5f6877; font-size: .88rem; line-height: 1.48; text-align: center; }
.sw-service-card a { margin-top: auto; padding-top: 16px; color: var(--sw-orange-dark); font-size: .85rem; font-weight: 900; text-decoration: none; }

.sw-work { padding-top: 18px; background: #fbfaf8; }
.sw-work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.sw-work-card { display: grid; grid-template-columns: 48% 52%; overflow: hidden; min-height: 222px; border: 1px solid var(--sw-border); border-radius: 14px; background: #fff; box-shadow: 0 14px 40px rgba(23,27,36,.08); }
.sw-work-card img { width: 100%; height: 100%; object-fit: cover; background: #ece8df; }
.sw-work-card div { padding: 20px; }
.sw-work-card span { color: #8a8f99; font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.sw-work-card h3 { margin: 5px 0 6px; color: var(--sw-ink); font-size: 1.18rem; }
.sw-work-card p { margin: 0; color: #505a69; font-size: .86rem; }
.sw-work-card ul { margin: 10px 0; padding: 0; list-style: none; font-size: .82rem; color: #2f6f58; }
.sw-work-card li::before { content: "✓ "; color: #18a86d; font-weight: 900; }
.sw-work-card a { color: var(--sw-orange-dark); font-weight: 900; font-size: .85rem; text-decoration: none; }

.sw-process { background: #fff; }
.sw-process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 28px 0 0; padding: 0; list-style: none; text-align: center; }
.sw-process-list li { position: relative; }
.sw-process-list li:not(:last-child)::after { content: "······→"; position: absolute; top: 22px; right: -45px; color: #9aa2af; letter-spacing: 3px; }
.sw-process-list span { display: grid; place-items: center; width: 30px; height: 30px; margin: 0 auto 12px; border-radius: 50%; color: #fff; background: var(--sw-orange); font-weight: 900; }
.sw-process-list strong { display: block; color: var(--sw-ink); font-size: 1.05rem; }
.sw-process-list p { margin: 8px 0 0; color: #5f6877; font-size: .88rem; }

.sw-trust { padding: 26px 0 44px; background: #fbfaf8; }
.sw-trust-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr) 1.55fr; border: 1px solid var(--sw-border); border-radius: 14px; background: #fff; box-shadow: 0 14px 40px rgba(23,27,36,.06); overflow: hidden; }
.sw-trust-card { min-height: 128px; padding: 23px 20px; border-right: 1px solid var(--sw-border); display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.sw-trust-card:last-child { border-right: 0; }
.sw-trust-card strong { color: var(--sw-ink); font-size: 1.25rem; }
.sw-trust-card p { margin: 6px 0 0; color: #5f6877; font-size: .88rem; }
.sw-review-card span { display: block; color: #4285f4; font-size: 1.6rem; font-weight: 950; }
.sw-stars { color: #ffb020; letter-spacing: 2px; margin: 8px 0; }
.sw-review-card a { color: var(--sw-orange-dark); font-size: .85rem; font-weight: 900; text-decoration: none; }
.sw-ga-card strong { color: var(--sw-orange-dark); }

.sw-team { padding-top: 46px; background: #fff; }
.sw-team .sw-section-head { max-width: 760px; margin: 0 auto 30px; }
.sw-team__eyebrow {
  margin: 0 0 10px;
  color: var(--sw-orange-dark);
  font-size: .82rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.sw-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.sw-team-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--sw-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(23,27,36,.07);
}
.sw-team-media {
  margin: 0;
  min-height: 205px;
  display: grid;
  place-items: end center;
  padding: 24px 24px 0;
  background:
    radial-gradient(circle at 52% 18%, rgba(255,104,25,.14), transparent 10rem),
    linear-gradient(180deg, #fbfaf8, #f2eee7);
}
.sw-team-media img {
  width: min(190px, 76%);
  height: 190px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 22px rgba(23,27,36,.16));
}
.sw-team-body {
  padding: 24px;
  text-align: center;
}
.sw-team-body h3 {
  margin: 0;
  color: var(--sw-ink);
  font-size: 1.35rem;
  line-height: 1.1;
}
.sw-team-role {
  margin: 8px 0 12px;
  color: var(--sw-orange-dark);
  font-size: .86rem;
  font-weight: 850;
}
.sw-team-body p:not(.sw-team-role) {
  margin: 0;
  color: #586274;
  font-size: .93rem;
  line-height: 1.58;
}
.sw-team-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 20px 24px;
  border: 1px solid rgba(7,63,58,.12);
  border-radius: 12px;
  background: #f7fbf8;
}
.sw-team-note p {
  margin: 0;
  color: #485365;
}
.sw-team-note a {
  flex: 0 0 auto;
  color: var(--sw-green);
  font-weight: 900;
  text-decoration: none;
}

.sw-final-cta { padding: 0 0 0; background: #fff; }
.sw-final-cta__inner { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 30px 44px; border-radius: 18px 18px 0 0; color: #fff; background: linear-gradient(135deg, #ff7a1f, #ed5b10); }
.sw-final-cta h2 { margin: 0; max-width: 650px; color: #fff; font-size: 2.1rem; line-height: 1.08; letter-spacing: 0; }
.sw-final-cta p { margin: 8px 0 0; color: rgba(255,255,255,.86); }
.sw-final-cta__actions { display: flex; gap: 18px; flex-wrap: wrap; }

.sw-footer { color: #dbe2eb; background: #10151d; }
.sw-footer__grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .8fr .85fr; gap: 38px; padding: 34px 0; }
.sw-footer__brand { display: block; margin-bottom: 10px; color: #fff; font-size: 1.4rem; }
.sw-footer h2 { margin: 0 0 12px; color: #fff; font-size: .95rem; }
.sw-footer p, .sw-footer a { color: #b9c2d1; font-size: .9rem; text-decoration: none; }
.sw-footer nav a { display: block; margin: 6px 0; }
.sw-footer__bottom { padding: 14px 0; border-top: 1px solid rgba(255,255,255,.08); text-align: center; color: #8d98aa; font-size: .84rem; }

@media (max-width: 1180px) {
  .sw-nav { display: none; }
  .sw-menu { display: inline-flex; min-height: 44px; padding: 0 15px; border: 1px solid var(--sw-border); border-radius: 8px; background: #fff; font-weight: 900; }
  .sw-hero__grid, .sw-final-cta__inner, .sw-footer__grid { grid-template-columns: 1fr; }
  .sw-hero-showcase { width: min(760px, 100%); margin: 0 auto; }
  .sw-dashboard__main { grid-template-columns: 1fr; }
  .sw-services-grid { grid-template-columns: repeat(3, 1fr); }
  .sw-trust-grid { grid-template-columns: repeat(3, 1fr); }
  .sw-trust-card { border-bottom: 1px solid var(--sw-border); }
  body.sw-mock-page .header-nav > .contact-btn { display: none; }
}

@media (max-width: 860px) {
  :root { --sw-container: min(1320px, calc(100% - 28px)); }
  body.sw-mock-page .sw-container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }
  body.sw-mock-page .sw-hero,
  body.sw-mock-page .sw-section,
  body.sw-mock-page .sw-trust,
  body.sw-mock-page .sw-final-cta,
  body.sw-mock-page .sw-footer {
    overflow: hidden;
  }
  .sw-header__inner { width: var(--sw-container); }
  .sw-header__actions .sw-btn--ghost { display: none; }
  .sw-hero { padding: 42px 0 34px; }
  .sw-hero h1 { font-size: clamp(2.15rem, 8.5vw, 3rem); line-height: 1.06; }
  .sw-hero h1::after { margin-left: 0; width: min(220px, 62%); }
  .sw-hero__lead { font-size: 1rem; }
  .sw-hero__actions, .sw-final-cta__actions { flex-direction: column; }
  .sw-hero__actions .sw-btn, .sw-final-cta__actions .sw-btn { width: 100%; }
  .sw-hero-proofline { grid-template-columns: 1fr; max-width: 100%; }
  .sw-showcase-float { display: none; }
  .sw-showcase-shell { padding: 12px; border-radius: 20px; }
  .sw-showcase-media { min-height: 300px; border-radius: 16px; }
  body.sw-mock-page .sw-showcase-media img { min-height: 300px; }
  .sw-showcase-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sw-dashboard__metrics, .sw-dashboard__badges, .sw-problem-grid, .sw-solution-grid, .sw-services-grid, .sw-work-grid, .sw-process-list, .sw-trust-grid, .sw-team-grid { grid-template-columns: 1fr; }
  .sw-dashboard { padding: 10px; border-radius: 16px; }
  .sw-site-preview { min-height: 230px; padding: 20px; }
  .sw-dashboard__badges { grid-template-columns: repeat(2, 1fr); }
  .sw-dashboard::before, .sw-process-list li::after { display: none; }
  .sw-fast-proof__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sw-solution-grid article { border-right: 0; border-bottom: 1px solid var(--sw-border); padding: 24px 0; }
  .sw-solution-grid article:last-child { border-bottom: 0; }
  .sw-work-card { grid-template-columns: 1fr; }
  .sw-work-card img { aspect-ratio: 16/9; }
  .sw-trust-card { border-right: 0; }
  .sw-team-note { align-items: stretch; flex-direction: column; text-align: center; }
  .sw-final-cta__inner { border-radius: 18px 18px 0 0; padding: 28px; }
}

@media (max-width: 480px) {
  :root { --sw-container: min(1320px, calc(100% - 24px)); }
  body.sw-mock-page .sw-container {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
  body.sw-mock-page .site-logo img { max-width: 166px; }
  .sw-eyebrow { font-size: .75rem; line-height: 1.35; }
  .sw-hero h1 { font-size: clamp(2rem, 10vw, 2.55rem); }
  .sw-btn--big { min-height: 54px; padding: 0 18px; }
  .sw-dashboard__badges { grid-template-columns: 1fr; }
  .sw-final-cta h2 { font-size: 1.7rem; }
}

@media (max-width: 640px) {
  .sw-hero {
    padding: 28px 0 22px;
  }
  .sw-hero__grid {
    gap: 22px;
  }
  .sw-eyebrow {
    margin-bottom: 12px;
  }
  .sw-hero__lead {
    margin-top: 16px;
  }
  .sw-hero__actions {
    gap: 10px;
    margin-top: 20px;
  }
  .sw-hero-proofline {
    gap: 8px;
    margin-top: 16px;
  }
  .sw-hero-proofline span {
    padding: 10px 12px;
  }
  .sw-showcase-shell {
    padding: 10px;
    border-radius: 18px;
  }
  .sw-showcase-toolbar span {
    display: none;
  }
  .sw-showcase-media {
    min-height: 242px;
    border-radius: 14px;
  }
  body.sw-mock-page .sw-showcase-media img {
    min-height: 242px;
  }
  .sw-showcase-meta {
    display: none;
  }
  .sw-showcase-tag {
    left: 12px;
    bottom: 12px;
    max-width: 170px;
    font-size: .74rem;
  }
  .sw-showcase-cta {
    right: 10px;
    bottom: 9px;
    min-height: 38px;
    padding: 0 13px;
    font-size: .75rem;
  }
  .sw-location {
    margin-top: 15px;
    font-size: .88rem;
  }
  .sw-dashboard {
    padding: 8px;
  }
  .sw-dashboard__top {
    margin-bottom: 8px;
  }
  .sw-score-card,
  .sw-dashboard__metrics,
  .sw-dashboard__badges {
    display: none;
  }
  .sw-site-preview {
    min-height: auto;
    padding: 10px;
  }
  .sw-device-showcase {
    min-height: 0;
  }
  body.sw-mock-page .sw-laptop-mockup img {
    height: 170px;
  }
  .sw-site-preview__caption {
    margin-top: 9px;
  }
  .sw-fast-proof {
    padding: 12px 0 18px;
  }
  .sw-fast-proof__grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .sw-fast-proof a {
    padding: 13px 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sw-btn { transition: none; }
  .sw-btn:hover, .sw-btn:focus { transform: none; }
}

/* 2026-06-04 - Home finale compacte, proche de la maquette validée */
body.sw-mock-page {
  --sw-orange: #ff9f00;
  --sw-orange-dark: #f06a00;
  --sw-green: #063f3d;
  --sw-ink: #111722;
  --sw-text: #313848;
  --sw-bg: #ffffff;
  --sw-container: min(1600px, calc(100% - 56px));
  background: #fff;
}

body.sw-mock-page .sticky-header {
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(17,23,34,.08);
  box-shadow: 0 10px 30px rgba(17,23,34,.035);
  backdrop-filter: blur(16px);
}

body.sw-mock-page .header-nav {
  max-width: 1600px;
  min-height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

body.sw-mock-page .nav-container {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

body.sw-mock-page .site-logo img {
  width: 196px;
  max-width: 196px;
  height: auto;
}

body.sw-mock-page .menu-items > ul {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.15vw, 20px);
}

body.sw-mock-page .menu-items > ul > li {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

body.sw-mock-page .menu-items > ul > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  color: #171b24;
  font-size: clamp(.7rem, .74vw, .8rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

body.sw-mock-page .menu-items > ul > li.current > a {
  padding: 0 13px;
  border: 1px solid rgba(255,159,0,.42);
  border-radius: 999px;
  color: #9a5300;
  background: #fff4df;
}

body.sw-mock-page .menu-items > ul > li.current > a::after {
  display: none;
}

body.sw-mock-page .menu-items > ul > li > a:hover,
body.sw-mock-page .menu-items > ul > li > a:focus-visible {
  color: var(--sw-orange-dark);
  transform: translateY(-1px);
}

body.sw-mock-page .menu-items > ul > li.current > a:hover,
body.sw-mock-page .menu-items > ul > li.current > a:focus-visible {
  border-color: rgba(255,132,0,.72);
  background: #fff0cf;
}

body.sw-mock-page .menu-items > ul > li > .dd-trigger {
  position: static;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  min-width: 12px;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--sw-orange);
  background: transparent;
  font-size: .78rem;
  font-weight: 950;
  line-height: 1;
  transform: none;
}

body.sw-mock-page .nav-audit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  color: #fff !important;
  background: #171717;
  font-size: clamp(.7rem, .74vw, .8rem);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(17,23,34,.1);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

body.sw-mock-page .nav-audit-link:hover,
body.sw-mock-page .nav-audit-link:focus-visible {
  color: #fff !important;
  background: #063f3d;
  box-shadow: 0 14px 26px rgba(6,63,61,.16);
  transform: translateY(-1px);
}

body.sw-mock-page .contact-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  color: #111722;
  background: linear-gradient(135deg, #ffb21a, #ff8a00);
  box-shadow: 0 12px 24px rgba(255,132,0,.18);
  font-size: clamp(.76rem, .78vw, .86rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

body.sw-mock-page .contact-info svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.sw-mock-page .contact-info .title {
  display: none;
}

body.sw-mock-page .contact-info .info {
  display: inline;
}

body.sw-mock-page .contact-info::after {
  content: none;
}

body.sw-mock-page .contact-info:hover,
body.sw-mock-page .contact-info:focus-visible {
  color: #111722;
  background: linear-gradient(135deg, #ffc03a, #ff9308);
  box-shadow: 0 16px 30px rgba(255,132,0,.24);
  transform: translateY(-1px);
}

body.sw-mock-page main {
  background: #fff;
}

body.sw-mock-page .sw-hero {
  overflow: visible;
  padding: 0;
  background: #fff;
  border-bottom: 1px solid rgba(17,23,34,.08);
}

body.sw-mock-page .sw-hero__grid {
  position: relative;
  width: var(--sw-container);
  min-height: 525px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, .88fr) minmax(500px, 1.12fr);
  gap: 0;
  align-items: stretch;
}

body.sw-mock-page .sw-hero__content {
  position: static;
  z-index: 3;
  align-self: center;
  max-width: 560px;
  padding: 58px 34px 94px 0;
}

body.sw-mock-page .sw-eyebrow {
  display: none;
}

body.sw-mock-page .sw-hero h1 {
  max-width: 560px;
  color: var(--sw-ink);
  font-size: clamp(3.05rem, 4.35vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
}

body.sw-mock-page .sw-hero h1 span {
  color: var(--sw-green);
}

body.sw-mock-page .sw-hero h1::after {
  display: none;
}

body.sw-mock-page .sw-hero__lead {
  max-width: 500px;
  margin-top: 18px;
  color: #343b49;
  font-size: clamp(1.15rem, 1.45vw, 1.35rem);
  line-height: 1.34;
}

body.sw-mock-page .sw-hero__actions {
  gap: 18px;
  margin-top: 28px;
}

body.sw-mock-page .sw-btn {
  border-radius: 7px;
  font-weight: 850;
}

body.sw-mock-page .sw-btn--big {
  min-height: 54px;
  padding: 0 28px;
}

body.sw-mock-page .sw-btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #ffb500 0%, #ff8a00 48%, #ff6a00 100%);
  box-shadow: 0 14px 28px rgba(255,135,0,.24);
}

body.sw-mock-page .sw-btn--primary::after {
  content: "→";
  font-size: 1.15rem;
  line-height: 1;
}

body.sw-mock-page .sw-btn--white {
  color: var(--sw-green);
  background: #fff;
  border-color: rgba(6,63,61,.5);
  box-shadow: none;
}

body.sw-mock-page .sw-hero-showcase {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-width: 0;
  margin-right: calc((100vw - min(1600px, calc(100vw - 56px))) / -2);
  border-left: 1px solid rgba(17,23,34,.08);
  background: #f6f4ef;
}

body.sw-mock-page .sw-hero-showcase::before {
  display: none;
}

body.sw-mock-page .sw-hero-showcase > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 525px;
  object-fit: cover;
  object-position: 52% 50%;
}

body.sw-mock-page .sw-hero-proofline {
  position: absolute;
  left: 0;
  right: 140px;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(17,23,34,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 18px 45px rgba(17,23,34,.1);
  transform: translateY(50%);
  backdrop-filter: blur(14px);
}

body.sw-mock-page .sw-hero-proofline span {
  display: grid;
  grid-template-columns: 38px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  min-height: 84px;
  padding: 20px 20px;
  border: 0;
  border-right: 1px solid rgba(17,23,34,.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body.sw-mock-page .sw-hero-proofline span:last-child {
  border-right: 0;
}

body.sw-mock-page .sw-hero-proofline svg {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  color: #071f1e;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.sw-mock-page .sw-hero-proofline strong {
  color: var(--sw-ink);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.14;
}

body.sw-mock-page .sw-hero-proofline small {
  color: #5d6572;
  font-size: .9rem;
  line-height: 1.34;
}

body.sw-mock-page .sw-fast-proof,
body.sw-mock-page .sw-problems,
body.sw-mock-page .sw-solution,
body.sw-mock-page .sw-services,
body.sw-mock-page .sw-work,
body.sw-mock-page .sw-process,
body.sw-mock-page .sw-trust,
body.sw-mock-page .sw-team,
body.sw-mock-page .sw-final-cta {
  display: none;
}

body.sw-mock-page .sw-home-services {
  padding: 86px 0 44px;
  background: #fff;
}

body.sw-mock-page .sw-home-services .sw-container {
  width: var(--sw-container);
}

.sw-home-services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sw-home-service {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 138px;
  padding: 24px 36px 24px 22px;
  border: 1px solid rgba(17,23,34,.1);
  border-radius: 7px;
  color: var(--sw-ink);
  background: #fff;
  box-shadow: 0 12px 32px rgba(17,23,34,.055);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background .2s ease;
}

.sw-home-service:nth-child(1) {
  --service-hover-bg: #fff8ec;
  --service-hover-border: rgba(255,159,0,.34);
  --service-hover-shadow: rgba(255,159,0,.14);
  --service-hover-icon: linear-gradient(135deg, #ffb000, #ff6a00);
}

.sw-home-service:nth-child(2) {
  --service-hover-bg: #f3fbf8;
  --service-hover-border: rgba(6,63,61,.24);
  --service-hover-shadow: rgba(6,63,61,.13);
  --service-hover-icon: linear-gradient(135deg, #0c6b64, #063f3d);
}

.sw-home-service:nth-child(3) {
  --service-hover-bg: #f3f8fb;
  --service-hover-border: rgba(38,103,124,.24);
  --service-hover-shadow: rgba(38,103,124,.12);
  --service-hover-icon: linear-gradient(135deg, #1d6f82, #063f3d);
}

.sw-home-service:nth-child(4) {
  --service-hover-bg: #f8f7ef;
  --service-hover-border: rgba(118,132,91,.28);
  --service-hover-shadow: rgba(118,132,91,.12);
  --service-hover-icon: linear-gradient(135deg, #6f8055, #063f3d);
}

.sw-home-service:hover,
.sw-home-service:focus-visible {
  border-color: var(--service-hover-border);
  background: var(--service-hover-bg);
  box-shadow: 0 18px 40px var(--service-hover-shadow);
  transform: translateY(-3px);
}

.sw-home-service:hover .sw-home-service__icon,
.sw-home-service:focus-visible .sw-home-service__icon {
  background: var(--service-hover-icon);
}

.sw-home-service:focus-visible {
  outline: 3px solid rgba(255,159,0,.28);
  outline-offset: 3px;
}

.sw-home-service__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #0a5752, #063f3d);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.14);
  transition: background .2s ease, transform .2s ease;
}

.sw-home-service svg,
.sw-home-method svg,
.sw-home-project--data svg,
.sw-home-projects__cta svg,
.sw-home-reviews svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sw-home-service strong {
  display: block;
  color: var(--sw-ink);
  font-size: 1.14rem;
  line-height: 1.18;
}

.sw-home-service small {
  display: block;
  margin-top: 7px;
  color: #4d5665;
  font-size: .96rem;
  line-height: 1.44;
}

.sw-home-service em {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sw-green);
  font-style: normal;
  font-size: 1.25rem;
  font-weight: 900;
}

.sw-home-method {
  padding: 56px 0 64px;
  border-top: 1px solid rgba(17,23,34,.08);
  border-bottom: 1px solid rgba(17,23,34,.08);
  background: linear-gradient(180deg, #f4faf8 0%, #eef5f3 100%);
}

.sw-home-method .sw-container,
.sw-home-projects .sw-container {
  width: var(--sw-container);
}

.sw-home-method h2 {
  margin: 0 0 40px;
  color: var(--sw-ink);
  font-size: clamp(1.85rem, 2.35vw, 2.32rem);
  line-height: 1.12;
  text-align: center;
}

.sw-home-method__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 66px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sw-home-method__steps li {
  position: relative;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
}

.sw-home-method__steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -50px;
  width: 42px;
  border-top: 1px dashed rgba(17,23,34,.52);
}

.sw-home-method__steps span {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(17,23,34,.08);
  border-radius: 50%;
  color: var(--sw-green);
  background: #fff;
}

.sw-home-method__steps strong {
  display: block;
  color: var(--sw-ink);
  font-size: 1.4rem;
  line-height: 1.08;
}

.sw-home-method__steps small {
  display: block;
  margin-top: 7px;
  color: #4d5665;
  font-size: .96rem;
  line-height: 1.44;
}

.sw-home-projects {
  padding: 68px 0 52px;
  background: #fff;
  border-bottom: 1px solid rgba(17,23,34,.08);
}

.sw-home-projects__head {
  margin-bottom: 26px;
}

.sw-home-projects__head span {
  display: block;
  margin-bottom: 7px;
  color: var(--sw-orange-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sw-home-projects__titleline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.sw-home-projects__head h2 {
  margin: 0;
  color: var(--sw-ink);
  font-size: clamp(1.85rem, 2.35vw, 2.35rem);
  line-height: 1.05;
}

.sw-home-projects__head p {
  max-width: 650px;
  margin: 12px 0 0;
  color: #445062;
  font-size: 1.02rem;
  line-height: 1.55;
}

.sw-home-projects__titleline a {
  flex: 0 0 auto;
  color: var(--sw-green);
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
}

.sw-home-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.sw-home-projects h2 {
  overflow-wrap: normal;
}

.sw-home-project {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border-radius: 8px;
  color: #fff;
  background: #0f171f;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(17,23,34,.11);
  isolation: isolate;
  transition: box-shadow .2s ease, transform .2s ease;
}

.sw-home-project::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 62%;
  background: linear-gradient(180deg, transparent 0%, rgba(8,15,22,.2) 32%, rgba(4,9,14,.88) 100%);
}

.sw-home-project img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .24s ease, filter .24s ease;
}

.sw-home-project:hover,
.sw-home-project:focus {
  box-shadow: 0 24px 54px rgba(17,23,34,.16);
  transform: translateY(-2px);
}

.sw-home-project:hover img,
.sw-home-project:focus img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.06);
}

.sw-home-project__badge {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  border-radius: 999px;
  color: #10201d;
  background: rgba(255,255,255,.86);
  font-size: .78rem;
  font-weight: 950;
}

.sw-home-project .sw-home-project__title {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 64px;
  z-index: 2;
  color: #fff;
  font-size: 1.28rem;
  line-height: 1.12;
  overflow-wrap: normal;
}

.sw-home-project > small {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  color: rgba(255,255,255,.84);
  font-size: .94rem;
  line-height: 1.38;
}

.sw-home-projects__cta {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 22px;
  padding: 24px 28px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0a5752, #063f3d);
  box-shadow: 0 18px 42px rgba(6,63,61,.16);
}

.sw-home-projects__cta-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #fff;
  background: rgba(255,255,255,.1);
}

.sw-home-projects__cta-copy {
  display: block;
  min-width: 0;
}

.sw-home-projects__cta-copy strong {
  display: block;
  color: #fff;
  font-size: 1.34rem;
  line-height: 1.15;
}

.sw-home-projects__cta-copy small {
  display: block;
  max-width: 600px;
  margin-top: 5px;
  color: rgba(255,255,255,.82);
  font-size: .98rem;
  line-height: 1.46;
}

.sw-home-projects__cta-action {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 7px;
  color: #10201d;
  background: var(--sw-orange);
  cursor: pointer;
  font: inherit;
  font-size: .95rem;
  font-weight: 950;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.sw-home-projects__cta:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(6,63,61,.2);
}

.sw-home-projects__cta-action:hover,
.sw-home-projects__cta-action:focus {
  background: #ffb21a;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(255,132,0,.2);
}

.sw-home-projects__cta-action:focus-visible {
  outline: 3px solid rgba(255,255,255,.78);
  outline-offset: 3px;
}

.sw-home-project--data {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  grid-template-rows: auto auto 1fr;
  gap: 10px 14px;
  align-items: start;
  min-height: 214px;
  padding: 24px;
  background: linear-gradient(135deg, #0a5752, #063f3d);
}

.sw-home-project--data::after {
  display: none;
}

.sw-home-project--data span {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  place-items: start center;
  color: #fff;
  justify-self: start;
}

.sw-home-project--data .sw-home-project__title {
  position: static;
  grid-column: 1 / -1;
  grid-row: 2;
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.14;
  overflow-wrap: normal;
}

.sw-home-project--data > small {
  position: static;
  grid-column: 1 / -1;
  grid-row: 3;
  opacity: .82;
  color: #fff;
  font-size: .86rem;
  line-height: 1.38;
  overflow-wrap: normal;
}

.sw-home-project--data em {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  position: static;
  color: #fff;
  font-style: normal;
  font-size: 1.45rem;
  justify-self: end;
}

.sw-home-partners {
  padding: 56px 0;
  border-bottom: 1px solid rgba(17,23,34,.08);
  background:
    radial-gradient(circle at 8% 0%, rgba(255,159,0,.11), transparent 32%),
    linear-gradient(135deg, #fbfaf8 0%, #f2f8f6 56%, #fff7eb 100%);
}

.sw-home-partners__inner {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, 1fr);
  gap: 44px;
  align-items: start;
}

.sw-home-partners__copy {
  min-width: 0;
  padding-top: 4px;
}

.sw-home-partners__copy p {
  margin: 0 0 8px;
  color: var(--sw-orange-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sw-home-partners__copy h2 {
  margin: 0;
  color: var(--sw-ink);
  font-size: clamp(1.85rem, 2.35vw, 2.45rem);
  line-height: 1.08;
}

.sw-home-partners__copy > span {
  display: block;
  margin-top: 14px;
  color: #4d5665;
  font-size: 1rem;
  line-height: 1.58;
}

.sw-home-partners__benefits {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.sw-home-partners__benefits li {
  padding: 4px 0 4px 18px;
  border-left: 3px solid rgba(255,132,0,.82);
}

.sw-home-partners__benefits strong {
  display: block;
  color: var(--sw-ink);
  font-size: 1rem;
  line-height: 1.18;
}

.sw-home-partners__benefits span {
  margin-top: 4px;
  color: #596374;
  font-size: .92rem;
  line-height: 1.42;
}

.sw-home-partners__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid rgba(6,63,61,.2);
  border-radius: 7px;
  color: #fff;
  background: var(--sw-green);
  box-shadow: 0 14px 28px rgba(6,63,61,.12);
  cursor: pointer;
  font: inherit;
  font-size: .94rem;
  font-weight: 900;
  line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.sw-home-partners__cta:hover,
.sw-home-partners__cta:focus {
  background: #0a5752;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(6,63,61,.18);
}

.sw-home-partners__cta:focus-visible {
  outline: 3px solid rgba(255,159,0,.34);
  outline-offset: 3px;
}

.sw-home-partners__showcase {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.sw-home-partners__note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(7,63,58,.12);
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, #0a5752, #063f3d);
}

.sw-home-partners__note strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1.2;
  white-space: nowrap;
}

.sw-home-partners__note span {
  color: rgba(255,255,255,.82);
  font-size: .92rem;
  line-height: 1.35;
}

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

.sw-home-partner {
  display: grid;
  align-content: start;
  justify-items: start;
  min-width: 0;
  min-height: 218px;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(17,23,34,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  color: inherit;
  text-align: left;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(17,23,34,.055);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

.sw-home-partner:hover,
.sw-home-partner:focus-visible {
  border-color: rgba(255,132,0,.42);
  background: #fff;
  box-shadow: 0 18px 38px rgba(17,23,34,.095);
  transform: translateY(-2px);
}

.sw-home-partner:focus-visible {
  outline: 3px solid rgba(255,159,0,.32);
  outline-offset: 3px;
}

.sw-home-partner img {
  display: block;
  justify-self: start;
  width: min(100%, 136px);
  height: 58px;
  margin-bottom: 16px;
  object-fit: contain;
  opacity: .96;
}

.sw-home-partner strong {
  display: block;
  color: var(--sw-ink);
  font-size: .96rem;
  line-height: 1.15;
}

.sw-home-partner span {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  margin-top: 8px;
  padding: 0 10px;
  border-radius: 999px;
  color: #0a5752;
  background: rgba(7,63,58,.08);
  font-size: .76rem;
  font-weight: 850;
  line-height: 1;
}

.sw-home-partner small {
  display: block;
  margin-top: 11px;
  color: #596374;
  font-size: .84rem;
  line-height: 1.42;
}

.sw-home-team {
  padding: 76px 0;
  border-bottom: 1px solid rgba(17,23,34,.08);
  background: linear-gradient(180deg, #fff 0%, #fbfaf8 100%);
}

.sw-home-team__inner {
  display: grid;
  grid-template-columns: minmax(340px, .58fr) minmax(0, 1fr);
  gap: clamp(54px, 6vw, 96px);
  align-items: center;
}

.sw-home-team__copy {
  min-width: 0;
}

.sw-home-team__copy p {
  margin: 0 0 8px;
  color: var(--sw-orange-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sw-home-team__copy h2 {
  margin: 0;
  color: var(--sw-ink);
  font-size: clamp(2rem, 2.45vw, 2.65rem);
  line-height: 1.08;
}

.sw-home-team__copy > span {
  display: block;
  max-width: 620px;
  margin-top: 18px;
  color: #4d5665;
  font-size: 1.06rem;
  line-height: 1.58;
}

.sw-home-team__copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.sw-home-team__copy li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(7,63,58,.12);
  border-radius: 999px;
  color: var(--sw-green);
  background: #f7fbf8;
  font-size: .86rem;
  font-weight: 900;
}

.sw-home-team__certification {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 620px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(17,23,34,.08);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfaf8);
  box-shadow: 0 18px 40px rgba(17,23,34,.06);
}

.sw-home-team__certification img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.sw-home-team__certification strong {
  display: block;
  color: var(--sw-ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.sw-home-team__certification span {
  display: block;
  margin-top: 6px;
  color: #596374;
  font-size: .9rem;
  line-height: 1.42;
}

.sw-home-team__certification-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(7,63,58,.18);
  border-radius: 7px;
  color: var(--sw-green);
  background: #fff;
  font-size: .86rem;
  font-weight: 950;
  text-decoration: none;
}

.sw-home-team__certification-link:hover,
.sw-home-team__certification-link:focus-visible {
  border-color: rgba(7,63,58,.34);
  background: #f7fbf8;
}

.sw-home-team__copy a {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--sw-green);
  font-size: 1rem;
  font-weight: 950;
  text-decoration: none;
}

.sw-home-team__about-link {
  position: relative;
  transition: color .18s ease, transform .18s ease;
}

.sw-home-team__about-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 1.25em;
  bottom: -4px;
  height: 2px;
  border-radius: 999px;
  background: var(--sw-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}

.sw-home-team__about-link:hover,
.sw-home-team__about-link:focus-visible {
  color: var(--sw-orange-dark);
  transform: translateX(3px);
}

.sw-home-team__about-link:hover::after,
.sw-home-team__about-link:focus-visible::after {
  transform: scaleX(1);
}

.sw-home-team__about-link:focus-visible {
  outline: 3px solid rgba(255,159,0,.28);
  outline-offset: 7px;
  border-radius: 4px;
}

.sw-home-team__copy .sw-home-team__certification-link {
  min-height: 38px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid rgba(7,63,58,.18);
  border-radius: 7px;
  background: #fff;
  font-size: .86rem;
}

.sw-home-team__people {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.sw-home-person {
  min-width: 0;
  overflow: hidden;
  display: grid;
  align-content: end;
  min-height: 330px;
  padding: 24px;
  border: 1px solid rgba(17,23,34,.08);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255,159,0,.16), transparent 8rem),
    linear-gradient(180deg, #fbfaf8, #f3eee8);
  box-shadow: 0 18px 42px rgba(17,23,34,.07);
}

.sw-home-person img {
  justify-self: center;
  width: min(230px, 92%);
  height: 230px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 12px 18px rgba(17,23,34,.14));
}

.sw-home-person div {
  margin-top: 18px;
  padding: 16px 17px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(12px);
}

.sw-home-person strong {
  display: block;
  color: var(--sw-ink);
  font-size: 1.08rem;
  line-height: 1.14;
}

.sw-home-person span {
  display: block;
  margin-top: 6px;
  color: #5e6877;
  font-size: .86rem;
  line-height: 1.34;
}

.sw-home-proof-cta {
  padding: 68px 0 38px;
  background: #fff;
}

.sw-home-proof-cta__inner {
  display: block;
}

.sw-home-reviews {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px 28px;
  align-content: start;
  min-width: 0;
}

.sw-home-reviews__intro {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-width: 0;
}

.sw-home-reviews__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  color: #111722;
  background: #f3eee8;
}

.sw-home-reviews__kicker {
  margin: 0 0 6px;
  color: var(--sw-orange-dark);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sw-home-reviews h2,
.sw-home-cta h2 {
  margin: 0;
  color: var(--sw-ink);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.12;
}

.sw-home-reviews p,
.sw-home-cta p {
  margin: 6px 0 0;
  color: #4d5665;
  font-size: .9rem;
}

.sw-home-reviews__meta {
  align-self: center;
  justify-self: end;
  display: grid;
  gap: 2px;
  min-width: 155px;
  padding: 13px 15px;
  border: 1px solid rgba(7,63,58,.12);
  border-radius: 8px;
  color: var(--sw-green);
  background: #f7fbf8;
}

.sw-home-reviews__meta strong {
  color: var(--sw-green);
  font-size: 1.55rem;
  line-height: 1;
}

.sw-home-reviews__meta span {
  color: #596374;
  font-size: .76rem;
  line-height: 1.28;
}

.sw-home-reviews__actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sw-home-reviews__actions a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 132px;
  padding: 0 18px;
  border: 1px solid rgba(7,63,58,.22);
  border-radius: 7px;
  color: var(--sw-green);
  background: linear-gradient(180deg, #fff, #fbfaf8);
  box-shadow: 0 8px 18px rgba(17,23,34,.045);
  font-size: .9rem;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.sw-home-reviews__actions a:last-child {
  border-color: rgba(7,63,58,.92);
  color: #fff;
  background: linear-gradient(135deg, #0a5752, #063f3d);
  box-shadow: 0 12px 24px rgba(6,63,61,.12);
}

.sw-home-reviews__actions a:first-child:hover,
.sw-home-reviews__actions a:first-child:focus-visible {
  border-color: var(--sw-green);
  color: #fff;
  background: linear-gradient(135deg, #0a5752, #063f3d);
  box-shadow: 0 14px 28px rgba(6,63,61,.14);
  transform: translateY(-1px);
}

.sw-home-reviews__actions a:last-child:hover,
.sw-home-reviews__actions a:last-child:focus-visible {
  border-color: rgba(255,159,0,.42);
  color: #10201d;
  background: linear-gradient(135deg, #ffb21a, #ff8a00);
  box-shadow: 0 14px 28px rgba(255,132,0,.22);
  transform: translateY(-1px);
}

.sw-home-reviews__actions a:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(17,23,34,.08);
}

.sw-home-reviews__actions a:focus-visible {
  outline: 3px solid rgba(255,159,0,.28);
  outline-offset: 3px;
}

.sw-featured-reviews {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.sw-featured-review {
  min-width: 0;
  min-height: 210px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(17,23,34,.09);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #fbfaf8);
  box-shadow: 0 12px 30px rgba(17,23,34,.055);
}

.sw-featured-review blockquote {
  margin: 18px 0 0;
  color: #273040;
  font-size: .98rem;
  line-height: 1.48;
}

.sw-featured-review__note {
  margin: 18px 0 0;
  color: #4d5665;
  font-size: .94rem;
  line-height: 1.48;
}

.sw-featured-review__author {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  margin: 0;
}

.sw-featured-review__author img {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(17,23,34,.12);
}

.sw-featured-review__author-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.sw-featured-review strong {
  color: var(--sw-ink);
  font-size: .98rem;
  line-height: 1.18;
}

.sw-featured-review__stars {
  color: #ffb000;
  font-size: .82rem;
  letter-spacing: 0;
}

.sw-home-final-cta {
  padding: 10px 0 70px;
  background:
    radial-gradient(circle at 50% 0%, rgba(7,63,58,.055), transparent 24rem),
    #fff;
}

.sw-home-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, auto);
  gap: 42px;
  align-items: center;
  min-height: 222px;
  padding: 46px 56px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 34%, rgba(255,255,255,.14), transparent 18rem),
    radial-gradient(circle at 93% 18%, rgba(255,159,0,.2), transparent 14rem),
    linear-gradient(135deg, #0a5752, #063f3d);
  box-shadow: 0 22px 52px rgba(6,63,61,.15);
}

.sw-home-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: inherit;
  pointer-events: none;
}

.sw-home-cta__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.sw-home-cta__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: #fff7e7;
  background: rgba(255,255,255,.08);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .07em;
  line-height: 1;
  text-transform: uppercase;
}

.sw-home-cta h2,
.sw-home-cta p {
  color: #fff;
}

.sw-home-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 2.65vw, 3rem);
}

.sw-home-cta p {
  max-width: 650px;
  margin-top: 12px;
  color: rgba(255,255,255,.86);
  font-size: 1.06rem;
  line-height: 1.55;
}

.sw-home-cta__reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.sw-home-cta__reassurance li {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08);
  font-size: .88rem;
  font-weight: 800;
  line-height: 1;
}

.sw-home-cta__action {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.sw-home-cta .sw-btn {
  justify-self: end;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  white-space: nowrap;
}

.sw-home-cta__action span {
  color: rgba(255,255,255,.72);
  font-size: .88rem;
  line-height: 1.35;
  text-align: right;
}

@media (min-width: 1181px) {
  body.sw-mock-page .navbar-toggler,
  body.sw-mock-page .d-flex.align-items-center {
    display: none !important;
  }

  body.sw-mock-page .menu-items > ul > li {
    display: inline-flex;
  }
}

@media (max-width: 1180px) {
  body.sw-mock-page .header-nav {
    width: min(1120px, calc(100% - 32px));
  }

  body.sw-mock-page .sw-hero__grid {
    grid-template-columns: 1fr;
    width: min(760px, calc(100% - 32px));
    min-height: 0;
    padding-bottom: 28px;
  }

  body.sw-mock-page .sw-hero__content {
    max-width: none;
    padding: 44px 0 22px;
  }

  body.sw-mock-page .sw-hero-showcase {
    margin-right: 0;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
  }

  body.sw-mock-page .sw-hero-showcase > img {
    min-height: 360px;
    aspect-ratio: 16 / 9;
  }

  body.sw-mock-page .sw-hero-proofline {
    position: static;
    right: auto;
    margin-top: 22px;
    transform: none;
  }

  .sw-home-services__grid,
  .sw-home-method__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sw-home-method .sw-container,
  .sw-home-projects .sw-container {
    width: var(--sw-container);
  }

  .sw-home-method__steps li:not(:last-child)::after {
    display: none;
  }

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

  .sw-home-project--data {
    grid-column: 1 / -1;
  }

  .sw-home-partners__inner {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

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

  .sw-home-team__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .sw-home-team__people {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .sw-home-person {
    min-height: 280px;
    padding: 18px;
  }

  .sw-home-person img {
    width: min(190px, 90%);
    height: 190px;
  }

  .sw-home-cta {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .sw-home-cta {
    min-height: auto;
  }

  .sw-home-cta__action {
    justify-items: start;
  }

  .sw-home-cta .sw-btn {
    justify-self: start;
  }

  .sw-home-cta__action span {
    text-align: left;
  }
}

@media (max-width: 640px) {
  body.sw-mock-page {
    --sw-container: min(1120px, calc(100% - 28px));
  }

  body.sw-mock-page .sticky-header {
    position: sticky;
  }

  body.sw-mock-page .header-nav {
    min-height: 72px;
  }

  body.sw-mock-page .site-logo img {
    max-width: 168px;
  }

  body.sw-mock-page .sw-hero__grid {
    width: var(--sw-container);
    padding-bottom: 18px;
  }

  body.sw-mock-page .sw-hero__content {
    padding: 24px 0 14px;
  }

  body.sw-mock-page .sw-hero h1 {
    font-size: clamp(2.15rem, 10.4vw, 2.78rem);
    line-height: 1.04;
  }

  body.sw-mock-page .sw-hero__lead {
    margin-top: 12px;
    font-size: 1rem;
  }

  body.sw-mock-page .sw-hero__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }

  body.sw-mock-page .sw-hero__actions .sw-btn {
    width: 100%;
    min-height: 50px;
  }

  body.sw-mock-page .sw-hero-proofline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body.sw-mock-page .sw-hero-proofline span {
    display: block;
    min-height: 112px;
    padding: 14px;
    border: 1px solid rgba(17,23,34,.08);
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(17,23,34,.055);
  }

  body.sw-mock-page .sw-hero-proofline span:last-child {
    border-bottom: 1px solid rgba(17,23,34,.08);
  }

  body.sw-mock-page .sw-hero-proofline svg {
    width: 28px;
    height: 28px;
    margin-bottom: 8px;
  }

  body.sw-mock-page .sw-hero-proofline strong {
    font-size: .94rem;
    line-height: 1.18;
  }

  body.sw-mock-page .sw-hero-proofline small {
    margin-top: 4px;
    font-size: .84rem;
    line-height: 1.34;
  }

  body.sw-mock-page .sw-hero-showcase > img {
    min-height: 218px;
    object-position: 58% 50%;
  }

  body.sw-mock-page .sw-home-services {
    padding: 32px 0 30px;
  }

  .sw-home-services__grid,
  .sw-home-method__steps,
  .sw-home-projects__grid,
  .sw-home-proof-cta__grid {
    grid-template-columns: 1fr;
  }

  .sw-home-service {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 122px;
    padding: 20px 36px 20px 16px;
  }

  .sw-home-service__icon {
    width: 56px;
    height: 56px;
  }

  .sw-home-service strong {
    font-size: 1.08rem;
  }

  .sw-home-service small {
    font-size: .92rem;
    line-height: 1.42;
  }

  .sw-home-method {
    padding: 42px 0 48px;
  }

  .sw-home-method h2 {
    margin-bottom: 26px;
    font-size: 1.78rem;
    text-align: left;
  }

  .sw-home-method__steps {
    gap: 22px;
  }

  .sw-home-method__steps li {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .sw-home-method__steps span {
    width: 62px;
    height: 62px;
  }

  .sw-home-method__steps strong {
    font-size: 1.22rem;
    line-height: 1.12;
  }

  .sw-home-method__steps small {
    font-size: .96rem;
    line-height: 1.42;
  }

  .sw-home-projects {
    padding: 40px 0 34px;
  }

  .sw-home-projects__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
  }

  .sw-home-projects__titleline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .sw-home-projects__head p {
    margin-top: 10px;
    font-size: .98rem;
    line-height: 1.48;
  }

  .sw-home-projects h2 {
    font-size: 1.78rem;
  }

  .sw-home-project {
    min-height: 250px;
  }

  .sw-home-project img {
    min-height: 250px;
  }

  .sw-home-project__badge {
    left: 16px;
    top: 16px;
  }

  .sw-home-project .sw-home-project__title {
    left: 16px;
    right: 16px;
    bottom: 60px;
    font-size: 1.18rem;
  }

  .sw-home-project > small {
    left: 16px;
    right: 16px;
    bottom: 16px;
    font-size: .9rem;
  }

  .sw-home-project--data {
    min-height: 176px;
    grid-template-columns: minmax(0, 1fr) 22px;
  }

  .sw-home-project--data > small {
    max-width: 240px;
  }

  .sw-home-projects__cta {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    margin-top: 16px;
    padding: 20px;
  }

  .sw-home-projects__cta-icon {
    width: 48px;
    height: 48px;
  }

  .sw-home-projects__cta-copy strong {
    font-size: 1.16rem;
  }

  .sw-home-projects__cta-copy small {
    font-size: .92rem;
  }

  .sw-home-projects__cta-action {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 4px;
  }

  .sw-home-partners {
    padding: 40px 0;
  }

  .sw-home-partners__copy h2 {
    font-size: 1.78rem;
  }

  .sw-home-partners__copy > span {
    font-size: .96rem;
    line-height: 1.5;
  }

  .sw-home-partners__benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sw-home-partners__cta {
    width: 100%;
    margin-top: 18px;
  }

  .sw-home-partners__note {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 15px;
  }

  .sw-home-partners__grid {
    grid-template-columns: 1fr;
  }

  .sw-home-partner {
    min-height: 0;
    padding: 18px;
  }

  .sw-home-partner img {
    height: 52px;
    margin-bottom: 14px;
  }

  .sw-home-partner small {
    font-size: .86rem;
  }

  .sw-home-team {
    padding: 46px 0;
  }

  .sw-home-team__copy h2 {
    font-size: 1.86rem;
  }

  .sw-home-team__copy > span {
    margin-top: 14px;
    font-size: .98rem;
    line-height: 1.5;
  }

  .sw-home-team__copy ul {
    gap: 8px;
    margin-top: 20px;
  }

  .sw-home-team__copy li {
    min-height: 36px;
    font-size: .82rem;
  }

  .sw-home-team__certification {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    margin-top: 22px;
    padding: 16px;
  }

  .sw-home-team__certification img {
    width: 54px;
    height: 54px;
  }

  .sw-home-team__people {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sw-home-person {
    min-height: 0;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    align-content: center;
    padding: 16px;
  }

  .sw-home-person img {
    width: 104px;
    height: 104px;
  }

  .sw-home-person div {
    margin-top: 0;
    padding: 13px 14px;
  }

  .sw-home-proof-cta {
    padding: 42px 0 28px;
  }

  .sw-home-reviews {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sw-home-reviews__intro {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
  }

  .sw-home-reviews__icon {
    width: 58px;
    height: 58px;
  }

  .sw-home-reviews__meta {
    justify-self: stretch;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }

  .sw-home-reviews__actions a {
    flex: 1 1 150px;
  }

  .sw-featured-reviews {
    grid-template-columns: 1fr;
  }

  .sw-featured-review {
    min-height: 0;
    padding: 18px;
  }

  .sw-featured-review__author img {
    width: 52px;
    height: 52px;
  }

  .sw-featured-review blockquote {
    margin-top: 16px;
    font-size: .94rem;
  }

  .sw-home-final-cta {
    padding-bottom: 40px;
  }

  .sw-home-cta {
    min-height: auto;
    padding: 30px 22px;
  }

  .sw-home-cta h2 {
    font-size: clamp(1.7rem, 8vw, 2.05rem);
  }

  .sw-home-cta p {
    font-size: .98rem;
  }

  .sw-home-cta__reassurance {
    gap: 8px;
  }

  .sw-home-cta__reassurance li {
    min-height: 32px;
    font-size: .8rem;
  }

  .sw-home-cta .sw-btn {
    width: 100%;
    min-height: 50px;
    padding: 0 18px;
  }
}
