* {
  box-sizing: border-box;
}

:root {
  --brand: #e85d04;
  --brand-light: #ff8c42;
  --brand-dark: #c2410c;
  --teal: #0d9488;
  --teal-dark: #0f766e;
  --text: #1c1917;
  --muted: #57534e;
  --bg: #fafaf9;
  --bg-soft: #fff7ed;
  --border: #e7e5e4;
  --card-shadow: 0 4px 24px rgba(28, 25, 23, 0.06);
  --card-shadow-hover: 0 12px 40px rgba(28, 25, 23, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --font: "Noto Sans", system-ui, sans-serif;
  --font-display: "Fraunces", "Noto Sans", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1,
h2,
.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

/* —— Logo (no image dependency) —— */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.logo-mark svg {
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.logo-text span {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.88;
}

.topbar {
  background: linear-gradient(135deg, #c2410c 0%, #ea580c 50%, #f97316 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(194, 65, 12, 0.25);
}

.topbar-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hotline {
  margin-left: auto;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
}

.hotline:hover {
  text-decoration: underline;
}

.main-nav {
  border-bottom: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.03);
}

.nav-inner {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 36px;
  overflow-x: auto;
  padding: 4px 0;
  -webkit-overflow-scrolling: touch;
}

.nav-inner a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
  padding: 8px 4px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-inner a:hover {
  color: var(--brand-dark);
}

.nav-inner a.active {
  color: var(--brand-dark);
  border-bottom-color: var(--brand);
}

.btn {
  display: inline-block;
  border-radius: 999px;
  padding: 11px 20px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #fb923c, #c2410c);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

.topbar-cta {
  color: #7c2d12;
  background: #fff;
  border-color: #ffedd5;
  box-shadow: 0 8px 22px rgba(124, 45, 18, 0.3);
}

.topbar-cta:hover {
  color: #7c2d12;
  background: #fff7ed;
  border-color: #fed7aa;
  box-shadow: 0 10px 26px rgba(124, 45, 18, 0.35);
}

.btn-outline {
  color: var(--brand-dark);
  border-color: rgba(234, 88, 12, 0.45);
  background: #fff;
}

.btn-outline:hover {
  background: var(--bg-soft);
  border-color: var(--brand);
}

.btn-ghost {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* —— Demo photography (high-res, replaces wireframe blocks) —— */
.media-fill {
  position: relative;
  overflow: hidden;
  background: #0c0a09;
}

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

.media-hero {
  height: clamp(320px, 62vh, 640px);
}

.media-hero img {
  height: 100%;
}

.card-visual .media-card {
  height: 220px;
}

.page-banner .media-banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

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

.form-visual .media-form {
  min-height: 420px;
}

.form-visual .media-form img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}

.reviews-static .media-avatar {
  width: 72px;
  height: 72px;
}

.review-slide-visual .media-review {
  height: 100%;
  min-height: 280px;
}

.review-slide-visual .media-review img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.wf-founder.media-founder {
  aspect-ratio: 4/5;
  max-height: 420px;
}

.wf-founder.media-founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}

.partner-logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
}

.partner-logo-row img {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: 0.92;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(124, 45, 18, 0.24);
  box-shadow: 0 4px 12px rgba(124, 45, 18, 0.22);
  padding: 5px;
}

.brand-logo-svg {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(124, 45, 18, 0.22);
}

.photo-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}

/* —— Wireframe placeholders —— */
.wf {
  position: relative;
  overflow: hidden;
  background-color: #e7e5e4;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.35) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 6px,
      rgba(0, 0, 0, 0.04) 6px,
      rgba(0, 0, 0, 0.04) 7px
    );
}

.wf::before {
  content: "";
  position: absolute;
  inset: 18% 12%;
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  pointer-events: none;
}

.wf::after {
  content: "";
  position: absolute;
  bottom: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 8px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 4px;
}

.wf-hero {
  min-height: min(72vh, 640px);
  width: 100%;
}

.wf-theme-a {
  background-color: #ccfbf1;
  background-image:
    linear-gradient(180deg, rgba(13, 148, 136, 0.15), transparent 60%),
    repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(13, 148, 136, 0.06) 6px, rgba(13, 148, 136, 0.06) 7px);
}

.wf-theme-b {
  background-color: #ffedd5;
  background-image:
    linear-gradient(200deg, rgba(234, 88, 12, 0.12), transparent 55%),
    repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(234, 88, 12, 0.05) 6px, rgba(234, 88, 12, 0.05) 7px);
}

