/*
Theme Name: Siplex
Theme URI: https://siplex.cz/
Author: Siplex
Description: Static WordPress presentation theme generated from the maintained Siplex design export.
Version: 0.2.1
Text Domain: siplex
Requires at least: 6.0
Requires PHP: 7.4
*/

:root {
  --sx-red: #c81e29;
  --sx-red-dark: #a4151f;
  --sx-red-soft: #fbe9ea;
  --sx-ink: #1c1c1e;
  --sx-text: #55555e;
  --sx-muted: #7a7a82;
  --sx-line: #ece7e4;
  --sx-bg: #f6f4f3;
  --sx-white: #fff;
  --sx-shadow: 0 16px 38px rgba(0, 0, 0, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

body {
  margin: 0;
  background: var(--sx-white);
  color: var(--sx-ink);
  font-family: "Source Sans 3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg,
iframe,
video {
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea {
  font: inherit;
}

.sx-shell {
  background: var(--sx-white);
  color: var(--sx-ink);
}

.sx-container {
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
}

.sx-container-narrow {
  width: min(100% - 64px, 760px);
  margin: 0 auto;
}

.sx-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid #ece9e7;
  box-shadow: 0 2px 14px rgba(0, 0, 0, .05);
}

.sx-header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.sx-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.sx-logo img {
  display: block;
  width: auto;
  height: 34px;
}

.sx-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.sx-nav a {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  text-decoration: none;
  color: #2a2a2e;
  padding: 29px 0 26px;
  border-bottom: 3px solid transparent;
}

.sx-nav a:hover,
.sx-nav a.is-active {
  color: var(--sx-red);
}

.sx-nav a.is-active {
  border-bottom-color: var(--sx-red);
}

.sx-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--sx-ink);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.sx-phone-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--sx-red-soft);
  color: var(--sx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sx-menu-toggle {
  position: relative;
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: var(--sx-red-soft);
  color: var(--sx-red);
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.sx-menu-toggle:hover,
.sx-menu-toggle:focus-visible {
  background: #f6d7d9;
  box-shadow: 0 0 0 3px rgba(200, 30, 41, .12);
  outline: none;
}

.sx-menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform .18s ease, opacity .18s ease, width .18s ease;
}

.sx-menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 6px));
}

.sx-menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 6px));
}

.sx-header.is-open .sx-menu-toggle {
  background: var(--sx-red);
  color: #fff;
}

.sx-header.is-open .sx-menu-toggle:hover,
.sx-header.is-open .sx-menu-toggle:focus-visible {
  background: var(--sx-red-dark);
}

.sx-header.is-open .sx-menu-toggle span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sx-header.is-open .sx-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(.2);
}

.sx-header.is-open .sx-menu-toggle span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sx-hero {
  position: relative;
  min-height: 560px;
  background: #fff;
  overflow: hidden;
}

.sx-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(140deg, var(--sx-red) 0%, var(--sx-red-dark) 100%);
  clip-path: polygon(24% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.sx-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 47%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}

.sx-hero-image img {
  display: block;
  height: 93%;
  width: auto;
  max-width: 98%;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, .22));
}

.sx-hero-grid {
  position: relative;
  min-height: 560px;
  padding: 90px 0;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 40px;
  align-items: center;
}

.sx-eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sx-red);
  background: var(--sx-red-soft);
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.sx-section-eyebrow {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sx-red);
  margin-bottom: 14px;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", sans-serif;
  color: var(--sx-ink);
}

.sx-hero h1 {
  font-weight: 800;
  font-size: clamp(36px, 4.25vw, 52px);
  line-height: 1.08;
  margin: 0 0 22px;
}

.sx-hero h1 span,
.sx-red-text {
  color: var(--sx-red);
}

.sx-lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--sx-text);
  max-width: 590px;
  margin: 0 0 32px;
  text-wrap: pretty;
}

.sx-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sx-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--sx-red);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(200, 30, 41, .24);
}

.sx-button:hover {
  background: var(--sx-red-dark);
  color: #fff;
}

.sx-button-secondary {
  background: #fff;
  color: var(--sx-ink);
  border-color: #e3dedc;
  box-shadow: none;
}

.sx-button-secondary:hover {
  background: #fff;
  color: var(--sx-red);
  border-color: var(--sx-red);
}

.sx-button-light {
  background: #fff;
  color: var(--sx-red);
  border-color: #fff;
  box-shadow: none;
}

