/* ===========================================================
   home.css — Homepage + TVK home widgets (featured categories,
   editorial process, comparison articles). Pair with common.css.
   =========================================================== */

:root {
  --black: #0a0a0a;
  --off-white: #f5f2ec;
  --cream: #faf8f3;
  --accent: #ff3d00;
  --accent2: #00e5ff;
  --accent3: #7fff00;
  --mid: #1a1a1a;
  --gray: #888;
  --border: rgba(255, 255, 255, 0.08);
}

body {
  background: var(--black);
  color: var(--off-white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 65px 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(255, 61, 0, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 229, 255, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 70%, rgba(127, 255, 0, 0.05) 0%, transparent 60%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

.hero-tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 61, 0, 0.12);
  border: 1px solid rgba(255, 61, 0, 0.25);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 32px;
  display: inline-block;
  position: relative;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 11vw, 144px);
  line-height: 0.92;
  letter-spacing: 1px;
  position: relative;
  margin-bottom: 28px;
}

.hero h1 em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--off-white);
}

.hero h1 .accent-word {
  color: var(--accent);
}

.hero-sub {
  font-size: 19px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.65);
  max-width: 560px;
  margin: 0 auto 48px;
  position: relative;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: transform 0.15s, opacity 0.15s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 1px solid rgba(245, 242, 236, 0.2);
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.15s, background 0.15s;
}

.btn-ghost:hover {
  border-color: rgba(245, 242, 236, 0.5);
  background: rgba(245, 242, 236, 0.05);
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  position: relative;
  width: 100%;
  max-width: 700px;
}

.stat {
  text-align: center;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: var(--off-white);
}

.stat-num span {
  color: var(--accent);
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

/* TICKER */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--mid);
  padding: 14px 0;
}

.ticker {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 0 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ticker-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* SECTION HEADER */
.section {
  padding: 96px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.95;
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: normal;
  max-width: 100%;
  padding-inline: 0.04em;
}

.section-title p {
  margin: 0;
}

.section-title p+p {
  margin-top: 0;
}

.section-title em,
.section-title i {
  font-style: normal;
  color: var(--accent);
}

.section-title .accent,
.section-title .accent-word {
  color: var(--accent);
}

.section-desc,
.viral-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.55);
  line-height: 1.65;
  max-width: 100%;
}

.section-desc {
  max-width: 640px;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

.section-sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.55);
  max-width: 500px;
  line-height: 1.65;
}

/* FEATURED PRODUCTS */
.products-section {
  padding: 0 40px 96px;
}

.products-section--with-heading {
  padding-top: 80px;
}

.products-section--grid-only {
  padding-top: 0;
}

.products-header {
  max-width: 1200px;
  margin: 0 auto 56px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.products-header .section-title {
  margin-bottom: 0;
}

.products-header .section-desc {
  margin-top: 12px;
  max-width: 420px;
}

.advertorial-section .section-title,
.advertorial-section .section-label {
  text-align: left;
}

.products-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.product-card {
  min-height: 350px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--mid);
  transition: transform 0.3s;
  border: 1px solid #ffffff0f;
  border-radius: 20px;
}

.product-card:hover {
  transform: scale(1.01);
  z-index: 2;
}

.product-card.featured {
  grid-column: span 2;
}

.product-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: saturate(0.8);
  transition: filter 0.4s, transform 0.4s;
}

.product-card.featured .product-img {
  aspect-ratio: 21/8;
}

.product-card:hover .product-img {
  filter: saturate(1.1);
  transform: scale(1.04);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(10 10 10) 0%, #0a0a0aad 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.product-tag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 61, 0, 0.15);
  border: 1px solid rgba(255, 61, 0, 0.3);
  padding: 4px 10px;
  border-radius: 1px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.product-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.65);
  max-width: 480px;
  margin-bottom: 20px;
}

.product-cta {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(245, 242, 236, 0.3);
  border-radius: 1px;
  backdrop-filter: blur(8px);
  background: rgba(245, 242, 236, 0.07);
  transition: background 0.2s, border-color 0.2s;
  width: fit-content;
}

.product-cta:hover {
  background: rgba(245, 242, 236, 0.15);
  border-color: rgba(245, 242, 236, 0.6);
}

.product-cta .arrow {
  transition: transform 0.2s;
}