.wf-theme-c {
  background-color: #dbeafe;
  background-image:
    linear-gradient(160deg, rgba(59, 130, 246, 0.12), transparent 50%),
    repeating-linear-gradient(-45deg, transparent, transparent 6px, rgba(59, 130, 246, 0.05) 6px, rgba(59, 130, 246, 0.05) 7px);
}

.wf-card {
  height: 220px;
  border-radius: 0;
}

.wf-card-sm {
  height: 160px;
}

.wf-banner {
  min-height: 240px;
  width: 100%;
  position: absolute;
  inset: 0;
}

.wf-form-side {
  min-height: 420px;
  border-radius: var(--radius);
}

.wf-avatar {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  flex-shrink: 0;
}

.wf-avatar::after {
  width: 24%;
  height: 24%;
  border-radius: 999px;
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.wf-thumb {
  min-height: 0;
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
}

.wf-review-bg {
  height: 200px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.wf-founder {
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 420px;
  border-radius: var(--radius);
}

.hero {
  position: relative;
  background: #0c0a09;
}

.hero-slider {
  position: relative;
  overflow: hidden;
}

.slide {
  display: none;
  position: relative;
}

.slide.active {
  display: block;
}

.slide .media-hero img {
  filter: brightness(0.72) saturate(1.05);
}

.overlay {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  width: min(1160px, 92%);
  margin: 0 auto;
  color: #fff;
  gap: 14px;
  padding: 24px 0;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.overlay h1,
.overlay h2 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  max-width: 720px;
  line-height: 1.15;
}

.overlay p {
  margin: 0 0 4px;
  max-width: 560px;
  font-size: 1.05rem;
  opacity: 0.96;
}

.slide-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 24px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.25s, background 0.2s;
}

.dot.active {
  width: 32px;
  background: #fff;
}

.section {
  padding: 64px 0;
}

.section-alt {
  background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 100%);
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.section-title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--text);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 8px;
}

.grid-4,
.grid-3 {
  display: grid;
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reason-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  background: #fff;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.25s, transform 0.2s;
}

.reason-card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}

.reason-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, #fff7ed, #ffedd5);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.reason-icon svg {
  width: 26px;
  height: 26px;
}

.reason-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-family: var(--font);
  font-weight: 700;
}

.reason-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.hb-block {
  border-radius: var(--radius);
  padding: 32px 28px;
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: #fff;
  box-shadow: 0 16px 48px rgba(13, 148, 136, 0.25);
}

.hb-block h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-family: var(--font-display);
}

.hb-block p {
  margin: 0;
  opacity: 0.94;
  font-size: 0.96rem;
}

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.3s, transform 0.25s;
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.card-visual {
  position: relative;
}

.card-visual .wf-card {
  height: 220px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.65));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.card-body {
  padding: 18px;
}

.card h3,
.card h4 {
  margin: 0 0 6px;
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.chip {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.price {
  margin: 8px 0;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.05rem;
}

.card-body ul {
  margin: 0 0 12px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.interest {
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 0.88rem;
}

/* —— Review carousel —— */
.review-carousel-wrap {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}

.review-carousel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--card-shadow);
}

.review-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 280px;
}

.review-slide-visual .wf-review-bg {
  height: 100%;
  min-height: 280px;
  border-radius: 0;
}

.review-slide-body {
  padding: 28px 28px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.review-slide-body header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.review-slide-body h3 {
  margin: 0;
  font-size: 1.05rem;
}

.review-slide-body .role {
  margin: 2px 0 0;
  font-size: 0.82rem;
  color: var(--muted);
}

.review-slide-body blockquote {
  margin: 0;
  font-size: 1.02rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
}

.review-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.review-nav button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--brand-dark);
  transition: background 0.2s, border-color 0.2s;
}

.review-nav button:hover {
  background: var(--bg-soft);
  border-color: var(--brand);
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.review-dots button {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: #d6d3d1;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, width 0.2s;
}

.review-dots button[aria-current="true"] {
  width: 24px;
  background: var(--brand);
}

.reviews-static .review {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--border);
}

.reviews-static .wf-avatar {
  width: 72px;
  height: 72px;
}

.reviews-static .review-body {
  flex: 1;
}

.review + .review {
  margin-top: 14px;
}

.review h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.review-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-row span {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.88rem;
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 40px;
  align-items: center;
}

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.form-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

form.lead-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
}

form.lead-form h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

