.input{
	border: 2px solid black;
	background-color: white;
}
.hs-error-msg{
	color: red;
}

.swivels-engineered-row {
  --sw-blue: #12345b;
  --sw-blue-dark: #12345b;
  --sw-accent: #f2c300;
  --sw-button: #3002f3;
  --sw-border: #dfe7ef;
  --sw-text: #12345b;
  --sw-muted: #5b7188;
  --sw-bg: #ffffff;

  background: #ffffff;
  padding: 0 24px 56px;
}

.swivels-engineered-row,
.swivels-engineered-row * {
  box-sizing: border-box;
}

.swivels-top-bar {
  background: #3002f3;
  margin: 0 -24px 42px;
  padding: 22px 20px;
  text-align: center;
}

.swivels-top-bar img {
  max-width: 230px;
  width: 100%;
  height: auto;
  display: inline-block;
}

.swivels-engineered-wrap {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
}

.swivels-engineered-copy {
  color: var(--sw-text);
}

.swivels-engineered-eyebrow {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #1f33ff;
  margin-bottom: 18px;
}

.swivels-engineered-title {
  margin: 0;
  color: var(--sw-blue-dark);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 680px;
}

.swivels-engineered-accent {
  width: 72px;
  height: 5px;
  background: var(--sw-accent);
  border-radius: 999px;
  margin: 22px 0 24px;
}

.swivels-engineered-intro {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--sw-text);
  max-width: 650px;
}

.swivels-engineered-list {
  margin: 0 0 28px 0;
  padding-left: 24px;
  color: var(--sw-text);
}

.swivels-engineered-list li {
  margin-bottom: 14px;
  font-size: 17px;
  line-height: 1.6;
}

.swivels-engineered-cta {
  display: inline-block;
  background: var(--sw-button);
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 18px 26px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(48, 2, 243, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.swivels-engineered-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(48, 2, 243, 0.24);
  color: #ffffff !important;
}

.swivels-engineered-note {
  margin: 22px 0 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--sw-muted);
}

.swivels-engineered-card {
  background: #ffffff;
  border: 1px solid var(--sw-border);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 12px 28px rgba(18, 52, 91, 0.08);
}

.swivels-engineered-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 980px) {
  .swivels-engineered-wrap {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .swivels-engineered-row {
    padding: 0 20px 42px;
  }

  .swivels-top-bar {
    margin: 0 -20px 34px;
  }
}

@media (max-width: 640px) {
  .swivels-top-bar {
    padding: 18px 16px;
  }

  .swivels-top-bar img {
    max-width: 180px;
  }

  .swivels-engineered-title {
    font-size: 36px;
  }

  .swivels-engineered-intro,
  .swivels-engineered-list li {
    font-size: 16px;
  }

  .swivels-engineered-card {
    padding: 18px;
    border-radius: 14px;
  }

  .swivels-engineered-cta {
    width: 100%;
    text-align: center;
  }
}