:root {
  --jss-ink: #172026;
  --jss-muted: #5d6872;
  --jss-line: #dfe5e8;
  --jss-panel: #f6f8f7;
  --jss-accent: #c54f1b;
  --jss-accent-dark: #873414;
  --jss-steel: #24424a;
}

body {
  color: var(--jss-ink);
}

.site-primary-footer-wrap,
.site-below-footer-wrap {
  display: none !important;
}

.jss-container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.jss-hero,
.jss-page-hero {
  background: linear-gradient(120deg, rgba(23, 32, 38, 0.94), rgba(36, 66, 74, 0.92));
  color: #fff;
}

.jss-hero {
  padding: 150px 0 96px;
}

.jss-page-hero {
  padding: 140px 0 72px;
}

.jss-hero-grid,
.jss-two-column,
.jss-contact-grid,
.jss-quote-band-inner,
.jss-footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
  align-items: center;
}

.jss-hero h1,
.jss-page-hero h1 {
  color: #fff;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 22px;
}

.jss-page-hero h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.jss-eyebrow {
  color: var(--jss-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.jss-hero .jss-eyebrow,
.jss-page-hero .jss-eyebrow {
  color: #ffb088;
}

.jss-lead {
  color: inherit;
  font-size: 19px;
  line-height: 1.7;
  max-width: 780px;
}

.jss-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.jss-button,
.jss-quote-form button,
.jss-floating-quote {
  align-items: center;
  background: var(--jss-accent);
  border: 0;
  border-radius: 6px;
  color: #fff !important;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  line-height: 1;
  min-height: 46px;
  padding: 15px 22px;
  text-decoration: none !important;
}

.jss-button:hover,
.jss-quote-form button:hover,
.jss-floating-quote:hover {
  background: var(--jss-accent-dark);
}

.jss-button-secondary {
  background: #fff;
  color: var(--jss-ink) !important;
}

.jss-button-light {
  background: #fff;
  color: var(--jss-accent-dark) !important;
}

.jss-hero-panel,
.jss-card,
.jss-form-card {
  background: #fff;
  border: 1px solid var(--jss-line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 32, 38, 0.08);
  color: var(--jss-ink);
  padding: 30px;
}

.jss-hero-panel {
  background: rgba(255, 255, 255, 0.96);
}

.jss-hero-panel h2,
.jss-card h2,
.jss-card h3 {
  margin-top: 0;
}

.jss-check-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.jss-check-list li {
  border-top: 1px solid var(--jss-line);
  padding: 12px 0;
}

.jss-trust-row {
  background: var(--jss-accent);
  color: #fff;
  font-weight: 800;
  padding: 18px 0;
}

.jss-trust-row .jss-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  justify-content: center;
}

.jss-section {
  padding: 78px 0;
}

.jss-section-muted {
  background: var(--jss-panel);
}

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

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

.jss-card p {
  color: var(--jss-muted);
}

.jss-center {
  margin-top: 32px;
  text-align: center;
}

.jss-table-wrap {
  overflow-x: auto;
}

.jss-product-table {
  border-collapse: collapse;
  min-width: 980px;
  width: 100%;
}

.jss-product-table th,
.jss-product-table td {
  border: 1px solid var(--jss-line);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

.jss-product-table th {
  background: var(--jss-steel);
  color: #fff;
}

.jss-product-table tr:nth-child(even) td {
  background: var(--jss-panel);
}

.jss-contact-grid {
  align-items: start;
}

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

.jss-quote-form label {
  color: var(--jss-ink);
  display: grid;
  font-weight: 700;
  gap: 8px;
}

.jss-quote-form input,
.jss-quote-form select,
.jss-quote-form textarea {
  border: 1px solid var(--jss-line);
  border-radius: 6px;
  font: inherit;
  padding: 12px;
  width: 100%;
}

.jss-form-full,
.jss-quote-form button {
  grid-column: 1 / -1;
}

.jss-form-message {
  border-radius: 6px;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 14px;
}

.jss-form-success {
  background: #e8f6ec;
  color: #1f6d3a;
}

.jss-form-error {
  background: #fff1ed;
  color: #923a1c;
}

.jss-quote-band {
  background: var(--jss-steel);
  color: #fff;
  padding: 44px 0;
}

.jss-quote-band h2,
.jss-site-footer h2,
.jss-site-footer h3 {
  color: #fff;
  margin-top: 0;
}

.jss-site-footer {
  background: #10171b;
  color: #dce5e8;
  padding: 54px 0;
}

.jss-site-footer a {
  color: #fff;
  display: block;
  margin: 7px 0;
}

.jss-floating-quote {
  bottom: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  position: fixed;
  right: 22px;
  z-index: 9999;
}

.jss-article {
  margin: 120px auto 64px;
  max-width: 860px;
  padding: 0 20px;
}

.jss-article h1 {
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.08;
  margin-bottom: 24px;
}

.jss-article h2 {
  border-top: 1px solid var(--jss-line);
  font-size: 26px;
  margin-top: 38px;
  padding-top: 26px;
}

.jss-article p,
.jss-article li {
  color: var(--jss-muted);
  font-size: 17px;
  line-height: 1.8;
}

.single-post .entry-title {
  display: none;
}

@media (max-width: 980px) {
  .jss-hero-grid,
  .jss-two-column,
  .jss-contact-grid,
  .jss-quote-band-inner,
  .jss-footer-grid,
  .jss-card-grid,
  .jss-card-grid-five {
    grid-template-columns: 1fr;
  }

  .jss-hero,
  .jss-page-hero {
    padding-top: 112px;
  }
}

@media (max-width: 640px) {
  .jss-container {
    width: min(100% - 28px, 1160px);
  }

  .jss-quote-form {
    grid-template-columns: 1fr;
  }

  .jss-floating-quote {
    bottom: 12px;
    left: 14px;
    right: 14px;
  }
}