.sx-button-light:hover {
  background: var(--sx-red-soft);
  color: var(--sx-red);
}

.sx-stats-row {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.sx-stat-num {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: var(--sx-red);
  line-height: 1;
}

.sx-stat-label {
  display: block;
  font-size: 13px;
  color: var(--sx-muted);
  margin-top: 6px;
  font-weight: 700;
}

.sx-section {
  padding: 84px 0;
  background: #fff;
}

.sx-section-alt {
  background: var(--sx-bg);
}

.sx-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.sx-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.sx-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.sx-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sx-image-frame {
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.sx-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sx-section h2 {
  font-weight: 800;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.12;
  margin: 0 0 20px;
}

.sx-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--sx-text);
}

.sx-feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}

.sx-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sx-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--sx-red-soft);
  color: var(--sx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sx-feature-item span:last-child {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.sx-service-card,
.sx-card {
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.sx-service-card {
  display: flex;
  flex-direction: column;
}

.sx-service-card:hover,
.sx-card:hover {
  box-shadow: var(--sx-shadow);
}

.sx-service-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f6e6e7;
}

.sx-service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sx-service-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sx-service-body h3 {
  font-weight: 800;
  font-size: 19px;
  margin: 0 0 12px;
}

.sx-service-body p {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #5c5c66;
  flex: 1;
}

.sx-small-link {
  align-self: flex-start;
  background: var(--sx-red);
  color: #fff;
  padding: 11px 22px;
  border-radius: 7px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  line-height: 1;
  text-decoration: none;
}

.sx-small-link:hover {
  background: var(--sx-red-dark);
  color: #fff;
}

.sx-center {
  text-align: center;
}

.sx-section-intro {
  max-width: 660px;
  margin: 0 auto 52px;
}

.sx-check-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0 0 32px;
}

.sx-check-item {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 15.5px;
  color: #2a2a2e;
  font-weight: 600;
}

.sx-check-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--sx-red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.sx-overlay-badge {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 40px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .14);
  padding: 14px 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.sx-red-band {
  position: relative;
  background: linear-gradient(135deg, var(--sx-red) 0%, var(--sx-red-dark) 100%);
  overflow: hidden;
  padding: 84px 0;
  color: #fff;
}

.sx-red-band h2,
.sx-red-band h3,
.sx-red-band p {
  color: #fff;
}

.sx-red-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 38%;
  height: 100%;
  background: rgba(255, 255, 255, .05);
  clip-path: polygon(0 0, 100% 0, 62% 100%, 0 100%);
}

.sx-red-inner {
  position: relative;
}

.sx-contact-panel {
  background: #fff;
  border-radius: 16px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
}

.sx-contact-panel h3,
.sx-contact-panel h2 {
  margin-top: 0;
  color: var(--sx-ink);
}

.sx-contact-panel p {
  color: var(--sx-muted);
}

.sx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sx-field,
.sx-textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid #e3dedc;
  border-radius: 8px;
  font-size: 15px;
  color: var(--sx-ink);
  background: #fff;
}

.sx-field:focus,
.sx-textarea:focus {
  border-color: var(--sx-red);
  outline: none;
}

.sx-textarea {
  min-height: 120px;
  resize: vertical;
}

.sx-form-row {
  margin-top: 14px;
}

.sx-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--sx-muted);
  line-height: 1.5;
  margin: 16px 0 20px;
}

.sx-consent input {
  margin-top: 3px;
  flex: 0 0 auto;
}

.sx-honeypot {
  position: absolute;
  left: -5000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.sx-success {
  background: #f3fbf4;
  border: 1px solid #cce8d2;
  color: #1c5f2a;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

.sx-contact-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sx-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--sx-bg);
  border-radius: 14px;
  padding: 22px 24px;
}

.sx-contact-item strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-bottom: 4px;
}

.sx-contact-item div {
  color: #4a4a52;
  font-size: 15px;
  line-height: 1.5;
}

.sx-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--sx-line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
  display: flex;
  flex-direction: column;
}

.sx-quote-mark {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  color: #f0c9cc;
  line-height: .5;
  height: 26px;
}

.sx-testimonial p {
  font-size: 15.5px;
  line-height: 1.65;
  color: #3a3a40;
  font-style: italic;
  margin: 0 0 22px;
  flex: 1;
}

.sx-initials {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sx-red-soft);
  color: var(--sx-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  flex: 0 0 auto;
}

