/* ═══════════════════════════════════════════
   STAREQ — Custom styles beyond theme.json
   All colors/spacing use var(--wp--preset--*) tokens
   ═══════════════════════════════════════════ */

/* ── Global resets matching HTML design ── */
html {
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}

/* ── Remove gaps between full-width sections ── */
.wp-site-blocks > .alignfull + .alignfull,
.wp-site-blocks > .wp-block-group.alignfull + .wp-block-group.alignfull,
.wp-site-blocks > .wp-block-template-part + .wp-block-group.alignfull,
.wp-site-blocks > .wp-block-group.alignfull + .wp-block-template-part,
.wp-site-blocks > * + .alignfull {
  margin-top: 0 !important;
}
/* Also remove gap after slider (wp:html block) */
.wp-site-blocks > .stareq-slider + *,
.wp-site-blocks > * + .stareq-slider {
  margin-top: 0 !important;
}

/* ── Partners border-bottom matching HTML ── */
.stareq-partners-bar {
  border-bottom: 1px solid var(--wp--preset--color--neutral-300);
}

/* ── Section subtitle ── */
.stareq-section-sub {
  font-size: 17px;
  color: var(--wp--preset--color--neutral-500);
  max-width: 560px;
}

/* ── Section Label — mono font, orange, with decorative line ── */
.stareq-section-label {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wp--preset--color--secondary);
  margin-bottom: var(--wp--preset--spacing--3);
  display: flex;
  align-items: center;
  gap: 12px;
}
.stareq-section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--wp--preset--color--secondary);
  display: inline-block;
}
.stareq-section-label-light {
  color: rgba(255, 255, 255, 0.5);
}
.stareq-section-label-light::before {
  background: rgba(255, 255, 255, 0.3);
}
.stareq-section-label-center {
  justify-content: center;
}

/* ── Scroll Reveal ── */
.stareq-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stareq-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.stareq-reveal-d1 { transition-delay: 0.1s; }
.stareq-reveal-d2 { transition-delay: 0.2s; }
.stareq-reveal-d3 { transition-delay: 0.3s; }
.stareq-reveal-d4 { transition-delay: 0.4s; }

/* ── Hero Slider — Cinematic Fullscreen ── */
.stareq-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.stareq-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.stareq-slide.active {
  opacity: 1;
  z-index: 2;
}

.stareq-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.stareq-slide.active .stareq-slide-bg {
  animation: stareq-kenBurns 7s ease-out forwards;
}
@keyframes stareq-kenBurns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.stareq-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.stareq-slide-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--6);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  color: #fff;
}
.stareq-slide-text h1 {
  color: #fff;
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.stareq-slide-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 540px;
  line-height: 1.5;
  margin-bottom: 36px;
}

.stareq-slide-text {
  max-width: 700px;
}
.stareq-slide-text > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.stareq-slide.active .stareq-slide-text > *:nth-child(1) {
  opacity: 1; transform: translateY(0); transition-delay: 0.3s;
}
.stareq-slide.active .stareq-slide-text > *:nth-child(2) {
  opacity: 1; transform: translateY(0); transition-delay: 0.5s;
}
.stareq-slide.active .stareq-slide-text > *:nth-child(3) {
  opacity: 1; transform: translateY(0); transition-delay: 0.7s;
}

/* Slide geometric accents */
.stareq-slide-geo {
  position: absolute;
  z-index: 1;
}
.stareq-slide-geo-circle {
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  right: -100px;
  top: 10%;
  animation: stareq-geoDrift 20s ease-in-out infinite;
}
.stareq-slide-geo-ring {
  width: 300px;
  height: 300px;
  border: 1px solid rgba(242, 140, 30, 0.1);
  border-radius: 50%;
  right: 10%;
  bottom: 15%;
  animation: stareq-geoDrift 15s ease-in-out infinite reverse;
}
.stareq-slide-geo-square {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  left: 60%;
  top: 20%;
  transform: rotate(45deg);
  animation: stareq-geoRotate 30s linear infinite;
}
@keyframes stareq-geoDrift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 15px); }
}
@keyframes stareq-geoRotate {
  to { transform: rotate(405deg); }
}

/* Slider controls */
.stareq-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--stareq-transition-normal);
  color: var(--wp--preset--color--white);
}
.stareq-slider-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}
.stareq-slider-prev { left: 24px; }
.stareq-slider-next { right: 80px; }

.stareq-slider-dots {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stareq-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  padding: 0;
}
.stareq-slider-dot.active {
  width: 14px;
  height: 14px;
  background: var(--wp--preset--color--secondary);
  box-shadow: 0 0 12px rgba(242, 140, 30, 0.4);
}

.stareq-slider-counter {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  z-index: 10;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  writing-mode: vertical-lr;
}
.stareq-slider-counter-current {
  color: var(--wp--preset--color--white);
  font-size: 20px;
}

.stareq-slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}
.stareq-slider-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--wp--preset--color--secondary);
  transition: none;
}
.stareq-slider-progress-bar.animating {
  transition: width 6s linear;
  width: 100%;
}

/* ── Partner Marquee ── */








/* ── Page Hero — Blue gradient for inner pages ── */
.stareq-page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--primary-dark) 100%);
  padding: 120px 0 64px;
  overflow: hidden;
  text-align: center;
}
.stareq-page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.stareq-page-hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Breadcrumb ── */
.stareq-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--wp--preset--spacing--4);
  justify-content: center;
  flex-wrap: wrap;
}
.stareq-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--stareq-transition-normal);
}
.stareq-breadcrumb a:hover {
  color: var(--wp--preset--color--white);
}
.stareq-breadcrumb-separator {
  opacity: 0.4;
}

/* ── Card Hover ── */
.stareq-card-hover {
  transition: all var(--stareq-transition-normal);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: var(--stareq-radius-lg);
}
.stareq-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--stareq-shadow-xl);
  border-color: transparent;
}

/* Product card bottom border accent */
.stareq-product-card {
  background: var(--wp--preset--color--white);
  border-bottom: 4px solid var(--wp--preset--color--neutral-300);
  transition: all var(--stareq-transition-normal);
  overflow: hidden;
}
.stareq-product-card:hover {
  border-bottom-color: var(--wp--preset--color--secondary);
}
/* Product card image — fixed height matching HTML design */
.stareq-product-card > .wp-block-image,
.stareq-product-card > figure.wp-block-image {
  height: 180px;
  overflow: hidden;
  margin: 0;
}
.stareq-product-card > .wp-block-image img,
.stareq-product-card > figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.stareq-product-card:hover > .wp-block-image img,
.stareq-product-card:hover > figure.wp-block-image img {
  transform: scale(1.05);
}

/* Service card image — fixed height matching HTML design */
.stareq-card-hover > .wp-block-image,
.stareq-card-hover > figure.wp-block-image {
  margin: 0;
}
.has-primary-background-color .stareq-card-hover > .wp-block-image,
.has-primary-background-color .stareq-card-hover > figure.wp-block-image {
  height: 140px;
  overflow: hidden;
}
.has-primary-background-color .stareq-card-hover > .wp-block-image img,
.has-primary-background-color .stareq-card-hover > figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.has-primary-background-color .stareq-card-hover:hover > .wp-block-image img,
.has-primary-background-color .stareq-card-hover:hover > figure.wp-block-image img {
  transform: scale(1.05);
}

