.sw-wrap {
  background: #f5f3ee;
  min-height: 100vh;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sw-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  box-sizing: border-box;
}

.sw-logo {
  font-size: 22px;
  font-weight: 800;
  color: #6b21a8;
  font-style: italic;
}

.sw-nav-links {
  display: flex;
  gap: 36px;
}

.sw-nav-link {
  font-size: 14px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s;
}

.sw-nav-link:hover {
  color: #6b21a8;
}

.sw-nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sw-login-btn {
  padding: 8px 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s;
}

.sw-login-btn:hover {
  border-color: #6b21a8;
  color: #6b21a8;
}

.sw-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 20px;
  gap: 18px;
  max-width: 680px;
}

.sw-title {
  font-size: 72px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.1;
  margin: 0;
}

.sw-sub {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  margin: 0;
}

.sw-highlight {
  color: #6b21a8;
}

.sw-form {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.sw-input {
  border: none;
  outline: none;
  padding: 14px 18px;
  font-size: 14px;
  color: #333;
  width: 260px;
  background: none;
}

.sw-input::placeholder {
  color: #aaa;
}

.sw-btn {
  padding: 14px 24px;
  background: #6b21a8;
  color: #fff;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.sw-btn:hover {
  background: #581c87;
}

.sw-illustration {
  width: 100%;
  max-width: 860px;
  padding: 20px;
  box-sizing: border-box;
}

.sw-img {
  width: 100%;
  object-fit: contain;
  display: block;
}
/* SECTIONS */
.sw2-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 60px;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.sw2-reverse {
  flex-direction: row;
}

.sw2-img-side {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sw2-img {
  width: 100%;
  max-width: 280px;
  object-fit: contain;
  display: block;
}

.sw2-text-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sw2-text-right {
  text-align: right;
  align-items: flex-end;
}

.sw2-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}

.sw2-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  max-width: 340px;
}

.sw2-link {
  font-size: 14px;
  color: #6b21a8;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.sw2-link:hover {
  opacity: 0.7;
}

/* BOX SECTION */
.sw2-box-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px 60px;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}

.sw2-box-left {
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sw2-box-title {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
}

.sw2-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.sw2-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #333;
}

.sw2-box-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sw2-box-img {
  width: 90%;
  display: flex;
  justify-content: center;
}
/* COMPARE */
.cmp-wrap {
  background: #ede9f6;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cmp-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  line-height: 1.4;
}

.cmp-table {
  width: 100%;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cmp-head,
.cmp-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.cmp-head {
  border-bottom: 2px solid rgba(0,0,0,0.1);
  margin-bottom: 4px;
}

.cmp-cell {
  text-align: center;
  font-size: 13px;
}

.cmp-label-col {
  text-align: left;
}

.cmp-brand {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  font-style: normal;
}

.cmp-brand em {
  font-style: italic;
  font-size: 11px;
}

.sw-brand {
  color: #6b21a8;
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
}

.cmp-logo {
  height: 20px;
  object-fit: contain;
}

.cmp-label {
  text-align: left;
  font-size: 13px;
  color: #444;
  padding-right: 16px;
}

.cmp-check {
  color: #6b21a8;
  font-size: 16px;
  font-weight: 700;
}

.cmp-dash {
  color: #bbb;
  font-size: 16px;
}

.cmp-pct {
  font-size: 13px;
  color: #555;
}

.cmp-pct-purple {
  color: #6b21a8;
  font-weight: 700;
}

.cmp-footer-row {
  padding: 10px 0;
  font-size: 11px;
  color: #888;
}

.cmp-report {
  font-size: 11px;
  color: #6b21a8;
  text-decoration: none;
}

.cmp-link {
  font-size: 14px;
  color: #6b21a8;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.cmp-link:hover {
  opacity: 0.7;
}

.merch-wrap {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.merch-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
  margin-bottom: 36px;
}

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

.merch-card {
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.merch-pink  { background: #f9c8d0; }
.merch-yellow { background: #f5f0d8; }
.merch-teal  { background: #c8f0ee; }

.merch-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.merch-bottom {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.merch-top-quote {
  padding: 24px 16px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}

.merch-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.merch-quote {
  font-size: 13px;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

.merch-desc {
  font-size: 13px;
  color: #444;
  line-height: 1.5;
  text-align: center;
}

.merch-author {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  text-align: center;
}

.merch-company {
  font-size: 12px;
  color: #777;
  text-align: center;
}

.merch-brand {
  font-size: 12px;
  color: #777;
  text-align: center;
}

.merch-product {
  width: 100%;
  height: 200px;
  object-fit: contain;
  display: block;
  padding: 10px;
  box-sizing: border-box;
}

.sw3-logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 40px 60px;
  background: #f5f3ee;
  flex-wrap: wrap;
  gap: 20px;
}

.sw3-logo {
  height: 32px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.sw3-footer {
  background: #f0eee9;
  padding: 60px 60px 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sw3-footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 30px;
}

.sw3-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sw3-col-brand {
  gap: 14px;
}

.sw3-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 6px;
}

.sw3-social {
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}


.sw3-col-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.sw3-footer-link {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
}

.sw3-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 12px;
}

.sw3-copy {
  font-size: 13px;
  color: #888;
}

.sw3-bottom-links {
  display: flex;
  gap: 24px;
}

.sw3-bottom-link {
  font-size: 13px;
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.sw3-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555;
}

.sw3-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
@media (max-width: 500px) {

  .sw-nav {
    padding: 14px 16px;
  }

  .sw-nav-links {
    display: none;
  }

  .sw-nav-right .sw-nav-link {
    display: none;
  }

  .sw-hero {
    padding: 40px 16px 10px;
  }

  .sw-title {
    font-size: 42px;
  }

  .sw-sub {
    font-size: 14px;
  }

  .sw-form {
    flex-direction: column;
    width: 100%;
  }

  .sw-input {
    width: 100%;
    border-bottom: 1px solid #eee;
  }

  .sw-btn {
    width: 100%;
  }

  .sw2-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
  }

  .sw2-reverse {
    flex-direction: column;
  }

  .sw2-text-right {
    text-align: left;
    align-items: flex-start;
  }

  .sw2-img {
    max-width: 220px;
  }

  .sw2-title {
    font-size: 20px;
  }

  .sw2-text {
    max-width: 100%;
  }

  .sw2-box-section {
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
  }

  .sw2-box-left {
    max-width: 100%;
  }

  .sw2-box-title {
    font-size: 26px;
  }

  .sw2-box-img {
    width: 100%;
  }

  .cmp-wrap {
    padding: 40px 16px;
  }

  .cmp-title {
    font-size: 18px;
  }

  .cmp-head,
  .cmp-row {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }

  .cmp-label {
    font-size: 11px;
    padding-right: 6px;
  }

  .cmp-cell {
    font-size: 11px;
  }

  .cmp-brand {
    font-size: 10px;
  }

  .cmp-logo {
    height: 14px;
  }

  .merch-wrap {
    padding: 40px 16px;
  }

  .merch-title {
    font-size: 26px;
  }

  .merch-grid {
    grid-template-columns: 1fr;
  }

  .sw3-logos {
    padding: 30px 20px;
    gap: 16px;
    justify-content: center;
  }

  .sw3-logo {
    height: 22px;
  }

  .sw3-footer {
    padding: 40px 20px 20px;
  }

  .sw3-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .sw3-col-brand {
    grid-column: 1 / -1;
  }

  .sw3-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .sw3-bottom-links {
    gap: 16px;
  }
}