.sx-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--sx-red) 0%, var(--sx-red-dark) 100%);
  overflow: hidden;
  padding: 58px 0 62px;
  color: #fff;
}

.sx-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  background: rgba(255, 255, 255, .05);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
}

.sx-page-hero .sx-container {
  position: relative;
}

.sx-breadcrumbs {
  font-size: 13px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 14px;
  font-weight: 700;
}

.sx-breadcrumbs a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.sx-page-hero h1 {
  font-weight: 800;
  font-size: clamp(36px, 4vw, 46px);
  color: #fff;
  margin: 0 0 14px;
}

.sx-page-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, .9);
  max-width: 650px;
  margin: 0;
  line-height: 1.6;
}

.sx-cta-box {
  max-width: 1000px;
  margin: 0 auto;
  padding: 48px 40px;
  background: linear-gradient(135deg, var(--sx-red), var(--sx-red-dark));
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(200, 30, 41, .22);
}

.sx-cta-box h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 32px);
  margin: 0 0 12px;
}

.sx-cta-box p {
  color: rgba(255, 255, 255, .9);
  margin: 0 0 28px;
}

.sx-plan {
  position: relative;
  border: 2px solid var(--sx-line);
  border-radius: 18px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
}

.sx-plan.is-featured {
  background: linear-gradient(160deg, var(--sx-red), var(--sx-red-dark));
  border-color: var(--sx-red);
  box-shadow: 0 20px 50px rgba(200, 30, 41, .28);
  color: #fff;
}

.sx-plan h3 {
  font-weight: 800;
  font-size: 22px;
  margin: 0 0 6px;
}

.sx-plan.is-featured h3,
.sx-plan.is-featured p,
.sx-plan.is-featured li {
  color: #fff;
}

.sx-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--sx-red);
  border: 2px solid var(--sx-red);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 5px 16px;
  border-radius: 30px;
  white-space: nowrap;
}

.sx-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.sx-price strong {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 38px;
}

.sx-plan ul {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.sx-plan li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.45;
}

.sx-pricing-section {
  scroll-margin-top: 92px;
}

.sx-pricing-overview {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: minmax(0, 1fr) 360px;
}

.sx-pricing-copy {
  max-width: 760px;
}

.sx-pricing-copy h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
  margin: 0 0 20px;
}

.sx-pricing-copy p {
  color: #55555e;
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
}

.sx-pricing-copy p + p {
  margin-top: 14px;
}

.sx-pricing-factors {
  background: #fff;
  border: 1px solid #eadfdd;
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .055);
  padding: 28px;
}

.sx-pricing-factors h3 {
  font-size: 18px;
  margin: 0 0 18px;
}

.sx-pricing-factors ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sx-pricing-factors li {
  color: #55555e;
  display: grid;
  font-size: 15px;
  gap: 12px;
  grid-template-columns: 8px minmax(0, 1fr);
  line-height: 1.5;
}

.sx-pricing-factors li span {
  background: var(--sx-red);
  border-radius: 50%;
  height: 8px;
  margin-top: 7px;
  width: 8px;
}

.sx-pricing-heading {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin: 0 0 28px;
}

.sx-pricing-heading h2 {
  margin: 0;
}

.sx-pricing-heading p {
  color: var(--sx-muted);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0;
  max-width: 360px;
}

.sx-pricing-shell {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: 260px minmax(0, 1fr);
}

.sx-pricing-index {
  background: #fff;
  border: 1px solid #e8dfdc;
  border-radius: 12px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .045);
  padding: 18px;
  position: sticky;
  top: 104px;
}

.sx-pricing-index strong {
  color: var(--sx-ink);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: .04em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.sx-pricing-index div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sx-pricing-index a {
  border-radius: 8px;
  color: #55555e;
  display: block;
  font-size: 14px;
  line-height: 1.35;
  padding: 8px 10px;
  text-decoration: none;
}

.sx-pricing-index a:hover {
  background: #fbf1f2;
  color: var(--sx-red-dark);
}

.sx-price-list {
  background: #fff;
  border: 1px solid #e7ddda;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.sx-price-section {
  scroll-margin-top: 104px;
}

.sx-price-section + .sx-price-section {
  border-top: 1px solid #e7ddda;
}

.sx-price-section-title {
  align-items: center;
  background: #fbf8f7;
  display: grid;
  gap: 16px;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 22px 28px;
}

.sx-price-section-title span {
  align-items: center;
  background: var(--sx-red-dark);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  height: 36px;
  justify-content: center;
  letter-spacing: .02em;
  width: 36px;
}

.sx-price-section-title h3 {
  color: var(--sx-ink);
  font-size: 19px;
  line-height: 1.25;
  margin: 0;
}

.sx-price-rows {
  display: flex;
  flex-direction: column;
}

.sx-price-row {
  align-items: baseline;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) minmax(128px, max-content);
  padding: 18px 28px;
}