.product-cta:hover .arrow {
  transform: translateX(4px);
}

.product-price {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  background: var(--accent);
  color: #fff;
  padding: 5px 12px;
  border-radius: 1px;
  letter-spacing: 0.05em;
}

/* BENEFITS STRIP */
.benefits-strip {
  background: var(--mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 40px;
}

.benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.benefit-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--off-white);
}

.benefit-text {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.6;
}

/* ADVERTORIAL TEASER */
.advertorial-section {
  padding: 96px 40px;
  border-top: 1px solid var(--border);
}

.advertorial-section--grid-only {
  padding-top: 0;
  border-top: none;
}

.advertorial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.article-card {
  background: var(--mid);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: rgb(255 255 255 / 20%) 0px 18px 50px -10px !important;
}

.article-card:hover {
  transform: translateY(-4px);
  z-index: 2;
}

.article-img {
  width: 100%;
  display: block;
  aspect-ratio: 16/8;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-card:hover .article-img {
  transform: scale(1.03);
}

.article-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-cat {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
}

.article-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 14px;
  color: var(--off-white);
  flex: 1;
}

.article-meta {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.article-meta .read-time {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.article-meta .views {
  color: var(--accent3);
  font-weight: 500;
}

/* SOCIAL PROOF */
.proof-section {
  padding: 96px 40px;
  background: var(--mid);
  border-top: 1px solid var(--border);
}

.proof-section--grid-only {
  padding-top: 0;
  border-top: none;
  background: var(--mid);
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.proof-header {
  margin-bottom: 56px;
  text-align: left;
}

.proof-header .section-label,
.proof-header .section-title,
.proof-header .section-desc {
  text-align: left;
}

.proof-header .section-title {
  color: var(--off-white);
  margin-bottom: 0;
}

.proof-header .section-desc {
  max-width: 560px;
  color: rgba(245, 242, 236, 0.55);
}

.reviews-slider {
  --reviews-gap: 16px;
  --reviews-per-view: 3;
  position: relative;
  padding: 0 28px;
}

.reviews-slider__viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-slider__track {
  display: flex;
  gap: var(--reviews-gap);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.reviews-slider__slide {
  flex: 0 0 calc((100% - (var(--reviews-gap) * (var(--reviews-per-view) - 1))) / var(--reviews-per-view));
  min-width: 0;
}

.reviews-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.92);
  color: var(--off-white);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
}

.reviews-slider__arrow:hover,
.reviews-slider__arrow:focus-visible {
  border-color: rgba(255, 61, 0, 0.65);
  background: rgba(255, 61, 0, 0.12);
  outline: none;
}

.reviews-slider__arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.reviews-slider__arrow--prev {
  left: -12px;
}

.reviews-slider__arrow--next {
  right: -12px;
}

.reviews-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.reviews-slider__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.25);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.reviews-slider__dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.reviews-slider__dot:hover,
.reviews-slider__dot:focus-visible {
  background: rgba(255, 61, 0, 0.65);
  outline: none;
}

.reviews-slider .review-card {
  height: 100%;
}

/* Legacy grid class kept for backwards compatibility in editor CSS hooks. */
.reviews-grid {
  display: none;
}

.review-card {
    background: var(--black);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  right: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(255, 61, 0, 0.06);
  line-height: 1;
}

.stars {
  color: #ffbe00;
  font-size: 20px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245, 242, 236, 0.8);
  margin-bottom: 20px;
  font-style: italic;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #ff8c00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 13px;
  font-weight: 500;
}

.reviewer-loc {
  font-size: 12px;
  color: var(--gray);
  font-family: 'Space Mono', monospace;
}

/* VIRAL BADGE SECTION */
.viral-section {
  padding: 96px 40px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.viral-section--grid-only {
  padding-top: 0;
  border-top: none;
}

.viral-inner {
  max-width: 800px;
  margin: 0 auto;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.viral-section .categories-row {
  width: 100%;
  margin-bottom: 0;
}

.viral-section .categories-cta {
  width: 100%;
  margin-top: 40px;
}

.viral-section .categories-btn {
  display: inline-block;
}

.viral-section .section-label {
  margin-bottom: 8px;
}

.viral-tagline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.92;
  margin: 24px auto;
  overflow: visible;
  max-width: 100%;
  padding-inline: 0.04em;
}

.viral-tagline .line1,
.viral-tagline .line-extra {
  display: block;
  color: var(--off-white);
}

.viral-tagline .line2 {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 242, 236, 0.4);
}