/* Industry card image — fixed height matching HTML design */
.stareq-industry-card > .wp-block-image,
.stareq-industry-card > figure.wp-block-image {
  height: 140px;
  overflow: hidden;
  margin: 0;
}
.stareq-industry-card > .wp-block-image img,
.stareq-industry-card > figure.wp-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.stareq-industry-card:hover > .wp-block-image img,
.stareq-industry-card:hover > figure.wp-block-image img {
  transform: scale(1.05);
}

/* About section image — fixed height */
.stareq-about-img {
  border-radius: var(--stareq-radius-lg);
  overflow: hidden;
  position: relative;
  height: 440px;
}
.stareq-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stareq-about-img-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 20px;
  border-radius: var(--stareq-radius-md, 8px);
  color: var(--wp--preset--color--white);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.stareq-about-img-label svg {
  color: var(--wp--preset--color--secondary);
}

/* About pillars row */
.stareq-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 64px;
  padding-top: 64px;
  border-top: 1px solid var(--wp--preset--color--neutral-300);
}
.stareq-pillar {
  text-align: center;
  padding: 24px 12px;
}
.stareq-pillar-icon {
  width: 44px;
  height: 44px;
  background: var(--wp--preset--color--primary-light);
  border-radius: var(--stareq-radius-md, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--wp--preset--color--primary);
}
.stareq-pillar h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  line-height: 1.3;
  margin: 0;
}

/* Service card body — positioning context for badge */
.stareq-service-body {
  position: relative;
}

/* Service card number */
.stareq-service-num {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 80px;
  font-weight: 700;
  color: rgba(10, 77, 162, 0.06);
  line-height: 1;
  position: absolute;
  top: -8px;
  right: 8px;
  pointer-events: none;
  transition: color var(--stareq-transition-normal);
}
.stareq-card-hover:hover .stareq-service-num {
  color: rgba(10, 77, 162, 0.1);
}

/* ── Timeline — Vertical numbered process steps ── */
.stareq-timeline {
  position: relative;
  padding-left: 60px;
}
.stareq-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--wp--preset--color--neutral-300);
}
.stareq-timeline-item {
  position: relative;
  padding-bottom: var(--wp--preset--spacing--10);
}
.stareq-timeline-item:last-child {
  padding-bottom: 0;
}
.stareq-timeline-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 16px;
  font-weight: 700;
  z-index: 1;
}

/* ── Specs Table ── */
.stareq-specs-table {
  width: 100%;
  border-collapse: collapse;
}
.stareq-specs-table th,
.stareq-specs-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--wp--preset--color--neutral-300);
  font-size: 14px;
}
.stareq-specs-table th {
  background: var(--wp--preset--color--neutral-100);
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  width: 40%;
}
.stareq-specs-table td {
  color: var(--wp--preset--color--neutral-700);
}
.stareq-specs-table tr:hover td {
  background: var(--wp--preset--color--primary-light);
}

/* ── WhatsApp floating button ── */
.stareq-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all var(--stareq-transition-normal);
  animation: stareq-whatsappIn 0.5s ease 1.5s both;
}
.stareq-whatsapp:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  color: var(--wp--preset--color--white);
}
.stareq-whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: stareq-whatsappRing 2s ease-in-out infinite;
}
@keyframes stareq-whatsappRing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}
@keyframes stareq-whatsappIn {
  from { opacity: 0; transform: scale(0.5) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ── Sticky Header ── */
.stareq-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.stareq-header-scrolled,
.stareq-header-solid {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
/* On the front page, header starts transparent over hero */
body.home .stareq-header-solid:not(.stareq-header-scrolled) {
  background: transparent !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}
body.home .stareq-header-solid:not(.stareq-header-scrolled) .wp-block-navigation a {
  color: rgba(255, 255, 255, 0.85);
}
body.home .stareq-header-solid:not(.stareq-header-scrolled) .wp-block-navigation a:hover {
  color: var(--wp--preset--color--white);
}
body.home .stareq-header-solid:not(.stareq-header-scrolled) .stareq-header-phone {
  color: rgba(255, 255, 255, 0.6);
}
body.home .stareq-header-solid:not(.stareq-header-scrolled) .wp-block-site-logo img {
  filter: brightness(0) invert(1);
}
.stareq-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height var(--stareq-transition-normal);
}
.stareq-header-scrolled .stareq-header-inner {
  height: 64px;
}

/* Header nav links */
.stareq-header .wp-block-navigation a {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-header .wp-block-navigation a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--secondary);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-header .wp-block-navigation a:hover {
  color: var(--wp--preset--color--white);
  text-decoration: none;
}
.stareq-header .wp-block-navigation a:hover::after {
  width: 100%;
}
.stareq-header-scrolled .wp-block-navigation a,
.stareq-header-solid .wp-block-navigation a {
  color: var(--wp--preset--color--neutral-700);
}
.stareq-header-scrolled .wp-block-navigation a:hover,
.stareq-header-solid .wp-block-navigation a:hover {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}
.stareq-header-scrolled .wp-block-navigation a::after,
.stareq-header-solid .wp-block-navigation a::after {
  background: var(--wp--preset--color--primary);
}
/* Remove WP default underline on nav links */
.stareq-header .wp-block-navigation a:where(:not(.wp-element-button)) {
  text-decoration: none !important;
}

/* Header phone on transparent */
.stareq-header-phone {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.02em;
  transition: color var(--stareq-transition-normal);
}
.stareq-header-scrolled .stareq-header-phone,
.stareq-header-solid .stareq-header-phone {
  color: var(--wp--preset--color--neutral-500);
}

/* Logo on transparent header */
.stareq-header .wp-block-site-logo {
  flex-shrink: 0;
}
.stareq-header .wp-block-site-logo img {
  height: 70px;
  width: auto;
  max-width: none;
  transition: height var(--stareq-transition-normal);
}
.stareq-header-scrolled .wp-block-site-logo img {
  height: 52px;
}

/* ── Why Choose Us Icons ── */
.stareq-why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--wp--preset--color--primary-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ── Stats Section ── */
.stareq-stats-section {
  position: relative;
  overflow: hidden;
}
.stareq-stats-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.stareq-stats-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.92) 0%, rgba(8, 58, 122, 0.88) 50%, rgba(5, 38, 84, 0.92) 100%);
}
.stareq-stats-content {
  position: relative;
  z-index: 1;
}
.stareq-stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--wp--preset--spacing--8);
  text-align: center;
}
.stareq-stat-item {
  position: relative;
}
.stareq-stat-item .stareq-counter {
  font-family: var(--wp--preset--font-family--mono);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  white-space: nowrap;
}
.stareq-stat-item .stareq-stat-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin: 4px 0 0;
}
.stareq-stat-divider::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* ── CTA Section — Orange gradient ── */
.stareq-cta-gradient {
  background: linear-gradient(135deg, var(--wp--preset--color--secondary) 0%, var(--wp--preset--color--secondary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.stareq-cta-gradient::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

/* ── Form Styles ── */
.stareq-form-box {
  background: var(--wp--preset--color--white);
  border-radius: var(--stareq-radius-lg);
  padding: var(--wp--preset--spacing--10);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.stareq-form-box .wpcf7-form {
  gap: 16px;
}
.stareq-form-box .wpcf7-form label {
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-700);
  margin-bottom: 4px;
}
.stareq-form-box .wpcf7-form input[type="text"],
.stareq-form-box .wpcf7-form input[type="tel"],
.stareq-form-box .wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--wp--preset--color--neutral-900);
  background: var(--wp--preset--color--neutral-100);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.stareq-form-box .wpcf7-form input:focus,
.stareq-form-box .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
  box-shadow: 0 0 0 3px var(--wp--preset--color--primary-light);
  background: #fff;
}
.stareq-form-box .wpcf7-form textarea {
  min-height: 100px;
  resize: vertical;
}
.stareq-form-box .wpcf7-form input[type="submit"] {
  width: 100%;
  min-height: 48px;
  padding: 12px 24px;
  background: var(--wp--preset--color--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.stareq-form-box .wpcf7-form input[type="submit"]:hover {
  background: var(--wp--preset--color--primary-dark);
}

/* ── Contact Info Cards ── */
.stareq-contact-card {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: var(--stareq-radius-lg);
  padding: var(--wp--preset--spacing--8);
  text-align: center;
  transition: all var(--stareq-transition-normal);
}
.stareq-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--stareq-shadow-xl);
  border-color: var(--wp--preset--color--primary);
}
.stareq-contact-icon {
  width: 56px;
  height: 56px;
  background: var(--wp--preset--color--primary-light);
  border-radius: var(--stareq-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--wp--preset--spacing--4);
  color: var(--wp--preset--color--primary);
}

/* ── Testimonial Slider ── */
.stareq-testimonial {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: var(--stareq-radius-lg);
  padding: var(--wp--preset--spacing--8);
  position: relative;
}
.stareq-testimonial-quote {
  font-size: 48px;
  color: var(--wp--preset--color--primary-light);
  line-height: 1;
  margin-bottom: var(--wp--preset--spacing--4);
}

/* ── Reference Logos ── */
.stareq-ref-logo img {
  max-height: 90px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter var(--stareq-transition-normal);
}
.stareq-ref-logo:hover img {
  filter: grayscale(0%) opacity(1);
}
.stareq-ref-text {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: var(--wp--preset--color--neutral-100);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--wp--preset--color--neutral-700);
  letter-spacing: 0.02em;
}