.sx-price-row + .sx-price-row {
  border-top: 1px solid #f0edeb;
}

.sx-price-item {
  color: #303035;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.sx-price-note {
  color: var(--sx-muted);
  font-size: 13px;
  margin-top: 3px;
}

.sx-price-row strong {
  color: var(--sx-red-dark);
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
  white-space: nowrap;
}

.sx-article-grid .sx-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.sx-article-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f6e6e7;
}

.sx-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sx-article-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sx-tag {
  display: inline-flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .05em;
  color: var(--sx-red);
  background: var(--sx-red-soft);
  padding: 4px 10px;
  border-radius: 20px;
}

.sx-article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #9a9a9a;
  font-size: 13px;
}

.sx-article-body h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 10px;
}

.sx-article-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5c5c66;
  margin: 0 0 18px;
  flex: 1;
}

.sx-article {
  padding: 56px 0 70px;
}

.sx-article h1 {
  font-weight: 800;
  font-size: clamp(32px, 4vw, 38px);
  line-height: 1.18;
  margin: 0 0 30px;
}

.sx-article p,
.sx-article li {
  font-size: 17px;
  line-height: 1.8;
  color: #3a3a40;
}

.sx-note {
  background: var(--sx-bg);
  border-left: 4px solid var(--sx-red);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 0 0 30px;
}

.sx-map {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #e3dedc;
  background: var(--sx-bg);
  min-height: 280px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.sx-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  height: 100%;
  border: 0;
}

.sx-map a {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 8px;
  background: #fff;
  color: var(--sx-red);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .16);
}

.sx-map a:hover {
  color: var(--sx-red-dark);
}

.sx-footer {
  background: var(--sx-red-dark);
  color: #fff;
}

.sx-footer-main {
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.sx-footer-logo img {
  display: block;
  width: auto;
  height: 54px;
  margin-bottom: 20px;
}

.sx-footer p,
.sx-footer a,
.sx-footer li {
  color: rgba(255, 255, 255, .82);
}

.sx-footer p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
  max-width: 340px;
}

.sx-footer h4 {
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: .03em;
  margin: 0 0 18px;
}

.sx-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.sx-footer a {
  text-decoration: none;
  font-size: 14px;
}

.sx-footer a:hover {
  color: #fff;
}

.sx-footer-contact li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 14px;
}

.sx-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.sx-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.sx-socials a:hover {
  background: #fff;
  color: var(--sx-red-dark);
}

.sx-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.sx-footer-bottom .sx-container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255, 255, 255, .7);
}

@media (max-width: 1080px) {
  .sx-nav {
    gap: 18px;
  }

  .sx-grid-3,
  .sx-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sx-grid-4,
  .sx-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sx-footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .sx-container,
  .sx-container-narrow {
    width: min(100% - 40px, 1240px);
  }

  .sx-menu-toggle {
    display: flex;
  }

  .sx-header-inner {
    position: relative;
    height: 68px;
    gap: 14px;
  }

  .sx-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid #e8e1df;
    border-radius: 14px;
    box-shadow: 0 22px 48px -28px rgba(0, 0, 0, .42);
    overflow: hidden;
  }

  .sx-header.is-open .sx-nav {
    display: flex;
  }

  .sx-nav a {
    padding: 16px 18px;
    border-bottom: 1px solid #f0edeb;
  }

  .sx-nav a.is-active {
    border-bottom-color: #f0edeb;
    background: var(--sx-red-soft);
  }

  .sx-phone {
    margin-left: auto;
  }

  .sx-hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .sx-hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 38%;
    clip-path: polygon(0 12%, 100% 0, 100% 100%, 0% 100%);
  }

  .sx-hero-image {
    position: relative;
    order: 2;
    z-index: 1;
    width: 100%;
    min-height: 275px;
    align-items: flex-end;
    justify-content: center;
  }

  .sx-hero-image img {
    width: min(84%, 360px);
    height: auto;
    max-height: 310px;
    max-width: none;
  }

  .sx-hero-grid {
    order: 1;
    min-height: 0;
    padding: 46px 0 22px;
    display: block;
  }

  .sx-hero-grid > div:last-child {
    display: none;
  }

  .sx-lead {
    max-width: 680px;
  }

  .sx-grid-2,
  .sx-red-band .sx-grid-2 {
    grid-template-columns: 1fr;
  }

  .sx-feature-list,
  .sx-form-grid {
    grid-template-columns: 1fr;
  }

  .sx-section-intro {
    margin-bottom: 34px;
  }

  .sx-red-band {
    padding: 62px 0;
  }
}