form.lead-form .sub {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

label {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  padding: 12px 14px;
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
  outline: none;
}

.status {
  margin: 14px 0 0;
  min-height: 24px;
  color: #047857;
  font-weight: 700;
  font-size: 0.92rem;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  z-index: 120;
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
}

.sticky-cta a {
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
}

.sticky-cta a:nth-child(1) {
  background: linear-gradient(180deg, #ea580c, #c2410c);
}

.sticky-cta a:nth-child(2) {
  background: linear-gradient(180deg, #059669, #047857);
}

.sticky-cta a:nth-child(3) {
  background: linear-gradient(180deg, #0284c7, #0369a1);
}

main {
  padding-bottom: max(56px, env(safe-area-inset-bottom, 0px));
}

.page-banner {
  position: relative;
  min-height: 260px;
  display: grid;
  align-items: center;
  background: #1c1917;
  color: #fff;
  overflow: hidden;
}

.page-banner .media-banner img {
  filter: brightness(0.65);
}

.page-banner .inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 92%);
  margin: 0 auto;
  padding: 52px 0;
}

.page-banner h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
}

.page-banner p {
  margin: 0 0 16px;
  max-width: 560px;
  opacity: 0.95;
  font-size: 1.02rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.65;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-end;
  margin-bottom: 28px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.filter-bar label {
  margin: 0;
  min-width: 160px;
  flex: 1;
}

.combo-section h3 {
  margin: 36px 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand);
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.highlight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.highlight-row article {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.highlight-row h3 {
  margin: 0 0 8px;
  color: var(--brand-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.promo-strip {
  background: linear-gradient(90deg, #fff7ed, #ffedd5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.promo-strip strong {
  color: var(--brand-dark);
}

.partner-intro {
  max-width: 920px;
  margin: 0 auto 22px;
  text-align: center;
}

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

.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--card-shadow);
}

.partner-card h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  color: var(--brand-dark);
  font-size: 1.1rem;
}

.partner-card p {
  margin: 0 0 12px;
  color: var(--text);
}

.partner-card ul {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.partner-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.partner-tags span {
  padding: 6px 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
  color: #92400e;
  font-size: 0.8rem;
}

.partner-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.partner-metrics article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
}

.partner-metrics strong {
  display: block;
  font-size: 1.15rem;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.partner-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 1000px) {
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .partner-grid,
  .partner-metrics {
    grid-template-columns: 1fr;
  }
}

.sku-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}

.sku-gallery .main-shot {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
}

.sku-gallery .main-shot img,
.sku-gallery .main-shot .wf {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.sku-thumbs {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
  align-self: stretch;
}

.sku-thumbs .wf,
.sku-thumbs .wf-thumb {
  min-height: 72px;
  height: 100%;
}

.sku-thumbs img,
.sku-thumbs .wf {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.spec-list li {
  padding: 10px 0;
  border-bottom: 1px solid #e7e5e4;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.price-table th,
.price-table td {
  border: 1px solid var(--border);
  padding: 12px 14px;
  text-align: left;
}

.price-table thead {
  background: var(--bg-soft);
}

.sku-layout {
  display: grid;
  grid-template-columns: 1fr minmax(0, 320px);
  gap: 32px;
  align-items: start;
}

.sku-sidebar {
  position: sticky;
  top: 80px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: var(--card-shadow);
}

.sku-sidebar .price-big {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin: 0 0 12px;
  font-family: var(--font-display);
}

.footer-site {
  padding: 28px 0 88px;
  border-top: 1px solid var(--border);
  margin-top: 32px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: #fafaf9;
}

.footer-site a {
  color: var(--brand-dark);
  font-weight: 600;
}

.breadcrumb {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.breadcrumb a {
  color: var(--teal-dark);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .grid-4,
  .grid-3,
  .cards,
  .about,
  .form-wrap,
  .highlight-row,
  .sku-layout {
    grid-template-columns: 1fr 1fr;
  }

  .review-slide {
    grid-template-columns: 1fr;
  }

  .review-slide-visual .wf-review-bg {
    min-height: 180px;
  }

  .sku-gallery {
    grid-template-columns: 1fr;
  }

  .sku-thumbs {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 720px) {
  .hotline {
    display: none;
  }

  .grid-4,
  .grid-3,
  .cards,
  .about,
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .slide .media-hero {
    height: clamp(260px, 52vh, 420px);
  }

  .slide .media-hero img {
    height: 100%;
  }

  .highlight-row,
  .sku-layout {
    grid-template-columns: 1fr;
  }

  .sku-sidebar {
    position: static;
  }

  .section {
    padding: 48px 0;
  }
}