/* ── Body padding for fixed header ── */
.stareq-body-offset {
  padding-top: 80px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer a,
footer .wp-block-list a {
  color: inherit !important;
  text-decoration: none;
}
footer a:hover,
footer .wp-block-list a:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ═══════════════════════════════════════════
   PRODUCT PAGES — Single & Category
   ═══════════════════════════════════════════ */

/* ── Product Breadcrumb — White bg, left-aligned ── */
.stareq-product-breadcrumb {
  background: var(--wp--preset--color--white);
  border-bottom: 1px solid var(--wp--preset--color--neutral-100);
}
.stareq-product-breadcrumb .stareq-breadcrumb {
  justify-content: flex-start;
  color: var(--wp--preset--color--neutral-500);
  margin-bottom: 0;
}
.stareq-product-breadcrumb .stareq-breadcrumb a {
  color: var(--wp--preset--color--neutral-500);
}
.stareq-product-breadcrumb .stareq-breadcrumb a:hover {
  color: var(--wp--preset--color--primary);
}
.stareq-product-breadcrumb .stareq-breadcrumb .stareq-breadcrumb-separator {
  color: var(--wp--preset--color--neutral-300);
  opacity: 1;
}
.stareq-product-breadcrumb .stareq-breadcrumb-current {
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
}

/* ── Brand Badge ── */
.stareq-brand-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  background: var(--wp--preset--color--primary-light);
  color: var(--wp--preset--color--primary);
  font-family: var(--wp--preset--font-family--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* ── Mini Specs Grid ── */
.stareq-mini-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.stareq-mini-spec {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--wp--preset--color--neutral-100);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-mini-spec:hover {
  background: var(--wp--preset--color--primary-light);
}
.stareq-mini-spec-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--wp--preset--color--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stareq-mini-spec-icon svg {
  color: var(--wp--preset--color--primary);
}
.stareq-mini-spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--wp--preset--color--neutral-500);
  margin-bottom: 2px;
}
.stareq-mini-spec-value {
  font-size: 17px;
  font-weight: 700;
  color: var(--wp--preset--color--neutral-900);
  font-family: var(--wp--preset--font-family--mono);
  letter-spacing: -0.01em;
}

/* ── Product Action Buttons ── */
.stareq-product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stareq-btn-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.stareq-btn-quote:hover {
  background: var(--wp--preset--color--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(242, 140, 30, 0.3);
  color: var(--wp--preset--color--white);
}
.stareq-btn-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  background: transparent;
  color: var(--wp--preset--color--primary);
  font-size: 15px;
  font-weight: 600;
  border: 2px solid var(--wp--preset--color--primary);
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.stareq-btn-download:hover {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 77, 162, 0.2);
}
.stareq-btn-download:hover svg {
  color: var(--wp--preset--color--white);
}

/* ── Gallery ── */
.stareq-gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--wp--preset--color--primary-light) 0%, #dce8f5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
}
.stareq-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stareq-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stareq-gallery-thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--wp--preset--color--primary-light) 0%, #dce8f5 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.stareq-gallery-thumb:hover {
  border-color: var(--wp--preset--color--neutral-300);
}
.stareq-gallery-thumb.active {
  border-color: var(--wp--preset--color--primary);
  box-shadow: 0 0 0 3px var(--wp--preset--color--primary-light);
}

/* ── Features Checklist ── */
.stareq-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0;
  margin: 0;
}
.stareq-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--wp--preset--color--neutral-700);
  line-height: 1.5;
}
.stareq-feature-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--wp--preset--color--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.stareq-feature-check svg {
  color: var(--wp--preset--color--primary);
}

/* ── Datasheet Download Card ── */
.stareq-datasheet-card {
  background: var(--wp--preset--color--primary-light);
  border-radius: 12px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.stareq-datasheet-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stareq-datasheet-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--wp--preset--color--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stareq-datasheet-icon svg {
  color: var(--wp--preset--color--primary);
}
.stareq-datasheet-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  margin-bottom: 2px;
}
.stareq-datasheet-meta {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 12px;
  color: var(--wp--preset--color--neutral-500);
}
.stareq-datasheet-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 24px;
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.stareq-datasheet-btn:hover {
  background: var(--wp--preset--color--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 77, 162, 0.2);
  color: var(--wp--preset--color--white);
}

/* ── Blue Quote CTA Section ── */
.stareq-quote-cta {
  position: relative;
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, var(--wp--preset--color--primary-dark) 100%);
  overflow: hidden;
  text-align: center;
}
.stareq-quote-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}
.stareq-quote-cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  pointer-events: none;
}
.stareq-quote-cta .stareq-btn-quote {
  width: auto;
  display: inline-flex;
  min-height: 56px;
  padding: 0 40px;
  font-size: 16px;
}
.stareq-quote-cta-phone {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--wp--preset--font-family--mono);
  font-size: 14px;
}