@media (max-width: 680px) {
  .sx-container,
  .sx-container-narrow {
    width: min(100% - 32px, 1240px);
  }

  .sx-header-inner {
    height: 64px;
  }

  .sx-logo img {
    height: 30px;
  }

  .sx-phone-icon,
  .sx-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .sx-phone span:last-child {
    display: none;
  }

  .sx-hero-grid {
    padding: 36px 0 18px;
  }

  .sx-eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    letter-spacing: .12em;
    padding: 6px 11px;
  }

  .sx-hero h1,
  .sx-page-hero h1 {
    font-size: 34px;
  }

  .sx-hero h1 {
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .sx-lead {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .sx-actions {
    gap: 10px;
  }

  .sx-button {
    min-height: 46px;
    padding: 13px 18px;
    width: 100%;
  }

  .sx-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 28px;
  }

  .sx-stat-num {
    font-size: 24px;
  }

  .sx-stat-label {
    font-size: 12px;
    line-height: 1.25;
  }

  .sx-hero::before {
    height: 34%;
  }

  .sx-hero-image {
    min-height: 238px;
  }

  .sx-hero-image img {
    width: min(88%, 315px);
    max-height: 255px;
  }

  .sx-page-hero {
    padding: 42px 0 46px;
  }

  .sx-page-hero p {
    font-size: 16px;
    line-height: 1.55;
  }

  .sx-section {
    padding: 58px 0;
  }

  .sx-section h2 {
    font-size: 28px;
  }

  .sx-section p {
    font-size: 15.5px;
    line-height: 1.65;
  }

  .sx-grid-3,
  .sx-article-grid,
  .sx-grid-4,
  .sx-grid-5 {
    grid-template-columns: 1fr;
  }

  .sx-service-body,
  .sx-article-body {
    padding: 22px 20px 24px;
  }

  .sx-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sx-pricing-overview,
  .sx-pricing-shell {
    grid-template-columns: 1fr;
  }

  .sx-pricing-overview {
    gap: 28px;
  }

  .sx-pricing-factors {
    padding: 22px;
  }

  .sx-pricing-heading {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .sx-pricing-index {
    position: static;
  }

  .sx-pricing-index div {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sx-pricing-index a {
    background: #fbf8f7;
    border: 1px solid #eee4e2;
    overflow-wrap: anywhere;
  }

  .sx-price-list {
    border-radius: 12px;
  }

  .sx-price-section-title {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 20px;
  }

  .sx-price-section-title span {
    height: 32px;
    width: 32px;
  }

  .sx-price-row {
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 16px 20px;
  }

  .sx-price-row strong {
    text-align: left;
    white-space: normal;
  }

  .sx-cta-box,
  .sx-contact-panel {
    padding: 28px 22px;
  }

  .sx-contact-item {
    padding: 18px;
  }

  .sx-map,
  .sx-map iframe {
    min-height: 240px;
  }

  .sx-footer-bottom .sx-container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .sx-container,
  .sx-container-narrow {
    width: min(100% - 28px, 1240px);
  }

  .sx-logo img {
    height: 28px;
  }

  .sx-hero h1,
  .sx-page-hero h1 {
    font-size: 30px;
  }

  .sx-stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .sx-stat-num {
    font-size: 22px;
  }

  .sx-stat-label {
    font-size: 11px;
    margin-top: 4px;
  }
}

.sx-detail-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.6fr .9fr;
  gap: 56px;
  align-items: start;
}

.sx-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sx-include-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sx-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--sx-bg);
  border-radius: 10px;
  padding: 16px 18px;
}

.sx-info-card {
  border: 1px solid var(--sx-line);
  border-radius: 12px;
  padding: 24px;
}

.sx-info-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
}

.sx-info-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5c5c66;
  margin: 0;
}

.sx-sidebar-card {
  border: 1px solid var(--sx-line);
  border-radius: 16px;
  padding: 26px;
  background: #fff;
}