.viral-tagline .accent {
  display: block;
  color: var(--accent);
}

.viral-sub {
  max-width: 520px;
  margin: 0 auto 40px;
  color: rgba(245, 242, 236, 0.5);
}

/* Standalone section heading widget (Elementor columns) */
.tvk-section-heading {
  overflow: visible;
  max-width: 100%;
}

.tvk-section-heading--contained {
  max-width: 1200px;
  margin: 0 auto 56px;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
}

.tvk-section-heading--band-start {
  padding-top: 96px;
  border-top: 1px solid var(--border);
}

.elementor-widget-tvk_section_heading .elementor-widget-container {
  padding-left: 40px;
  padding-right: 40px;
}

.tvk-section-heading--band-start .section-title,
.advertorial-header .section-title,
.proof-header .section-title {
  margin-bottom: 0;
}

.tvk-section-heading--contained .section-label,
.tvk-section-heading--contained .section-title,
.tvk-section-heading--contained .section-desc,
.tvk-section-heading--contained .viral-sub {
  text-align: left;
}

.tvk-section-heading--contained .section-desc,
.tvk-section-heading--contained .viral-sub {
  margin-left: 0;
  margin-right: auto;
}

.tvk-section-heading--center {
  max-width: 800px;
  margin: 0 auto 48px;
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}

.tvk-section-heading--viral {
  text-align: center;
}

.tvk-section-heading--viral.tvk-section-heading--contained,
.tvk-section-heading--viral.tvk-section-heading--center {
  max-width: 800px;
}

.tvk-section-heading--viral.tvk-section-heading--contained .section-label,
.tvk-section-heading--viral.tvk-section-heading--contained .section-title,
.tvk-section-heading--viral.tvk-section-heading--contained .section-desc,
.tvk-section-heading--viral.tvk-section-heading--contained .viral-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.tvk-section-heading--viral .viral-tagline .line1,
.tvk-section-heading--viral .viral-tagline .line-extra {
  color: var(--off-white);
}

.tvk-section-heading--viral .viral-tagline .line2 {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 242, 236, 0.4);
}

.tvk-section-heading--viral .viral-tagline .accent {
  color: var(--accent);
}

.tvk-section-heading--proof {
  margin-bottom: 0;
}

.advertorial-header {
  max-width: 1200px;
  margin: 0 auto 56px;
  text-align: left;
}

.advertorial-header .section-label,
.advertorial-header .section-title,
.advertorial-header .section-desc {
  text-align: left;
}

.elementor-widget-tvk_section_heading,
.elementor-widget-tvk_categories,
.elementor-widget-tvk_reviews {
  overflow: visible;
}

.elementor-widget-tvk_section_heading .elementor-widget-container,
.elementor-widget-tvk_categories .elementor-widget-container,
.elementor-widget-tvk_reviews .elementor-widget-container {
  overflow: visible;
}

/* Split heading + grid widgets in the same Elementor column */
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_articles .advertorial-section,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_products_grid .products-section,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_reviews .proof-section,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_articles .advertorial-section--grid-only,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_products_grid .products-section--grid-only,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_reviews .proof-section--grid-only {
  padding-top: 0;
  border-top: none;
}

/* Reviews band: one seamless section when heading + grid are split widgets */
.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_reviews) {
  background: var(--mid);
  border-top: 1px solid var(--border);
  padding: 96px 40px;
}

.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_reviews) .elementor-widget-wrap {
  row-gap: 0;
  gap: 0;
}

.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_reviews)>.elementor-widget-wrap>.elementor-element {
  margin-block: 0;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_reviews) .elementor-widget-container,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_reviews .elementor-widget-container {
  background: transparent;
  padding: 0;
  border: none;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_reviews) .tvk-section-heading--band-start {
  padding-top: 0;
  border-top: none;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_reviews) .tvk-section-heading--contained {
  margin-bottom: 40px;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_reviews) .section-title,
.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_reviews) .section-desc {
  color: var(--off-white);
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_reviews) .section-desc {
  color: rgba(245, 242, 236, 0.55);
}