/* ── Related Products Grid ── */
.stareq-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stareq-related-card {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}
.stareq-related-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wp--preset--color--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 77, 162, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.stareq-related-card:hover::before {
  transform: scaleX(1);
}
.stareq-related-img {
  height: 180px;
  background: linear-gradient(135deg, var(--wp--preset--color--primary-light) 0%, #dce8f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.stareq-related-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--wp--preset--color--white), transparent);
}
.stareq-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stareq-related-body {
  padding: 20px;
}
.stareq-related-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.stareq-related-spec {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 12px;
  color: var(--wp--preset--color--neutral-500);
  margin-bottom: 14px;
}
.stareq-related-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}
.stareq-related-link svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-related-card:hover .stareq-related-link svg {
  transform: translateX(4px);
}

/* ── Category Cards ── */
.stareq-category-card {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.stareq-category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--wp--preset--color--primary);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 2px 2px 0;
}
.stareq-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 77, 162, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.stareq-category-card:hover::before {
  transform: scaleY(1);
}
.stareq-category-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--wp--preset--color--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-category-card:hover .stareq-category-icon {
  background: var(--wp--preset--color--primary);
}
.stareq-category-icon svg {
  color: var(--wp--preset--color--primary);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-category-card:hover .stareq-category-icon svg {
  color: var(--wp--preset--color--white);
}
.stareq-category-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  margin-bottom: 6px;
  line-height: 1.3;
}
.stareq-category-content p {
  font-size: 14px;
  color: var(--wp--preset--color--neutral-500);
  line-height: 1.5;
  margin-bottom: 14px;
}
.stareq-category-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.stareq-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: var(--wp--preset--color--primary-light);
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--wp--preset--color--primary);
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-category-card:hover .stareq-category-badge {
  background: rgba(10, 77, 162, 0.12);
}
.stareq-category-arrow {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--primary);
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-category-card:hover .stareq-category-arrow {
  gap: 10px;
}
.stareq-category-arrow svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-category-card:hover .stareq-category-arrow svg {
  transform: translateX(3px);
}

/* ── Category Grid ── */
.stareq-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Sub-Category Product Grid ── */
.stareq-subcat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.stareq-subcat-card {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
  color: inherit;
  display: block;
}
.stareq-subcat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--wp--preset--color--primary);
  border-radius: 12px 12px 0 0;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-subcat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(10, 77, 162, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}
.stareq-subcat-card:hover::before {
  transform: scaleX(1);
}
.stareq-subcat-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--wp--preset--color--neutral-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.stareq-subcat-img img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.stareq-subcat-card:hover .stareq-subcat-img img {
  transform: scale(1.05);
}
.stareq-subcat-body {
  padding: 20px 24px 24px;
}
.stareq-subcat-body h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.stareq-subcat-body p {
  font-size: 14px;
  color: var(--wp--preset--color--neutral-500);
  margin: 0 0 12px;
  line-height: 1.5;
}
.stareq-subcat-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.stareq-subcat-spec {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--wp--preset--color--primary);
  background: var(--wp--preset--color--primary-light);
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.03em;
}
.stareq-subcat-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--secondary);
  margin-top: 16px;
  text-decoration: none;
}
.stareq-subcat-cta svg {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.stareq-subcat-card:hover .stareq-subcat-cta svg {
  transform: translateX(4px);
}
/* Sub-cat hero image (two-column intro) */
.stareq-subcat-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.stareq-subcat-hero-img {
  border-radius: 12px;
  overflow: hidden;
  background: var(--wp--preset--color--neutral-100);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stareq-subcat-hero-img img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}

/* ── Brands Section ── */
.stareq-brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stareq-brand-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--wp--preset--color--neutral-300);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  user-select: none;
  padding: 12px 8px;
  position: relative;
}
.stareq-brand-logo:hover {
  color: var(--wp--preset--color--primary);
}
.stareq-brand-logo::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 24px;
  height: 2px;
  background: var(--wp--preset--color--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}
.stareq-brand-logo:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* ── Specs Table — Blue header upgrade ── */
.stareq-specs-table thead th {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 16px 24px;
  text-align: left;
  border-bottom: none;
}
.stareq-specs-table thead th:first-child {
  border-radius: 12px 0 0 0;
}
.stareq-specs-table thead th:last-child {
  border-radius: 0 12px 0 0;
}
.stareq-specs-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
}
.stareq-specs-table-wrap .stareq-specs-table {
  background: var(--wp--preset--color--white);
  border-radius: 12px;
  overflow: hidden;
}
.stareq-specs-table-wrap .stareq-specs-table thead th {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--white);
}
.stareq-specs-table-wrap .stareq-specs-table tbody tr:nth-child(even) {
  background: var(--wp--preset--color--neutral-100);
}
.stareq-specs-table-wrap .stareq-specs-table tbody td {
  padding: 14px 24px;
  font-size: 14px;
  border-bottom: 1px solid var(--wp--preset--color--neutral-100);
}
.stareq-specs-table-wrap .stareq-specs-table tbody td:first-child {
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
}
.stareq-specs-table-wrap .stareq-specs-table tbody td:last-child {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 13px;
}
.stareq-specs-table-wrap .stareq-specs-table tbody tr:last-child td {
  border-bottom: none;
}

/* ── Product description area ── */
.stareq-product-description h2,
.stareq-product-description h3 {
  color: var(--wp--preset--color--neutral-900);
}
.stareq-product-description p {
  font-size: 15px;
  color: var(--wp--preset--color--neutral-700);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   SERVICE DETAIL PAGES
   ═══════════════════════════════════════════ */

/* ── Enhanced Hero for Service Pages ── */
.stareq-page-hero--service {
  text-align: left;
  padding: 120px 0 80px;
}
.stareq-page-hero--service .stareq-breadcrumb {
  justify-content: flex-start;
  padding-left: 0 !important;
}
.stareq-page-hero--service .wp-block-post-title {
  animation: stareq-fadeInUp 0.8s ease 0.1s both;
}
.stareq-page-hero--service .wp-block-post-excerpt {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  animation: stareq-fadeInUp 0.8s ease 0.2s both;
}
.stareq-page-hero--service .wp-block-post-excerpt__excerpt {
  max-width: 520px;
}
.stareq-page-hero--service .wp-block-post-excerpt__excerpt p {
  margin: 0;
}
@keyframes stareq-fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Service Description Grid ── */
.stareq-svc-desc {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
}
.stareq-svc-desc-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--wp--preset--color--neutral-900);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.stareq-svc-desc-text p {
  font-size: 15px;
  color: var(--wp--preset--color--neutral-700);
  line-height: 1.7;
  margin-bottom: 20px;
}
.stareq-svc-desc-text p strong {
  color: var(--wp--preset--color--neutral-900);
  font-weight: 600;
}

/* ── Metric Cards ── */
.stareq-svc-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--wp--preset--color--neutral-300);
}
.stareq-metric-card {
  text-align: center;
  padding: 20px 12px;
  background: var(--wp--preset--color--primary-light);
  border-radius: var(--stareq-radius-md, 8px);
}
.stareq-metric-number {
  font-family: var(--wp--preset--font-family--mono);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--wp--preset--color--primary);
  line-height: 1;
  margin-bottom: 6px;
}
.stareq-metric-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--wp--preset--color--neutral-700);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Service Image Placeholder ── */
.stareq-svc-img {
  border-radius: var(--stareq-radius-md, 8px);
  overflow: hidden;
  height: 420px;
  background-color: var(--wp--preset--color--primary-dark);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stareq-svc-img .stareq-svc-img-pattern {
  background: linear-gradient(135deg, rgba(8,58,122,0.55) 0%, rgba(10,77,162,0.45) 100%);
}
.stareq-svc-img-pattern {
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}
.stareq-svc-img > svg {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.15);
}
.stareq-svc-img-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--stareq-radius-md, 8px);
  color: var(--wp--preset--color--white);
  font-size: 13px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.stareq-svc-img-label svg {
  color: var(--wp--preset--color--secondary);
  flex-shrink: 0;
}