.sx-sidebar-card.is-red {
  background: linear-gradient(135deg, var(--sx-red), var(--sx-red-dark));
  color: #fff;
  border-color: var(--sx-red);
  box-shadow: 0 18px 44px rgba(200, 30, 41, .24);
}

.sx-sidebar-card.is-red h3,
.sx-sidebar-card.is-red p,
.sx-sidebar-card.is-red a {
  color: #fff;
}

.sx-side-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sx-side-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid #f0edeb;
  text-decoration: none;
  color: #2a2a2e;
  font-weight: 700;
  font-size: 14.5px;
}

.sx-category-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.sx-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 13px;
  line-height: 1;
  padding: 10px 18px;
  border-radius: 30px;
  background: #fff;
  color: #2a2a2e;
  border: 1.5px solid #e3dedc;
  text-decoration: none;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.sx-pill:hover {
  color: var(--sx-red);
  border-color: var(--sx-red);
}

.sx-pill.is-active {
  background: var(--sx-red);
  color: #fff;
  border-color: var(--sx-red);
}

.sx-pill.is-active:hover {
  color: #fff;
}

.sx-pill-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--sx-red-soft);
  color: var(--sx-red);
  font-size: 11px;
  line-height: 1;
}

.sx-pill.is-active .sx-pill-count {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

@media (max-width: 900px) {
  .sx-detail-grid,
  .sx-include-grid {
    grid-template-columns: 1fr;
  }

  .sx-sidebar {
    position: static;
  }
}


@media (max-width: 560px) {
  .sx-pricing-index div {
    grid-template-columns: 1fr;
  }
}

/* Detail and team refinements */
.sx-detail-section,
.sx-detail-grid {
  overflow: visible;
}

.sx-sidebar {
  align-self: start;
  height: max-content;
  top: 102px;
  z-index: 2;
}

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

.sx-team-card {
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .035);
  display: grid;
  gap: 16px;
  grid-template-columns: 54px minmax(0, 1fr);
  min-width: 0;
  padding: 20px;
}

.sx-team-card:hover {
  border-color: #ead1d3;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .07);
}

.sx-team-portrait {
  align-items: center;
  background: var(--sx-red-soft);
  border-radius: 50%;
  color: var(--sx-red);
  display: flex;
  height: 54px;
  justify-content: center;
  width: 54px;
}

.sx-team-portrait span {
  align-items: center;
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  height: 100%;
  justify-content: center;
  letter-spacing: .02em;
  width: 100%;
}

.sx-team-body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}

.sx-team-body h3 {
  font-size: 18px;
  line-height: 1.25;
  margin: 0;
}

.sx-team-body p {
  color: #5c5c66;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
}

.sx-team-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.sx-team-contact a {
  align-items: center;
  background: #f8f5f4;
  border: 1px solid #eee5e3;
  border-radius: 999px;
  color: #4a4a52;
  display: inline-flex;
  font-size: 13.5px;
  gap: 7px;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
  padding: 8px 11px;
  text-decoration: none;
}

.sx-team-contact a:hover {
  background: #fff;
  border-color: #e4bfc3;
  color: var(--sx-red);
}

@media (max-width: 900px) {
  .sx-team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .sx-team-card {
    gap: 14px;
    grid-template-columns: 46px minmax(0, 1fr);
    padding: 18px;
  }

  .sx-team-portrait {
    height: 46px;
    width: 46px;
  }

  .sx-team-portrait span {
    font-size: 14px;
  }

  .sx-team-contact a {
    width: 100%;
  }
}


.sx-empty-state {
  margin: 0;
  padding: 22px 24px;
  border: 1px solid var(--sx-line);
  border-radius: 14px;
  background: #fff;
  color: var(--sx-muted);
  font-weight: 700;
}

.sx-content > *:first-child {
  margin-top: 0;
}

.sx-content > *:last-child {
  margin-bottom: 0;
}

.sx-sidebar-card.is-red .sx-button-light,
.sx-sidebar-card.is-red .sx-button-light:visited {
  background: #fff;
  color: var(--sx-red);
  border-color: #fff;
}

.sx-sidebar-card.is-red .sx-button-light:hover {
  background: var(--sx-red-soft);
  color: var(--sx-red-dark);
}

.sx-sidebar.sx-sticky-fixed {
  position: fixed;
  z-index: 120;
}

.sx-sidebar.sx-sticky-bottom {
  position: absolute;
  z-index: 2;
}