.elementor-widget-tvk_section_heading+.elementor-widget-tvk_reviews .proof-section,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_reviews .proof-section--grid-only {
  padding: 0;
  border: none;
  background: transparent;
}

.elementor-widget-tvk_section_heading+.elementor-widget-tvk_reviews .proof-header {
  display: none;
  margin: 0;
}

.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_reviews) .elementor-widget-tvk_section_heading .elementor-widget-container {
  padding-left: 0;
  padding-right: 0;
}

/* Categories band: viral headline + pill row in one section */
.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_categories) {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 96px 40px;
  text-align: center;
}

.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_categories) .elementor-widget-wrap {
  row-gap: 0;
  gap: 0;
}

.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_categories)>.elementor-widget-wrap>.elementor-element {
  margin-block: 0;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .elementor-widget-container,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_categories .elementor-widget-container {
  background: transparent;
  padding: 0;
  border: none;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .tvk-section-heading--band-start {
  padding-top: 0;
  border-top: none;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .tvk-section-heading--contained {
  margin: 0 auto 0;
  max-width: 800px;
  text-align: center;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .tvk-section-heading--contained .section-label,
.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .tvk-section-heading--contained .section-desc,
.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .tvk-section-heading--contained .viral-sub,
.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .viral-tagline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.elementor-widget-tvk_section_heading:has(+ .elementor-widget-tvk_categories) .viral-sub {
  margin-bottom: 40px;
}

.elementor-widget-tvk_section_heading+.elementor-widget-tvk_categories .viral-section,
.elementor-widget-tvk_section_heading+.elementor-widget-tvk_categories .viral-section--grid-only {
  padding: 0;
  border: none;
  background: transparent;
}

.elementor-widget-tvk_section_heading+.elementor-widget-tvk_categories .viral-inner {
  max-width: 100%;
}

.elementor-widget-tvk_section_heading+.elementor-widget-tvk_categories .categories-row {
  margin-bottom: 0;
}

.elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_categories) .elementor-widget-tvk_section_heading .elementor-widget-container {
  padding-left: 0;
  padding-right: 0;
}

.categories-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

.cat-pill {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--border);
  border-radius: 20px;
  color: var(--gray);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.cat-pill:hover,
.cat-pill.active {
  color: var(--off-white);
  border-color: rgba(245, 242, 236, 0.4);
  background: rgba(245, 242, 236, 0.05);
}

.cat-pill.hot {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.cat-pill.hot:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
  opacity: 0.92;
}

/* EMAIL CAPTURE */
.email-section {
  background: #0f0f0f;
  border-top: 1px solid var(--border);
  padding: 80px 40px;
  text-align: center;
}

.email-inner {
  max-width: 520px;
  margin: 0 auto;
}

.email-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
}

.email-section p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.5);
  margin-bottom: 32px;
}

.email-form {
  display: flex;
  gap: 0;
  border: 1px solid rgba(245, 242, 236, 0.15);
  border-radius: 2px;
  overflow: hidden;
  align-items: stretch;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 0;
  background: rgba(245, 242, 236, 0.04);
  border: none;
  outline: none;
  padding: 16px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--off-white);
}

.email-form input::placeholder {
  color: var(--gray);
}

.email-form button {
  background: var(--accent);
  border: none;
  padding: 16px 28px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.2s;
}

.email-form button:hover {
  opacity: 0.85;
}

.email-fine {
  font-size: 12px;
  color: rgba(245, 242, 236, 0.3);
  margin-top: 16px;
  font-family: 'Space Mono', monospace;
  letter-spacing: 0.03em;
}

.email-form-wrap {
  max-width: 100%;
}

.email-form-wrap .hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.email-form input.error {
  box-shadow: inset 0 0 0 1px rgba(255, 61, 0, 0.6);
  background: rgba(255, 61, 0, 0.06);
}

#newsletter-messages {
  margin-top: 14px;
  font-size: 14px;
  min-height: 1.25em;
  text-align: center;
}

#newsletter-messages.success {
  color: var(--accent3);
}

#newsletter-messages.error {
  color: #ff8a65;
}

#newsletter-field-error {
  margin-top: 10px;
  min-height: 0;
}

#newsletter-field-error label.error {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  color: #ff8a65;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
}