/* ── Process Section (gray background override) ── */
.stareq-svc-process {
  background: var(--wp--preset--color--neutral-100);
  padding: 96px 0;
}
.stareq-svc-process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stareq-svc-section-header {
  text-align: center;
  margin-bottom: 64px;
}
.stareq-svc-section-header .stareq-section-label {
  justify-content: center;
}
.stareq-svc-section-header h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--wp--preset--color--neutral-900);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.stareq-svc-section-header p {
  font-size: 17px;
  color: var(--wp--preset--color--neutral-500);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Timeline (enhanced for service pages) ── */
.stareq-svc-timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.stareq-svc-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--wp--preset--color--neutral-300);
}
.stareq-svc-timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 48px;
  position: relative;
}
.stareq-svc-timeline-item:last-child {
  padding-bottom: 0;
}
.stareq-svc-timeline-num {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--wp--preset--color--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--wp--preset--color--white);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(10, 77, 162, 0.25);
}
.stareq-svc-timeline-content {
  padding-top: 10px;
  flex: 1;
}
.stareq-svc-timeline-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.stareq-svc-timeline-content p {
  font-size: 15px;
  color: var(--wp--preset--color--neutral-500);
  line-height: 1.6;
}

/* ── Benefits Grid ── */
.stareq-svc-benefits {
  padding: 96px 0;
  background: var(--wp--preset--color--white);
}
.stareq-svc-benefits-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stareq-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stareq-benefit-card {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: var(--stareq-radius-lg, 12px);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--stareq-transition-normal);
  position: relative;
  overflow: hidden;
}
.stareq-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--wp--preset--color--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--stareq-transition-normal);
}
.stareq-benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--stareq-shadow-hover);
  border-color: transparent;
}
.stareq-benefit-card:hover::before {
  transform: scaleX(1);
}
.stareq-benefit-icon {
  width: 56px;
  height: 56px;
  background: var(--wp--preset--color--primary-light);
  border-radius: var(--stareq-radius-md, 8px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--stareq-transition-normal);
}
.stareq-benefit-card:hover .stareq-benefit-icon {
  background: var(--wp--preset--color--primary);
}
.stareq-benefit-icon svg {
  color: var(--wp--preset--color--primary);
  transition: color var(--stareq-transition-normal);
}
.stareq-benefit-card:hover .stareq-benefit-icon svg {
  color: var(--wp--preset--color--white);
}
.stareq-benefit-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  margin-bottom: 8px;
  line-height: 1.3;
}
.stareq-benefit-card p {
  font-size: 13px;
  color: var(--wp--preset--color--neutral-500);
  line-height: 1.6;
}

/* ── Equipment Grid ── */
.stareq-svc-equipment {
  padding: 96px 0;
  background: var(--wp--preset--color--primary-light);
}
.stareq-svc-equipment-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.stareq-equipment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stareq-equipment-card {
  background: var(--wp--preset--color--white);
  border-radius: var(--stareq-radius-lg, 12px);
  overflow: hidden;
  transition: all var(--stareq-transition-normal);
  cursor: pointer;
  box-shadow: var(--stareq-shadow-card);
  text-decoration: none;
  display: block;
}
.stareq-equipment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--stareq-shadow-hover);
}
.stareq-equipment-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--wp--preset--color--primary-light) 0%, #dce8f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.stareq-equipment-card-img svg {
  color: var(--wp--preset--color--primary);
  opacity: 0.25;
}
.stareq-equipment-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stareq-equipment-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: linear-gradient(to top, var(--wp--preset--color--white), transparent);
}
.stareq-equipment-card-body {
  padding: 20px;
}
.stareq-equipment-card-body h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-900);
  margin-bottom: 12px;
  line-height: 1.3;
}
.stareq-equipment-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wp--preset--color--primary);
  text-decoration: none;
  transition: gap var(--stareq-transition-normal);
}
.stareq-equipment-card:hover .stareq-equipment-link {
  gap: 10px;
}
.stareq-equipment-link svg {
  transition: transform var(--stareq-transition-normal);
}
.stareq-equipment-card:hover .stareq-equipment-link svg {
  transform: translateX(3px);
}

/* ── Service page responsive ── */
@media (max-width: 1024px) {
  .stareq-svc-desc {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stareq-svc-img {
    height: 320px;
  }
  .stareq-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stareq-equipment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stareq-page-hero--service {
    padding: 100px 0 56px;
  }
  .stareq-svc-process,
  .stareq-svc-benefits,
  .stareq-svc-equipment {
    padding: 64px 0;
  }
  .stareq-svc-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .stareq-metric-card {
    padding: 16px 8px;
  }
  .stareq-benefits-grid {
    grid-template-columns: 1fr;
  }
  .stareq-equipment-grid {
    grid-template-columns: repeat(4, 260px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    gap: 16px;
  }
  .stareq-equipment-card {
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .stareq-svc-metrics {
    grid-template-columns: 1fr;
  }
  .stareq-metric-card {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 16px 20px;
  }
  .stareq-metric-number {
    margin-bottom: 0;
  }
  .stareq-equipment-grid {
    grid-template-columns: repeat(4, 240px);
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stareq-slider-arrow,
  .stareq-slider-counter {
    display: none;
  }
  .stareq-header-phone {
    display: none;
  }
  .stareq-why-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .stareq-stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .stareq-stat-divider:nth-child(3)::after {
    display: none;
  }
  .stareq-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stareq-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stareq-subcat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stareq-subcat-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .stareq-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .stareq-slider {
    min-height: 500px;
  }
  .stareq-slide-text h1,
  .stareq-slide-text .wp-block-heading {
    font-size: 32px !important;
  }
  .stareq-slider-dots {
    bottom: 32px;
  }
  .stareq-page-hero {
    padding: 100px 0 48px;
  }
  .stareq-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--wp--preset--spacing--5);
  }
  .stareq-stat-divider::after {
    display: none !important;
  }
  .stareq-timeline {
    padding-left: 48px;
  }
  .stareq-timeline-number {
    left: -48px;
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .stareq-about-img {
    height: 300px;
  }
  .stareq-pillars {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 32px;
    padding-top: 32px;
  }
  .stareq-mini-specs {
    gap: 10px;
  }
  .stareq-mini-spec {
    padding: 12px;
  }
  .stareq-mini-spec-value {
    font-size: 15px;
  }
  .stareq-related-grid {
    grid-template-columns: 1fr;
  }
  .stareq-categories-grid {
    grid-template-columns: 1fr;
  }
  .stareq-subcat-grid {
    grid-template-columns: 1fr;
  }
  .stareq-category-card {
    padding: 24px 20px;
  }
  .stareq-datasheet-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .stareq-datasheet-left {
    flex-direction: column;
  }
  .stareq-datasheet-btn {
    width: 100%;
    justify-content: center;
  }
  .stareq-features-list {
    grid-template-columns: 1fr;
  }
  .stareq-brands-grid {
    gap: 24px;
  }
  .stareq-brand-logo {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .stareq-header-inner {
    height: 64px;
  }
  .stareq-slide-content {
    padding-top: 64px;
  }
  .stareq-mini-specs {
    grid-template-columns: 1fr;
  }
  .stareq-gallery-thumbs {
    gap: 8px;
  }
  .stareq-category-card {
    gap: 16px;
  }
  .stareq-category-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }
}

/* ══════════════════════════════════════

/* ══════════════════════════════════════
   WooCommerce Product Catalogue Styles
   ══════════════════════════════════════ */

/* ── Product Categories Grid (Shop Page) ── */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

/* Remove clearfix pseudo-elements that break CSS grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}

/* Remove default WooCommerce float/width styles */
.woocommerce ul.products li.product-category,
.woocommerce ul.products li.product {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  clear: none !important;
}

.woocommerce ul.products li.product-category::before,
.woocommerce ul.products li.product::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wp--preset--color--primary), var(--wp--preset--color--secondary));
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.woocommerce ul.products li.product-category:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 77, 162, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.woocommerce ul.products li.product-category:hover::before,
.woocommerce ul.products li.product:hover::before {
  opacity: 1;
}

/* Category & product card links */
.woocommerce ul.products li.product-category > a,
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
}

