:root {
  --bg: #f6f2ee;
  --surface: #ffffff;
  --surface-soft: #efe8e2;
  --line: #ddd5cf;
  --text: #101114;
  --muted: #6b7280;
  --navy: #24336f;
  --orange: #ca6d3d;
  --shadow: 0 20px 45px rgba(42, 36, 31, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 197, 220, 0.22), transparent 36%),
    radial-gradient(circle at top right, rgba(231, 196, 164, 0.18), transparent 30%),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

.sf-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 242, 238, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221, 213, 207, 0.8);
}

.sf-header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.sf-site-menu {
  border-top: 1px solid rgba(221, 213, 207, 0.8);
  background: rgba(246, 242, 238, 0.96);
  backdrop-filter: blur(14px);
}

.sf-site-menu-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 22px 22px;
}

.sf-mega-menu {
  display: grid;
  grid-template-columns: 330px 1fr;
  min-height: 448px;
  border: 1px solid rgba(36, 51, 111, 0.1);
  border-top: 0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 32px rgba(42, 36, 31, 0.08);
  overflow: hidden;
}

.sf-mega-rail {
  padding: 16px 14px;
  border-right: 1px solid rgba(36, 51, 111, 0.12);
  background: rgba(255, 255, 255, 0.96);
  display: grid;
  align-content: start;
  gap: 8px;
}

.sf-mega-rail-link {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #535353;
  font: inherit;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.sf-mega-rail-link::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9b9b9b;
  font-size: 26px;
  line-height: 1;
}

.sf-mega-rail-link.active {
  background: #f1f1f1;
  color: var(--text);
}

.sf-mega-content {
  position: relative;
  padding: 28px 30px 26px;
}

.sf-mega-panel {
  display: none;
}

.sf-mega-panel.active {
  display: block;
}

.sf-mega-catalog {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: start;
}

.sf-mega-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 54px;
  row-gap: 26px;
  padding-top: 8px;
}

.sf-mega-links a {
  font-size: 18px;
  font-weight: 600;
  color: #575757;
  transition: color 180ms ease;
}

.sf-mega-links a:hover {
  color: var(--text);
}

.sf-mega-links-list {
  grid-template-columns: 1fr;
  row-gap: 18px;
}

.sf-mega-links-list a {
  display: block;
}

.sf-mega-links-list a.has-submenu-arrow {
  position: relative;
  padding-right: 22px;
}

.sf-mega-links-list a.is-submenu-active {
  color: var(--text);
}

.sf-mega-links-list a.has-submenu-arrow::before {
  content: "›";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-52%);
  color: #9b9b9b;
  font-size: 22px;
  line-height: 1;
}

.sf-catalog-subpanels {
  min-height: 100%;
}

.sf-catalog-subpanel {
  display: none;
}

.sf-catalog-subpanel.active {
  display: block;
}

.sf-catalog-subgrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 42px;
  row-gap: 28px;
}

.sf-catalog-subgrid a {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.sf-site-menu-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.sf-brand-side,
.sf-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sf-menu-btn {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  display: grid;
  align-content: center;
  gap: 4px;
  cursor: pointer;
}

.sf-menu-btn span {
  display: block;
  width: 18px;
  height: 2px;
  background: #111;
  border-radius: 999px;
}

.sf-logo-wrap {
  display: inline-flex;
  align-items: center;
}

.sf-logo {
  width: 134px;
  height: auto;
  display: block;
}

.sf-search-wrap {
  display: flex;
  justify-content: center;
}

.sf-search {
  width: min(100%, 580px);
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 18px;
  font: inherit;
  color: var(--text);
}

.sf-btn {
  min-height: 44px;
  padding: 11px 20px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.sf-btn.ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.sf-btn.primary {
  background: var(--orange);
  color: #fff;
}

.sf-btn.navy {
  background: var(--navy);
  color: #fff;
}

.sf-btn.large {
  min-width: 170px;
}

.sf-cart-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.sf-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.sf-main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 42px 22px 80px;
}

.info-page {
  padding-top: 24px;
}

.info-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: stretch;
}