/* FAQ (homepage dark theme) */
.faq-section--home {
  padding: 80px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
}

.faq-section--home .wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.faq-section--home .eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 16px;
}

.faq-section--home .eyebrow::before {
  display: none;
}

.faq-section--home h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 1px;
  color: var(--off-white);
  margin-bottom: 12px;
}

.faq-section--home h2 em {
  font-style: normal;
  color: var(--accent);
}

.faq-section--home .sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245, 242, 236, 0.5);
  line-height: 1.6;
}

.faq-section--home .faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-section--home details.faq-item {
  background: rgba(245, 242, 236, 0.03);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, background 0.2s;
}

.faq-section--home details.faq-item[open] {
  border-color: rgba(255, 61, 0, 0.35);
  background: rgba(245, 242, 236, 0.05);
}

.faq-section--home details.faq-item summary {
  padding: 20px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--off-white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}

.faq-section--home .faq-question {
  flex: 1;
  min-width: 0;
  text-align: left;
}

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

.faq-section--home details.faq-item summary::marker {
  content: none;
}

.faq-section--home .faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(245, 242, 236, 0.08);
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.faq-section--home details[open] .faq-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
}

.faq-section--home .faq-body {
  padding: 0 24px 20px;
  color: rgba(245, 242, 236, 0.55);
  font-size: 15px;
  line-height: 1.7;
}

.faq-section--home .faq-body p {
  margin: 0;
}

.faq-section--home .faq-body p+p {
  margin-top: 0.75em;
}

/* ANIMATIONS */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.6s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    padding: 30px 15px;
    min-height: auto;
  }

  .products-section {
    padding: 0 15px 30px;
  }

  .products-header {
    padding: 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .product-card {
    border-radius: 5px;
  }

  .tvk-section-heading--contained,
  .tvk-section-heading--center {
    padding-left: 0;
    padding-right: 0;
  }

  .elementor-widget-tvk_section_heading .elementor-widget-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tvk-section-heading--band-start {
    padding-top: 20px;
    margin-bottom: 0;
  }

  .product-overlay {
    padding: 8px;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .product-card.featured .product-img {
    aspect-ratio: 16/9;
  }

  .benefits-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .advertorial-inner {
    grid-template-columns: 1fr;
  }

  .reviews-slider {
    padding: 0 4px;
  }

  .reviews-slider__arrow--prev {
    left: 0;
  }

  .reviews-slider__arrow--next {
    right: 0;
  }

  .reviews-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
    display: none;
  }

  .hero-stats {
    gap: 28px;
    margin-top: 20px;
  }

  .faq-section--home {
    padding: 30px 0;
  }

  .faq-section--home .wrap {
    padding: 0 15px;
  }

  .faq-section--home details.faq-item summary {
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-section--home .faq-body {
    padding: 0 20px 18px;
    font-size: 14px;
  }

  .elementor-widget-tvk_section_heading+.elementor-widget-tvk_reviews .proof-section--grid-only {
    padding: 0;
  }

  .section,
  .email-section,
  .advertorial-section,
  .advertorial-section--grid-only,
  .benefits-strip,
  .proof-section,
  .proof-section--grid-only,
  .elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_reviews),
  .elementor-column:has(.elementor-widget-tvk_section_heading + .elementor-widget-tvk_categories),
  .featured-categories-section,
  .elementor-widget-tvk_featured_categories .featured-categories-section,
  .viral-section {
    padding: 30px 15px;
  }
}

/* ============ TVK Featured Categories widget (merged) ============ */
.featured-categories-section,
.elementor-widget-tvk_featured_categories .featured-categories-section {
  --black: #0a0a0a;
  --off-white: #f5f2ec;
  --accent: #ff3d00;
  --accent2: #00e5ff;
  --mid: #1a1a1a;
  --gray: #888;
  --border: rgba(255, 255, 255, 0.08);

  padding: 96px 40px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 61, 0, 0.06) 0%, transparent 60%),
    var(--black);
  border-top: 1px solid var(--border);
  color: var(--off-white);
}

.featured-categories-section--grid-only {
  padding-top: 64px;
}

.featured-categories-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-categories-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}

.featured-categories-header .section-label {
  justify-content: center;
}