/* Image wrapper for zoom effect */
.woocommerce ul.products li.product-category > a {
  position: relative;
}

/* Category & product thumbnails */
.woocommerce ul.products li.product-category a img,
.woocommerce ul.products li.product a img {
  width: 100% !important;
  height: 240px !important;
  object-fit: contain !important;
  display: block;
  background: #f8f9fa;
  padding: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce ul.products li.product-category:hover a img,
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.05);
}

/* Category title */
.woocommerce ul.products li.product-category h2.woocommerce-loop-category__title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--wp--preset--color--neutral-900);
  padding: 20px 24px 20px !important;
  margin: 0 !important;
  line-height: 1.3;
  background: var(--wp--preset--color--white);
  position: relative;
}

/* Category count badge */
.woocommerce ul.products li.product-category h2 .count {
  display: inline-flex !important;
  align-items: center;
  padding: 3px 10px;
  background: var(--wp--preset--color--primary-light);
  border-radius: 100px;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 11px !important;
  font-weight: 700;
  color: var(--wp--preset--color--primary);
  letter-spacing: 0.02em;
  margin-left: 8px;
  vertical-align: middle;
}

/* Remove empty paragraph after h2 in category cards */
.woocommerce ul.products li.product-category > a > p:empty,
.woocommerce ul.products li.product-category > p {
  display: none !important;
}

/* Product card title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 17px !important;
  font-weight: 600 !important;
  color: var(--wp--preset--color--neutral-900);
  padding: 20px 24px 8px !important;
  margin: 0 !important;
  line-height: 1.3;
}

/* Hide price (B2B catalogue) */
.woocommerce ul.products li.product .price {
  display: none !important;
}

/* Style the "Read more" / add-to-cart button as a text CTA */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product a.added_to_cart {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--wp--preset--color--primary) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  padding: 8px 24px 20px !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 !important;
}

.woocommerce ul.products li.product .button:hover {
  gap: 12px;
}

.woocommerce ul.products li.product .button::after {
  content: '→';
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.woocommerce ul.products li.product:hover .button::after {
  transform: translateX(4px);
}

/* Hide star rating */
.woocommerce ul.products li.product .star-rating {
  display: none !important;
}

/* ── WooCommerce Results / Ordering ── */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  display: none !important;
}

/* ── Single Product Page ── */
.woocommerce div.product .product_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--wp--preset--color--neutral-900);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.woocommerce div.product .woocommerce-product-gallery {
  border-radius: 12px;
  overflow: hidden;
}

.woocommerce div.product .woocommerce-product-gallery img {
  border-radius: 12px;
}

/* Hide price & cart on single product (B2B - use quote CTA) */
.woocommerce div.product .price,
.woocommerce div.product form.cart,
.woocommerce div.product .cart {
  display: none !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--wp--preset--color--neutral-300);
  margin-bottom: 24px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0;
  padding: 0;
  background: none !important;
  border: none !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wp--preset--color--neutral-500);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s ease;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--wp--preset--color--primary);
  border-bottom-color: var(--wp--preset--color--primary);
}

/* Related products */
.woocommerce div.product .related.products > h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* ── WooCommerce Notices ── */
.woocommerce-store-notice,
.demo_store {
  display: none !important;
}

/* ── Product Collection Block (for category archives) ── */
.wp-block-woocommerce-product-collection .wp-block-woocommerce-product-template {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wp-block-woocommerce-product-collection .wc-block-product {
  background: var(--wp--preset--color--white);
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wp-block-woocommerce-product-collection .wc-block-product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(10, 77, 162, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

/* ── WooCommerce Login/Account icon hide ── */
.woocommerce-MyAccount-navigation,
a[href*="my-account"] .dashicons {
  /* keep default */
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }

/* Remove clearfix pseudo-elements that break CSS grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}
  .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-template {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 640px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

/* Remove clearfix pseudo-elements that break CSS grid */
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: none !important;
  display: none !important;
}
  .wp-block-woocommerce-product-collection .wp-block-woocommerce-product-template {
    grid-template-columns: 1fr !important;
  }
  .woocommerce ul.products li.product-category a img,
  .woocommerce ul.products li.product a img {
    height: auto !important;
    aspect-ratio: 4/3;
  }
}

/* Hide WooCommerce legacy breadcrumb (we use our own) */
.woocommerce .woocommerce-breadcrumb {
  display: none !important;
}

/* Hide duplicate category title + description from legacy template
   (already shown in our hero section) */
.woocommerce .term-description,
.woocommerce-products-header {
  display: none !important;
}

/* Remove "Category: " prefix from archive title */
.stareq-page-hero .wp-block-query-title::before {
  content: none;
}


/* ══ B2B Catalogue Mode — Hide WooCommerce header icons ══ */
/* Hide Login/Account icon in header */
.wp-block-woocommerce-customer-account,
a[href*="my-account"]:not(.wp-block-navigation-item__content) {
  display: none !important;
}

/* Hide Mini-Cart icon in header */
.wp-block-woocommerce-mini-cart,
.wc-block-mini-cart {
  display: none !important;
}

/* ══ Single Product Page Cleanup ══ */
/* Hide Reviews tab (B2B — no reviews needed) */
.woocommerce div.product .woocommerce-tabs ul.tabs li.reviews_tab {
  display: none !important;
}

/* Hide SKU and category meta */
.woocommerce div.product .product_meta {
  display: none !important;
}

/* Style the product title */
.woocommerce div.product .product_title {
  font-size: 28px;
  font-weight: 700;
  color: var(--wp--preset--color--neutral-900);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

/* Style the short description */
.woocommerce div.product .woocommerce-product-details__short-description p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--wp--preset--color--neutral-700);
}

/* Product gallery image */
.woocommerce div.product div.images img {
  border-radius: 12px;
}

/* Related products grid */
.woocommerce div.product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.woocommerce div.product .related.products ul.products::before,
.woocommerce div.product .related.products ul.products::after {
  content: none !important;
  display: none !important;
}

/* Related product cards */
.woocommerce div.product .related.products ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