.info-copy,
.info-card {
  padding: 34px;
  border: 1px solid rgba(36, 51, 111, 0.12);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(42, 36, 31, 0.08);
}

.info-copy h1 {
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.info-copy p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.info-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.info-card h3 {
  margin: 0;
  font-size: 24px;
}

.info-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-bullets {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.info-bullets li {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(239, 232, 226, 0.72);
}

.info-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-panel {
  padding: 24px;
  border: 1px solid rgba(36, 51, 111, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.info-panel h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.info-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.catalog-page {
  padding-top: 28px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 252px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.catalog-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 14px;
}

.catalog-sidebar-group,
.catalog-sidebar-links {
  display: grid;
}

.catalog-sidebar-section {
  border-bottom: 1px solid rgba(221, 213, 207, 0.9);
}

.catalog-sidebar-group a,
.catalog-sidebar-links a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(221, 213, 207, 0.9);
  color: #4d4d4d;
  font-size: 16px;
  font-weight: 500;
}

.catalog-sidebar-group a.active {
  color: var(--text);
  font-weight: 700;
}

.catalog-sidebar-links a {
  padding-left: 24px;
}

.catalog-sidebar-section .catalog-sidebar-links a {
  border-bottom: 0;
}

.catalog-sidebar-links a.active {
  color: var(--text);
  font-weight: 700;
}

.catalog-sidebar-title {
  width: 100%;
  padding: 12px 22px 12px 0;
  border: 0;
  background: transparent;
  position: relative;
  text-align: left;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  list-style: none;
  cursor: pointer;
}

.catalog-sidebar-title::-webkit-details-marker {
  display: none;
}

.catalog-sidebar-title a {
  color: inherit;
  text-decoration: none;
}

.catalog-sidebar-title-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.catalog-sidebar-label {
  min-width: 0;
}

.catalog-sidebar-toggle {
  width: 22px;
  height: 22px;
  border: 0;
  background: transparent;
  color: #606060;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.catalog-sidebar-toggle span {
  display: inline-block;
  transition: transform 180ms ease;
}

.catalog-sidebar-section[open] .catalog-sidebar-toggle span {
  transform: rotate(180deg);
}

.catalog-main {
  min-width: 0;
}

.catalog-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-breadcrumbs a {
  color: #4d4d4d;
}

.catalog-toolbar {
  margin-top: 10px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.catalog-toolbar-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-toolbar-group label {
  color: #4d4d4d;
  font-size: 15px;
}

.catalog-select,
.catalog-chip {
  min-height: 44px;
  padding: 0 24px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #4d4d4d;
  font: inherit;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
  cursor: pointer;
}

.catalog-select::after,
.catalog-chip::after {
  content: "";
}

.catalog-heading {
  margin-top: 8px;
}

.catalog-heading h1 {
  margin: 0;
  font-size: 44px;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.catalog-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.catalog-filters {
  margin-top: 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.catalog-chip {
  padding-right: 38px;
  position: relative;
}

.catalog-chip:hover,
.catalog-select:hover {
  color: var(--text);
  border-bottom-color: rgba(36, 51, 111, 0.4);
}

.catalog-chip::before,
.catalog-select::before {
  content: "⌄";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #606060;
  font-size: 14px;
}

.catalog-chip-all {
  margin-left: auto;
}

.catalog-select {
  position: relative;
  min-width: 128px;
  text-align: left;
}

.catalog-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.catalog-card {
  border: 1px solid rgba(221, 213, 207, 0.9);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}

.catalog-card-media {
  aspect-ratio: 0.9 / 1;
  display: grid;
  place-items: end center;
  background: #ece8e4;
  padding: 18px 18px 0;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.catalog-card-body {
  padding: 12px 14px 14px;
}

.catalog-card-body h3 {
  margin: 0;
  font-size: 16px;
}

.catalog-card-body p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 160px);
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 44px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #efe3db;
  color: var(--orange);
  margin-bottom: 28px;
}

.hero-title {
  margin: 0;
  max-width: 620px;
  font-size: clamp(54px, 6vw, 74px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, var(--navy), #8a5c67, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 540px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
  color: var(--muted);
}

.hero-meta span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--orange);
}

.hero-visual {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.hero-image-frame {
  width: min(100%, 560px);
  border-radius: 34px;
  background: linear-gradient(160deg, #e3edf4, #f4f6f7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-collage {
  position: relative;
  min-height: 560px;
  padding: 44px;
}

.hero-collage-main {
  width: 100%;
  height: 472px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 30px rgba(24, 34, 54, 0.12));
}

.hero-collage-side {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(24, 34, 54, 0.14);
}

.hero-collage-side-top {
  top: 34px;
  left: -30px;
}

.hero-collage-side-bottom {
  right: -26px;
  bottom: 24px;
}

.hero-stat {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.hero-stat small {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.hero-stat strong {
  display: block;
  margin-top: 4px;
  font-size: 30px;
}

.hero-stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #f2e8e2;
  font-size: 22px;
}

.hero-stat-top {
  top: 58px;
  right: -6px;
}

.hero-stat-bottom {
  left: 10px;
  bottom: 50px;
}

.showcase {
  padding-top: 48px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 30px;
  padding-right: 30px;
}

.section-tag {
  margin: 0 0 8px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 700;
}

.showcase-head h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-align: center;
}

.showcase-head {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.showcase-sub {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.showcase-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.showcase-tab {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid #1f2328;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 600;
}

.showcase-tab::after {
  content: " ↗";
  color: #6b7280;
}

.showcase-tab-dark {
  background: #101114;
  color: #fff;
  border-color: #101114;
}

.showcase-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.showcase-card {
  display: grid;
  gap: 16px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.48);
  overflow: hidden;
}

.showcase-media {
  position: relative;
  min-height: 320px;
}

.showcase-media-stack {
  position: relative;
  min-height: 320px;
}

.showcase-card img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  padding: 24px;
  background: transparent;
}

.showcase-image {
  position: absolute;
  inset: 0;
  transition: opacity 220ms ease, transform 220ms ease;
  opacity: 0;
  transform: scale(0.98);
  pointer-events: none;
}

.showcase-image.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.showcase-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 38px;
  height: 38px;
  margin-top: -19px;
  border: 1px solid rgba(16, 17, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #101114;
  font-size: 24px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.showcase-arrow-left {
  left: 12px;
}

.showcase-arrow-right {
  right: 12px;
}

.showcase-card:hover .showcase-arrow {
  opacity: 1;
  pointer-events: auto;
}

.showcase-card:hover .showcase-arrow-left {
  transform: translateX(0);
}

.showcase-card:hover .showcase-arrow-right {
  transform: translateX(0);
}

.showcase-hover-cta {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(12px);
  min-width: 170px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #101114;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.showcase-card:hover .showcase-hover-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.showcase-card > div {
  display: grid;
  gap: 8px;
  padding: 0 20px 18px;
}

.showcase-card h3 {
  margin: 0;
  font-size: 22px;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  min-height: 48px;
}

.showcase-price {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 700;
}

.showcase-swatches {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.showcase-swatches span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(16, 17, 20, 0.14);
}

.showcase-swatches em {
  margin-left: auto;
  color: var(--muted);
  font-style: normal;
}

.how-it-works,
.benefits,
.faq-section,
.cta-band {
  margin-top: 88px;
}

.steps-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
}

.step-card,
.benefit-card {
  padding: 26px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 28px rgba(42, 36, 31, 0.08);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #efe3db;
  color: var(--orange);
  font-weight: 700;
}

.step-card h3,
.benefit-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
}

.step-card p,
.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.benefits-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 20px;
}

.faq-list {
  margin-top: 26px;
  display: grid;
  gap: 14px;
}

.faq-shell {
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(42, 36, 31, 0.06);
  padding: 24px 22px;
}

.faq-groups {
  display: grid;
  gap: 18px;
  margin-top: 0;
}

.faq-group {
  border-bottom: 1px solid rgba(221, 213, 207, 0.9);
  padding: 0 0 18px;
}

.faq-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.faq-group-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 22px 0 0;
}

.faq-group-summary::-webkit-details-marker {
  display: none;
}

.faq-group-title {
  margin: 0;
  font-size: 28px;
}

.faq-group-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #efe3db;
  color: var(--orange);
  font-size: 22px;
  transform: rotate(0deg);
  transition: transform 180ms ease;
}

.faq-group[open] .faq-group-arrow {
  transform: rotate(90deg);
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(42, 36, 31, 0.06);
  padding: 0 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 20px;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
}

.earnings-section {
  margin-top: 88px;
}

.earnings-shell {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(202, 109, 61, 0.16);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(239, 232, 226, 0.92));
  box-shadow: 0 24px 44px rgba(42, 36, 31, 0.1);
}