.featured-categories-header .section-title {
  color: var(--off-white);
  margin-bottom: 12px;
}

.featured-categories-header .section-title em,
.featured-categories-header .section-title i {
  font-style: normal;
  color: var(--accent);
}

.featured-categories-header .section-desc {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(245, 242, 236, 0.55);
}

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

.featured-category {
  min-width: 0;
}

.featured-category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--mid);
  text-decoration: none;
  color: var(--off-white);
  transition: transform 0.3s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.featured-category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 61, 0, 0.4);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 61, 0, 0.12);
}

.featured-category-media {
  display: block;
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: #111;
}

.featured-category-media img,
.elementor-widget-tvk_featured_categories .featured-category-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.featured-category-card:hover .featured-category-media img {
  transform: scale(1.05);
  filter: saturate(1);
}

.featured-category-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 25% 30%, rgba(255, 61, 0, 0.2) 0%, transparent 52%),
    radial-gradient(circle at 75% 70%, rgba(0, 229, 255, 0.14) 0%, transparent 52%),
    linear-gradient(145deg, #141414 0%, #0a0a0a 100%);
}

.featured-category-shade {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 100%);
  pointer-events: none;
}

.featured-category-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%),
    var(--mid);
}

.featured-category-footer-main {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.featured-category-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--off-white);
}

.featured-category-meta {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

.featured-category-meta::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--accent);
  vertical-align: middle;
  transform: translateY(-1px);
}

.featured-category-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 9px 14px;
  border-radius: 4px;
  border: 1px solid rgba(245, 242, 236, 0.22);
  background: rgba(10, 10, 10, 0.35);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.featured-category-btn-icon {
  font-size: 12px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.featured-category-card:hover .featured-category-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.featured-category-card:hover .featured-category-btn-icon {
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  .featured-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .featured-categories-section {
    padding: 72px 24px;
  }

  .featured-categories-header {
    margin-bottom: 36px;
  }

  .featured-category-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
  }

  .featured-category-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .featured-categories-section {
    padding: 64px 20px;
  }

  .featured-categories-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }
}


/* ============ TVK Editorial Process widget (merged) ============ */
.editorial-process-section {
  --black: #0a0a0a;
  --off-white: #f5f2ec;
  --accent: #ff3d00;
  --accent2: #00e5ff;
  --accent3: #7fff00;
  --mid: #1a1a1a;
  --gray: #888;
  --border: rgba(255, 255, 255, 0.08);

  position: relative;
  overflow: hidden;
  padding: 96px 40px;
  background:
    radial-gradient(ellipse 80% 55% at 50% -10%, rgba(255, 61, 0, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 229, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(127, 255, 0, 0.05) 0%, transparent 50%),
    var(--black);
  border-top: 1px solid var(--border);
  color: var(--off-white);
}

.editorial-process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 78%);
  pointer-events: none;
}

.editorial-process-inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

.editorial-process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 56px;
}

.editorial-process-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 61, 0, 0.1);
  border: 1px solid rgba(255, 61, 0, 0.25);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.editorial-process-title {
  margin: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 5.5vw, 68px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--off-white);
  text-transform: uppercase;
}

.editorial-process-title em,
.editorial-process-title i {
  font-style: normal;
  color: var(--accent);
}

.editorial-process-accent {
  display: block;
  width: 64px;
  height: 3px;
  margin: 20px auto 22px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent3));
}

.editorial-process-sub {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 242, 236, 0.55);
}

/* Flow row */
.editorial-process-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.editorial-process-item {
  flex: 1 1 0;
  min-width: 0;
  max-width: 240px;
}

.editorial-process-arrow {
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 242, 236, 0.4);
  transition: color 0.25s ease, transform 0.25s ease;
}

.editorial-process-arrow svg {
  width: 32px;
  height: 32px;
}

.editorial-process-flow:hover .editorial-process-arrow {
  color: var(--accent3);
}

/* Single step card */
.editorial-process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 260px;
  padding: 22px 20px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--mid);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.editorial-process-item:hover .editorial-process-card {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.editorial-process-num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(245, 242, 236, 0.4);
}

.editorial-process-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.editorial-process-item:hover .editorial-process-card-glow {
  opacity: 1;
}