/* ══ Single Product Responsive ══ */
@media (max-width: 768px) {
  .woocommerce div.product .related.products ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* ═══════════════════════════════════════════
   MEGA MENU — Products & Services dropdowns
   ═══════════════════════════════════════════ */

/* Dropdown panel base */
.wp-block-navigation-item.stareq-megamenu > .wp-block-navigation__submenu-container {
  background: #fff !important;
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 24px 28px !important;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  left: 0 !important;
  top: 100% !important;
  margin-top: 4px;
}

/* Products dropdown — 2 columns for 10 items */
.wp-block-navigation-item.stareq-megamenu-products > .wp-block-navigation__submenu-container {
  min-width: 480px;
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Services dropdown — single column for 5 items */
.wp-block-navigation-item.stareq-megamenu-services > .wp-block-navigation__submenu-container {
  min-width: 280px;
}

/* Show on hover */
.wp-block-navigation-item.stareq-megamenu:hover > .wp-block-navigation__submenu-container,
.wp-block-navigation-item.stareq-megamenu:focus-within > .wp-block-navigation__submenu-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown link items */
.wp-block-navigation-item.stareq-megamenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 400;
  color: var(--wp--preset--color--neutral-700) !important;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.wp-block-navigation-item.stareq-megamenu .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover {
  background: var(--wp--preset--color--primary-light);
  color: var(--wp--preset--color--primary) !important;
}

/* Hide default WP submenu chevron arrow on parent link */
.wp-block-navigation-item.stareq-megamenu > .wp-block-navigation-item__content::after {
  display: none !important;
}

/* Remove default WP submenu icon */
.wp-block-navigation-item.stareq-megamenu .wp-block-navigation__submenu-icon {
  display: none !important;
}

/* Transparent header override: keep dropdown white */
.stareq-header-transparent .wp-block-navigation-item.stareq-megamenu > .wp-block-navigation__submenu-container {
  background: #fff !important;
}

/* Mobile: hide mega menu submenus by default, toggle with JS */
@media (max-width: 768px) {
  .wp-block-navigation-item.stareq-megamenu > .wp-block-navigation__submenu-container {
    position: static !important;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px !important;
    min-width: 0;
    margin-left: 0;
    display: none !important;
  }
  .wp-block-navigation-item.stareq-megamenu > .wp-block-navigation__submenu-container.stareq-submenu-open {
    display: block !important;
  }
  .wp-block-navigation-item.stareq-megamenu-products > .wp-block-navigation__submenu-container {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   CONTACT FORM 7 — Styling
   ═══════════════════════════════════════════ */

.wpcf7 {
  max-width: 100%;
}

.wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.wpcf7-form p {
  margin: 0;
}

.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--wp--preset--color--neutral-700);
  margin-bottom: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="url"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--wp--preset--color--neutral-300);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--wp--preset--color--neutral-900);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--wp--preset--color--primary);
  box-shadow: 0 0 0 3px var(--wp--preset--color--primary-light);
}

.wpcf7-form textarea {
  min-height: 120px;
  resize: vertical;
}

.wpcf7-form select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A4A5A' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  background: var(--wp--preset--color--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
  background: var(--wp--preset--color--primary-dark);
}

.wpcf7-form input[type="submit"]:active,
.wpcf7-form .wpcf7-submit:active {
  transform: scale(0.98);
}

/* Radio buttons */
.wpcf7-form .wpcf7-radio {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.wpcf7-form .wpcf7-list-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--wp--preset--color--neutral-700);
}

/* File upload */
.wpcf7-form input[type="file"] {
  font-size: 14px;
  color: var(--wp--preset--color--neutral-500);
}

/* Validation messages */
.wpcf7-not-valid-tip {
  font-size: 13px;
  color: var(--wp--preset--color--error, #dc2626);
  margin-top: 4px;
}

.wpcf7-response-output {
  border-radius: 8px !important;
  padding: 12px 16px !important;
  font-size: 14px;
  margin: 16px 0 0 !important;
}

/* Two-column form layout for wider forms */
.stareq-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.stareq-form-full {
  grid-column: 1 / -1;
}
@media (max-width: 600px) {
  .stareq-form-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   MOBILE POLISH — Fixes for ≤768px
   ═══════════════════════════════════════════ */

/* ── Fix 1: Mobile Navigation — Side Drawer ── */
@media (max-width: 768px) {
  /* Force WP overlay into a left-side drawer */
  .wp-block-navigation__responsive-container.is-menu-open,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content,
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    background: #fff !important;
    background-color: #fff !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: auto !important;
    bottom: 0 !important;
    width: 300px !important;
    max-width: 85vw !important;
    height: 100vh !important;
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.15) !important;
    z-index: 200 !important;
    animation: stareq-drawerSlideIn 0.3s ease forwards;
    padding: 0 !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
  }

  @keyframes stareq-drawerSlideIn {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
  }

  /* Dark hamburger icon by default (white header pages) */
  .wp-block-navigation__responsive-container-open {
    color: var(--wp--preset--color--neutral-900) !important;
  }
  .wp-block-navigation__responsive-container-open svg {
    fill: var(--wp--preset--color--neutral-900) !important;
  }

  /* White hamburger icon on homepage (transparent header over dark hero) */
  .home .wp-block-navigation__responsive-container-open {
    color: #fff !important;
  }
  .home .wp-block-navigation__responsive-container-open svg {
    fill: #fff !important;
  }

  /* Dark hamburger icon when sticky header is active (white bg) */
  .stareq-header-scrolled .wp-block-navigation__responsive-container-open {
    color: var(--wp--preset--color--neutral-900) !important;
  }
  .stareq-header-scrolled .wp-block-navigation__responsive-container-open svg {
    fill: var(--wp--preset--color--neutral-900) !important;
  }

  /* Drawer overlay/backdrop */
  .wp-block-navigation__responsive-container-open + .wp-block-navigation__responsive-container::before,
  .wp-block-navigation__responsive-container.is-menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
  }

  /* Close button (X) — top-right of drawer */
  .wp-block-navigation__responsive-container-close {
    position: absolute !important;
    top: 16px !important;
    right: 16px !important;
    left: auto !important;
    z-index: 210 !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: var(--wp--preset--color--neutral-100) !important;
    border-radius: 50% !important;
    border: none !important;
    cursor: pointer !important;
    color: var(--wp--preset--color--neutral-700) !important;
  }

  /* Kill the WP ::before dark overlay inside the drawer */
  .wp-block-navigation__responsive-container.is-menu-open::before {
    background: transparent !important;
  }

  /* Drawer inner content */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
    padding: 72px 24px 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    align-items: stretch !important;
    text-align: left !important;
    width: 100% !important;
    flex: 1 !important;
    background: #fff !important;
    position: relative !important;
    z-index: 1 !important;
  }

  /* Override WP center-justified layout in mobile drawer */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
    align-items: stretch !important;
  }

  /* Menu items in drawer */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
    display: block !important;
    border-bottom: 1px solid var(--wp--preset--color--neutral-100);
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content {
    display: block !important;
    padding: 14px 0 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: var(--wp--preset--color--neutral-900) !important;
    text-decoration: none !important;
  }

  /* Submenu toggle — hidden by default, expanded via JS accordion */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 0 8px 16px !important;
    min-width: 0 !important;
    background: transparent !important;
    display: none !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container.stareq-submenu-open {
    display: block !important;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item {
    border-bottom: none;
  }

  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
    padding: 10px 0 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: var(--wp--preset--color--neutral-700) !important;
  }

  /* Submenu chevron indicator on parent items */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation-item__content::after {
    content: '›';
    float: right;
    font-size: 18px;
    color: var(--wp--preset--color--neutral-500);
    transition: transform 0.2s ease;
    display: inline-block;
  }

  /* Rotate chevron when submenu is open */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu.stareq-submenu-expanded > .wp-block-navigation-item__content::after {
    transform: rotate(90deg);
    color: var(--wp--preset--color--primary);
  }

  /* "Demander un Devis" button at bottom of drawer */
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-button {
    margin-top: 24px !important;
  }
  .wp-block-navigation__responsive-container.is-menu-open .wp-block-button__link {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Hamburger button styling */
  .wp-block-navigation__responsive-container-open {
    padding: 8px !important;
  }
}