.earnings-visual {
  min-height: 620px;
  background:
    radial-gradient(circle at 10% 14%, rgba(36, 51, 111, 0.1), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(202, 109, 61, 0.16), transparent 24%),
    linear-gradient(180deg, #f3ede7 0%, #e7dbd1 100%);
  display: grid;
  place-items: center;
  padding: 46px;
}

.earnings-visual img {
  width: 100%;
  max-width: 440px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(32, 28, 25, 0.18));
}

.earnings-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px 38px 36px;
  background: rgba(255, 251, 247, 0.82);
}

.earnings-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.earnings-topline h3 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.earnings-topline p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.earnings-product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.earnings-pill {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(36, 51, 111, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.earnings-pill.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.earnings-inputs {
  margin-top: 34px;
  display: grid;
  gap: 28px;
}

.earnings-field {
  display: grid;
  gap: 12px;
}

.earnings-range-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.earnings-field-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.earnings-field label {
  font-size: 17px;
  font-weight: 600;
}

.earnings-value-chip {
  min-width: 86px;
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(36, 51, 111, 0.14);
  background: rgba(255, 255, 255, 0.85);
  font-weight: 700;
}

.earnings-field input[type="range"] {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  height: 6px;
  border-radius: 999px;
  background: rgba(36, 51, 111, 0.12);
  outline: none;
}

.earnings-field input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border: 4px solid #fff8f1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(42, 36, 31, 0.24);
  cursor: pointer;
}

.earnings-field input[type="range"]::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border: 4px solid #fff8f1;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(42, 36, 31, 0.24);
  cursor: pointer;
}