.editorial-process-icon-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 8px 0 16px;
  border-radius: 50%;
  background: rgba(10, 10, 10, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.editorial-process-icon {
  font-size: 32px;
  line-height: 1;
  transition: transform 0.3s ease;
}

.editorial-process-icon--fallback {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: var(--off-white);
}

.editorial-process-item:hover .editorial-process-icon {
  transform: scale(1.08);
}

.editorial-process-card-title {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--off-white);
}

.editorial-process-card-text {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--gray);
}

/* Tone accents */
.editorial-process-item--tone-1 .editorial-process-card {
  border-color: rgba(255, 61, 0, 0.28);
}

.editorial-process-item--tone-1 .editorial-process-card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(255, 61, 0, 0.18) 0%, transparent 60%);
}

.editorial-process-item--tone-1:hover .editorial-process-card {
  border-color: rgba(255, 61, 0, 0.5);
}

.editorial-process-item--tone-1 .editorial-process-icon-wrap {
  border-color: rgba(255, 61, 0, 0.3);
  background: rgba(255, 61, 0, 0.08);
}

.editorial-process-item--tone-2 .editorial-process-card {
  border-color: rgba(0, 229, 255, 0.25);
}

.editorial-process-item--tone-2 .editorial-process-card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(0, 229, 255, 0.16) 0%, transparent 60%);
}

.editorial-process-item--tone-2:hover .editorial-process-card {
  border-color: rgba(0, 229, 255, 0.45);
}

.editorial-process-item--tone-2 .editorial-process-icon-wrap {
  border-color: rgba(0, 229, 255, 0.28);
  background: rgba(0, 229, 255, 0.06);
}

.editorial-process-item--tone-3 .editorial-process-card {
  border-color: rgba(127, 255, 0, 0.25);
}

.editorial-process-item--tone-3 .editorial-process-card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(127, 255, 0, 0.16) 0%, transparent 60%);
}

.editorial-process-item--tone-3:hover .editorial-process-card {
  border-color: rgba(127, 255, 0, 0.45);
}

.editorial-process-item--tone-3 .editorial-process-icon-wrap {
  border-color: rgba(127, 255, 0, 0.28);
  background: rgba(127, 255, 0, 0.06);
}

.editorial-process-item--tone-4 .editorial-process-card {
  border-color: rgba(245, 242, 236, 0.16);
}

.editorial-process-item--tone-4 .editorial-process-card-glow {
  background: radial-gradient(circle at 50% 0%, rgba(245, 242, 236, 0.08) 0%, transparent 60%);
}

.editorial-process-item--tone-4:hover .editorial-process-card {
  border-color: rgba(245, 242, 236, 0.3);
}

.editorial-process-item--tone-4 .editorial-process-icon-wrap {
  border-color: rgba(245, 242, 236, 0.18);
  background: rgba(245, 242, 236, 0.04);
}

@media (max-width: 1024px) {
  .editorial-process-flow {
    flex-wrap: wrap;
    gap: 20px 8px;
    justify-content: center;
  }

  .editorial-process-item {
    flex: 1 1 calc(50% - 32px);
    max-width: 280px;
  }

  .editorial-process-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .editorial-process-section {
    padding: 72px 24px;
  }

  .editorial-process-header {
    margin-bottom: 40px;
  }

  .editorial-process-flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-width: 340px;
    margin: 0 auto;
  }

  .editorial-process-item {
    flex: none;
    max-width: none;
    width: 100%;
  }

  .editorial-process-card {
    min-height: 0;
    padding: 22px 18px 20px;
  }

  .editorial-process-icon-wrap {
    width: 58px;
    height: 58px;
    margin: 4px auto 14px;
  }

  .editorial-process-icon {
    font-size: 28px;
  }

  .editorial-process-card-title {
    margin-bottom: 8px;
  }

  .editorial-process-arrow {
    display: flex;
    flex: none;
    padding: 10px 0;
    transform: rotate(90deg);
  }

  .editorial-process-arrow svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  .editorial-process-section {
    padding: 64px 20px;
  }
}