/* ── Fix 2: Header Spacing on Mobile ── */
@media (max-width: 768px) {
  .stareq-header-inner {
    height: 64px;
    padding: 0 16px !important;
    gap: 12px !important;
  }
  .stareq-header-scrolled .stareq-header-inner {
    height: 56px;
  }
  .stareq-header .wp-block-site-logo img {
    height: 44px;
  }
  .stareq-header-scrolled .wp-block-site-logo img {
    height: 36px;
  }
  /* Smaller CTA button on mobile */
  .stareq-header .wp-block-button__link {
    font-size: 12px !important;
    padding: 8px 14px !important;
    min-height: 36px !important;
    white-space: nowrap !important;
  }
  .stareq-slide-content {
    padding-top: 64px;
  }
  .stareq-page-hero {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .stareq-header .wp-block-site-logo img {
    height: 28px;
  }
  .stareq-header-scrolled .wp-block-site-logo img {
    height: 24px;
  }
}

/* ── Fix 3: Section Spacing — Reduce on Mobile ── */
@media (max-width: 768px) {
  /* General full-width section spacing override */
  .wp-block-group.alignfull[style*="spacing--24"],
  .wp-block-group.alignfull[style*="spacing--20"] {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Stats section */
  .stareq-stats-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* CTA gradient banner */
  .stareq-cta-gradient {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Service card grid on dark background */
  .has-primary-background-color.alignfull {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Light background sections */
  .has-neutral-100-background-color.alignfull {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* White background sections */
  .has-white-background-color.alignfull {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Spacing-16 sections */
  .wp-block-group.alignfull[style*="spacing--16"] {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }

  /* Reduce internal spacing in groups too */
  .wp-block-columns[style*="spacing--12"] {
    margin-top: var(--wp--preset--spacing--8) !important;
  }
}

@media (max-width: 480px) {
  .wp-block-group.alignfull[style*="spacing--24"],
  .wp-block-group.alignfull[style*="spacing--20"] {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .has-primary-background-color.alignfull,
  .stareq-stats-section,
  .stareq-cta-gradient {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
}

/* ── Fix 4: Stats Counter — Mobile Layout ── */
@media (max-width: 768px) {
  .stareq-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 20px !important;
  }
  .stareq-stat-item {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 20px 12px;
  }
  .stareq-stat-item .stareq-counter {
    font-size: clamp(24px, 5vw, 36px);
  }
  .stareq-stat-item .stareq-stat-label {
    font-size: 11px;
  }
  .stareq-stat-divider::after {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .stareq-stats-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .stareq-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    padding: 16px 20px;
  }
  .stareq-stat-item .stareq-counter {
    font-size: 28px;
    min-width: 80px;
  }
  .stareq-stat-item .stareq-stat-label {
    font-size: 12px;
    margin-top: 0;
  }
}

/* ── Fix 5: Service Page Key Numbers ── */
@media (max-width: 768px) {
  /* "24/7", "<24h", "12" number columns on services page */
  .has-white-background-color .wp-block-columns .wp-block-heading[style*="48px"] {
    font-size: 32px !important;
  }
}

@media (max-width: 480px) {
  .has-white-background-color .wp-block-columns .wp-block-heading[style*="48px"] {
    font-size: 28px !important;
  }
}

/* ── Fix 8: Form Cropping on Mobile ── */
@media (max-width: 768px) {
  .wpcf7 {
    box-sizing: border-box;
    max-width: 100%;
    overflow: hidden;
  }
  .wpcf7-form input,
  .wpcf7-form textarea,
  .wpcf7-form select {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  /* Reduce form section padding */
  .stareq-form-box {
    padding: var(--wp--preset--spacing--6) !important;
  }
  /* WhatsApp button adjustment on form pages — move slightly inward */
  .stareq-whatsapp {
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
  }
  .stareq-whatsapp svg {
    width: 22px;
    height: 22px;
  }
}

/* ── Fix 9: Why Choose Us Grid — 1 column on small mobile ── */
@media (max-width: 480px) {
  .stareq-why-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── Fix 10: Footer Mobile Layout ── */
@media (max-width: 768px) {
  /* Ensure footer columns stack and center-align */
  .wp-block-template-part[data-area="footer"] .wp-block-columns {
    flex-direction: column !important;
  }
  .wp-block-template-part[data-area="footer"] .wp-block-column {
    text-align: center;
  }
  .wp-block-template-part[data-area="footer"] .wp-block-column p,
  .wp-block-template-part[data-area="footer"] .wp-block-column .wp-block-heading {
    text-align: center;
  }
  /* Footer navigation links centered */
  .wp-block-template-part[data-area="footer"] .wp-block-navigation {
    justify-content: center;
  }
}

/* ── Mobile Slider adjustments ── */
@media (max-width: 480px) {
  .stareq-slider {
    min-height: 440px;
  }
  .stareq-slide-text h1,
  .stareq-slide-text .wp-block-heading {
    font-size: 26px !important;
  }
  .stareq-slide-text p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .stareq-slider-dots {
    bottom: 20px;
  }
  .stareq-slide-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* === References Carousel === */
.stareq-ref-carousel {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.stareq-ref-carousel::before,
.stareq-ref-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.stareq-ref-carousel::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.stareq-ref-carousel::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.stareq-ref-track {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: stareq-scroll 25s linear infinite;
}
.stareq-ref-track:hover {
  animation-play-state: paused;
}
.stareq-ref-carousel .stareq-ref-logo {
  flex-shrink: 0;
  width: 180px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 24px;
}
.stareq-ref-carousel .stareq-ref-logo img {
  max-height: 80px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.stareq-ref-carousel .stareq-ref-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@keyframes stareq-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

/* === Partners Marquee === */
.stareq-marquee-wrap {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.stareq-marquee-wrap::before,
.stareq-marquee-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.stareq-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
.stareq-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
.stareq-marquee-track {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: stareq-marqueeScroll 30s linear infinite;
}
.stareq-marquee-track:hover {
  animation-play-state: paused;
}
.stareq-marquee-logo {
  flex-shrink: 0;
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 32px;
}
.stareq-marquee-logo img {
  max-height: 80px;
  max-width: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.stareq-marquee-logo:hover img {
  opacity: 1;
}
@keyframes stareq-marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-100% / 3)); }
}

/* Fix category page subtitle color */
.wp-block-term-description,
.wp-block-term-description p,
.term-description,
.term-description p {
  color: rgba(255,255,255,0.9) !important;
}