.earnings-result {
  margin-top: 34px;
  margin-left: -38px;
  margin-right: -38px;
  margin-bottom: -36px;
  padding: 28px 38px 24px;
  border-radius: 0 0 10px 10px;
  background: linear-gradient(135deg, #efd9cb 0%, #e7c4ae 45%, #f1e5da 100%);
  border: 1px solid rgba(202, 109, 61, 0.22);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  width: auto;
}

.earnings-result p {
  margin: 0;
  color: #6a4432;
  font-size: 18px;
}

.earnings-result strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.earnings-cta {
  width: 100%;
  margin-top: 22px;
  min-height: 56px;
  border-radius: 8px;
  font-size: 18px;
}

.earnings-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.comparison-section {
  margin-top: 88px;
}

.comparison-shell {
  margin-top: 30px;
  padding: 28px 26px 26px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 36px rgba(42, 36, 31, 0.08);
}

.comparison-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.comparison-tab {
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(36, 51, 111, 0.16);
  border-radius: 16px;
  background: rgba(239, 232, 226, 0.75);
  font-weight: 600;
  color: var(--muted);
  font: inherit;
  cursor: pointer;
}

.comparison-tab.active {
  background: #efe3db;
  color: var(--text);
  border-color: rgba(202, 109, 61, 0.24);
}

.comparison-table-wrap {
  overflow: hidden;
  border: 1px solid rgba(36, 51, 111, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.9);
}

.comparison-table {
  display: none;
  width: 100%;
  border-collapse: collapse;
}

.comparison-table.active {
  display: table;
}

.comparison-table thead th {
  padding: 20px 24px;
  border-bottom: 1px dashed rgba(36, 51, 111, 0.22);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-table thead th:first-child {
  width: 52%;
  text-align: left;
}

.comparison-logo {
  width: 108px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

.comparison-table td {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(221, 213, 207, 0.85);
  font-size: 18px;
}

.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
}

.comparison-table td:not(:first-child),
.comparison-table th:not(:first-child) {
  text-align: center;
}

.comparison-yes {
  color: var(--navy);
  font-size: 28px;
  font-weight: 700;
}

.comparison-no {
  color: rgba(16, 17, 20, 0.32);
  font-size: 28px;
  font-weight: 700;
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(36, 51, 111, 0.08), rgba(202, 109, 61, 0.12));
  border: 1px solid rgba(202, 109, 61, 0.18);
}

.cta-band h2 {
  margin: 0;
  max-width: 620px;
  font-size: 40px;
  line-height: 1.1;
}

.cta-band-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sf-footer {
  margin-top: 90px;
  border-top: 1px solid rgba(221, 213, 207, 0.8);
}

.sf-footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 22px 40px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}