/* ============ TVK Comparison Articles widget (merged) ============ */
.comparison-section {
  --black: #0a0a0a;
  --off-white: #f5f2ec;
  --accent: #ff3d00;
  --accent2: #00e5ff;
  --accent3: #7fff00;
  --mid: #1a1a1a;
  --gray: #888;
  --border: rgba(255, 255, 255, 0.08);

  padding: 96px 40px;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(127, 255, 0, 0.05) 0%, transparent 65%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 61, 0, 0.04) 0%, transparent 55%),
    var(--black);
  border-top: 1px solid var(--border);
  color: var(--off-white);
}

.comparison-section--grid-only {
  padding-top: 64px;
}

.comparison-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.comparison-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}

.comparison-badge {
  display: inline-block;
  margin-bottom: 20px;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 61, 0, 0.1);
  border: 1px solid rgba(255, 61, 0, 0.28);
  color: var(--accent);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.comparison-title {
  margin: 0 0 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--off-white);
  text-transform: uppercase;
}

.comparison-title em,
.comparison-title i {
  font-style: normal;
  color: var(--accent);
}

.comparison-sub {
  margin: 0 auto;
  max-width: 560px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(245, 242, 236, 0.55);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.comparison-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 4px;
  background: var(--mid);
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.comparison-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 61, 0, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.comparison-card-media {
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  min-height: 260px;
  background: #111;
}

.comparison-card-media img,
.comparison-card-placeholder {
  display: block;
  width: 100%;
  height: 310px !important;
  object-fit: cover;
  filter: saturate(0.82);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.comparison-card-placeholder {
  background:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(255, 61, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(127, 255, 0, 0.08) 0%, transparent 60%),
    #111;
}

.comparison-card-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 10, 0.92) 0%,
    rgba(10, 10, 10, 0.35) 45%,
    rgba(10, 10, 10, 0.08) 100%
  );
  pointer-events: none;
}

.comparison-cat {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent2);
}

.comparison-cat--media {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 2px;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.comparison-card-body .comparison-cat {
  display: inline-block;
}

.comparison-verdict {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  max-width: calc(100% - 32px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.comparison-vs-strip {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 4px;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.comparison-side {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--off-white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.comparison-side--a {
  text-align: left;
}

.comparison-side--b {
  text-align: right;
}

.comparison-vs {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 61, 0, 0.18);
  border: 1px solid rgba(255, 61, 0, 0.45);
  color: var(--accent);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.comparison-card-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 26px 26px 24px;
  background: var(--mid);
}

.comparison-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.comparison-card-top:has(.comparison-tested:only-child) {
  justify-content: flex-end;
}

.comparison-tested {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent3);
  white-space: nowrap;
}

.comparison-card-title {
  margin: 0 0 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--off-white);
}

.comparison-card-excerpt {
  margin: 0 0 18px;
  padding-left: 14px;
  border-left: 2px solid var(--accent3);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.65;
  color: var(--gray);
}

.comparison-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--gray);
}

.comparison-read-time {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-views {
  color: var(--accent3);
  font-weight: 500;
}

.comparison-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
  transition: color 0.2s ease, gap 0.2s ease;
}

.comparison-card-cta span {
  display: inline-block;
  transition: transform 0.2s ease;
}

.comparison-card:hover .comparison-card-cta {
  color: var(--accent);
}

.comparison-card:hover .comparison-card-cta span {
  transform: translateX(4px);
}

/* .comparison-card:hover .comparison-card-media img {
  transform: scale(1.05);
  filter: saturate(1);
} */

.comparison-card--image-top .comparison-card-media {
  order: 1;
}

.comparison-card--image-top .comparison-card-body {
  order: 2;
}

.comparison-card--text-top .comparison-card-body {
  order: 1;
}

.comparison-card--text-top .comparison-card-media {
  order: 2;
}

.comparison-card--text-top .comparison-cat--media {
  display: none;
}

@media (max-width: 900px) {
  .comparison-section {
    padding: 72px 24px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .comparison-header {
    margin-bottom: 40px;
  }

  .comparison-card-body {
    padding: 22px 20px 20px;
  }

  .comparison-card-media,
  .comparison-card-media img,
  .comparison-card-placeholder {
    min-height: 220px;
  }
}

@media (max-width: 480px) {
  .comparison-section {
    padding: 64px 20px;
  }

  .comparison-vs-strip {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .comparison-side--a,
  .comparison-side--b {
    text-align: center;
  }

  .comparison-vs {
    margin: 0 auto;
  }

  .comparison-card-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