.sf-footer-logo {
  width: 120px;
  height: auto;
  display: block;
}

.sf-footer-copy {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.7;
}

.sf-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: #374151;
}

@media (max-width: 1100px) {
  .sf-header-inner,
  .hero,
  .showcase-grid,
  .steps-grid,
  .benefits-grid,
  .earnings-shell,
  .info-hero,
  .info-grid,
  .catalog-layout,
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .showcase {
    width: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .hero {
    min-height: auto;
  }

  .sf-search-wrap {
    order: 3;
  }

  .hero-visual {
    min-height: auto;
  }

  .earnings-visual {
    min-height: 460px;
  }

  .sf-mega-menu {
    grid-template-columns: 260px 1fr;
  }

  .sf-mega-catalog,
  .sf-catalog-subgrid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .comparison-table thead th:first-child {
    width: auto;
  }

  .catalog-sidebar {
    position: static;
  }

  .cta-band,
  .sf-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .sf-header-inner,
  .sf-main {
    padding-left: 16px;
    padding-right: 16px;
  }

  .sf-header-inner {
    gap: 14px;
  }

  .sf-header-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero-actions,
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero-collage {
    padding: 24px;
    min-height: 420px;
  }

  .hero-collage-main {
    height: 320px;
  }

  .hero-collage-side {
    width: 120px;
    height: 120px;
    padding: 10px;
  }

  .hero-stat {
    position: static;
    margin-top: 16px;
  }

  .showcase-card img {
    height: 260px;
  }

  .earnings-panel,
  .earnings-visual {
    padding: 26px 22px;
  }

  .sf-site-menu-inner,
  .info-copy,
  .info-card,
  .info-panel {
    padding: 22px 16px;
  }

  .catalog-heading h1 {
    font-size: 34px;
  }

  .sf-mega-menu,
  .sf-mega-links {
    grid-template-columns: 1fr;
  }

  .sf-mega-content {
    padding: 22px 18px 18px;
  }

  .earnings-result {
    margin-left: -22px;
    margin-right: -22px;
    margin-bottom: -26px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .earnings-topline,
  .earnings-field-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .earnings-topline h3 {
    font-size: 28px;
  }

  .comparison-shell {
    padding: 20px 16px 16px;
    border-radius: 24px;
  }

  .comparison-tabs {
    grid-template-columns: 1fr;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tr {
    padding: 12px 0;
    border-bottom: 1px solid rgba(221, 213, 207, 0.85);
  }

  .comparison-table tbody tr:last-child {
    border-bottom: 0;
  }

  .comparison-table td {
    border: 0;
    padding: 8px 10px;
    text-align: left;
  }

  .comparison-table td:not(:first-child) {
    display: inline-block;
    width: auto;
    padding-right: 18px;
  }

  .cta-band {
    padding: 24px 20px;
  }

  .cta-band h2 {
    font-size: 30px;
  }
}
