/* Excalibur UI Polish v2 – yellow accent theme */
:root {
  --exc-accent: #f0b429;
  --exc-accent-dark: #d4920a;
  --exc-accent-light: #ffd054;
  --exc-accent-soft: rgba(240, 180, 41, 0.15);
  --exc-accent-glow: rgba(240, 180, 41, 0.35);
  --exc-green: var(--exc-accent);
  --exc-green-dark: var(--exc-accent-dark);
  --exc-green-soft: var(--exc-accent-soft);
  --exc-black: #0a0a0a;
  --exc-dark: #111111;
  --exc-surface: #fafafa;
  --exc-border: rgba(0, 0, 0, 0.08);
  --exc-radius: 16px;
  --exc-radius-sm: 10px;
  --exc-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --exc-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
  --exc-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Scroll reveal (all exc sections) ── */
body.exc-clone .exc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--exc-ease), transform 0.65s var(--exc-ease);
}

body.exc-clone .exc-reveal.exc-visible {
  opacity: 1;
  transform: translateY(0);
}

body.exc-clone .exc-reveal-delay-1 { transition-delay: 0.08s; }
body.exc-clone .exc-reveal-delay-2 { transition-delay: 0.16s; }
body.exc-clone .exc-reveal-delay-3 { transition-delay: 0.24s; }

/* ── Header polish ── */
body.exc-clone #header.exc-header.danbes-header-scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

body.exc-clone .exc-header-nav > li.active > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 3px;
  height: 2px;
  background: var(--exc-accent);
  border-radius: 1px;
}

body.exc-clone .exc-btn--primary:hover,
body.exc-clone .exc-btn--green:hover {
  box-shadow: 0 6px 18px var(--exc-accent-glow);
}

/* ── Category strip ── */
body.exc-clone .exc-cat-strip {
  position: relative;
  background: linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}

body.exc-clone .exc-cat-strip__label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

body.exc-clone .exc-cat-strip__label::before,
body.exc-clone .exc-cat-strip__label::after {
  content: "";
  width: 40px;
  height: 1px;
  background: rgba(240, 180, 41, 0.4);
}

body.exc-clone .exc-cat-strip__item {
  padding: 12px 16px;
  border-radius: var(--exc-radius-sm);
  transition: background 0.25s, transform 0.25s var(--exc-ease);
}

body.exc-clone .exc-cat-strip__item:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
}

body.exc-clone .exc-cat-strip__item img {
  width: 64px;
  height: 64px;
  border-width: 3px;
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.15);
  transition: box-shadow 0.25s, transform 0.25s var(--exc-ease);
}

body.exc-clone .exc-cat-strip__item:hover img {
  box-shadow: 0 0 0 6px rgba(240, 180, 41, 0.25);
  transform: scale(1.05);
}

/* ── Promo ── */
body.exc-clone .exc-promo {
  position: relative;
  padding: 48px 0;
  background: linear-gradient(135deg, #fff 0%, var(--exc-green-soft) 100%);
  border-bottom: none;
  overflow: hidden;
}

body.exc-clone .exc-promo::before {
  content: "";
  position: absolute;
  top: -60%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

body.exc-clone .exc-promo__inner {
  position: relative;
  z-index: 1;
}

body.exc-clone .exc-promo__eyebrow {
  display: inline-block;
  background: var(--exc-black);
  color: var(--exc-green);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
}

body.exc-clone .exc-promo__title {
  letter-spacing: -0.02em;
}

/* ── Hero ── */
body.exc-clone .exc-hero__overlay {
  background: linear-gradient(105deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.75) 100%) !important;
}

body.exc-clone .exc-hero__copy {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--exc-radius);
  padding: 44px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

body.exc-clone .exc-hero__badge {
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.08);
  align-self: flex-start;
}

body.exc-clone .exc-hero__headline span:nth-child(1) {
  opacity: 0.98;
}

body.exc-clone .exc-hero__stats {
  gap: 0;
}

body.exc-clone .exc-hero__stats li {
  flex: 1;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

body.exc-clone .exc-hero__stats li:first-child {
  padding-left: 0;
}

body.exc-clone .exc-hero__stats li:last-child {
  border-right: none;
  padding-right: 0;
}

body.exc-clone .exc-hero__stats strong {
  font-size: 1.75rem;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.exc-clone .exc-hero__brand {
  position: relative;
}

body.exc-clone .exc-hero__brand::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, rgba(240, 180, 41, 0.15) 0%, transparent 65%);
  pointer-events: none;
}

body.exc-clone .exc-hero__logo {
  text-shadow: 0 0 60px rgba(240, 180, 41, 0.4);
}

/* ── Value props ── */
body.exc-clone .exc-value-props {
  padding: 72px 0;
  background: var(--exc-surface);
}

body.exc-clone .exc-value-card {
  position: relative;
  border-radius: var(--exc-radius);
  border: 1px solid var(--exc-border);
  padding: 32px 26px;
  overflow: hidden;
  transition: transform 0.3s var(--exc-ease), box-shadow 0.3s, border-color 0.3s;
}

body.exc-clone .exc-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--exc-green), var(--exc-green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--exc-ease);
}

body.exc-clone .exc-value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--exc-shadow-lg);
  border-color: rgba(240, 180, 41, 0.25);
}

body.exc-clone .exc-value-card:hover::before {
  transform: scaleX(1);
}

body.exc-clone .exc-value-card__num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--exc-green-soft);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

body.exc-clone .exc-value-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--exc-green-soft);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--exc-green-dark);
}

body.exc-clone .exc-value-card__icon svg {
  width: 22px;
  height: 22px;
}

/* ── Industries ── */
body.exc-clone .exc-industries {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.exc-clone .exc-industries__list li:not(:first-child)::before {
  content: "•";
  margin-right: 48px;
  color: rgba(240, 180, 41, 0.4);
}

/* ── Trusted ── */
body.exc-clone .exc-trusted {
  padding: 48px 0;
  background: #fff;
  border-bottom: 1px solid var(--exc-border);
}

body.exc-clone .exc-trusted__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

body.exc-clone .exc-trusted__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--exc-green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--exc-green-dark);
  flex-shrink: 0;
}

body.exc-clone .exc-trusted p {
  font-size: clamp(1rem, 2vw, 1.15rem);
  text-align: left;
  margin: 0;
  line-height: 1.5;
}

/* ── Section heads ── */
body.exc-clone .exc-section-head h2 {
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
}

body.exc-clone .exc-section-head h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: var(--exc-green);
  margin: 12px auto 0;
  border-radius: 2px;
}

body.exc-clone .exc-section-head--left h2::after {
  margin-left: 0;
}

/* ── Our Range ── */
body.exc-clone .exc-our-range {
  padding: 80px 0;
}

body.exc-clone .exc-range-card {
  border-radius: 4px;
}

/* ── Series showcase ── */
body.exc-clone .exc-series-showcase {
  padding: 80px 0;
}

/* ── Mid CTA ── */
body.exc-clone .exc-mid-cta {
  padding: 0;
}

body.exc-clone .exc-mid-cta::before {
  display: none;
}

/* ── Why REAL ── */
body.exc-clone .exc-why {
  padding: 88px 0;
}

body.exc-clone .exc-why-card {
  border-radius: var(--exc-radius);
  border: 1px solid var(--exc-border);
  padding: 28px 24px;
  transition: transform 0.3s var(--exc-ease), box-shadow 0.3s, background 0.3s;
}

body.exc-clone .exc-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--exc-shadow);
  background: #fff;
}

body.exc-clone .exc-quote {
  border-radius: var(--exc-radius);
  border-left: 4px solid var(--exc-green);
  text-align: left;
  position: relative;
}

body.exc-clone .exc-quote::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(240, 180, 41, 0.2);
  font-family: Georgia, serif;
}

body.exc-clone .exc-quote p:first-child {
  padding-left: 48px;
}

/* ── Lithium ── */
body.exc-clone .exc-lithium {
  padding: 88px 0;
}

body.exc-clone .exc-stat-card {
  border-radius: var(--exc-radius);
  border: 1px solid var(--exc-border);
  transition: transform 0.3s var(--exc-ease), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

body.exc-clone .exc-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: var(--exc-green);
  opacity: 0;
  transition: opacity 0.3s;
}

body.exc-clone .exc-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--exc-shadow);
  border-color: rgba(240, 180, 41, 0.3);
}

body.exc-clone .exc-stat-card:hover::before {
  opacity: 1;
}

body.exc-clone .exc-stat-card strong {
  font-size: 2.25rem;
  letter-spacing: -0.03em;
}

/* ── Testimonials ── */
body.exc-clone .exc-testimonials {
  padding: 88px 0;
  background: var(--exc-surface);
}

body.exc-clone .exc-testimonial {
  border-radius: var(--exc-radius);
  border: 1px solid var(--exc-border);
  background: #fff;
  transition: transform 0.3s var(--exc-ease), box-shadow 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.exc-clone .exc-testimonial p {
  flex: 1 1 auto;
}

body.exc-clone .exc-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: var(--exc-shadow-lg);
}

body.exc-clone .exc-testimonial__stars {
  color: #f5a623;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

body.exc-clone .exc-testimonial footer {
  display: flex;
  align-items: center;
  gap: 10px;
}

body.exc-clone .exc-testimonial footer::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--exc-green);
  border-radius: 1px;
}

/* ── Footer (merged CTA) ── */
body.exc-clone .exc-footer {
  background: var(--exc-footer-bg);
}

body.exc-clone .exc-footer__cta .exc-btn--green:hover {
  box-shadow: 0 8px 24px rgba(240, 180, 41, 0.35);
}

body.exc-clone .exc-footer__cta .exc-btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

body.exc-clone .exc-footer__links a {
  transition: color 0.2s;
}

body.exc-clone .exc-footer__links a:hover {
  padding-left: 0 !important;
}

body.exc-clone .huigong-footer__social-links a {
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
}

body.exc-clone .huigong-footer__social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ── Product pages polish ── */
body.exc-clone .huigong-product-hero,
body.exc-clone .huigong-series-page .section {
  padding-top: 32px;
}

body.exc-clone .huigong-series-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

body.exc-clone .huigong-series-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1a1a;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

body.exc-clone .huigong-series-pill:hover {
  border-color: var(--exc-accent, #f0b429);
  color: var(--exc-accent-dark, #d4920a);
}

body.exc-clone .huigong-series-pill.is-active {
  background: var(--exc-accent, #f0b429);
  border-color: var(--exc-accent, #f0b429);
  color: #0a0a0a;
}

body.exc-clone .huigong-series-page h1 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: var(--exc-text, #1a1a1a);
}

body.exc-clone .exc-static-page .section {
  padding-top: 32px;
  padding-bottom: 64px;
}

body.exc-clone .exc-static-page__inner {
  max-width: 960px;
}

body.exc-clone .exc-static-page__title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  line-height: 1.15;
  color: var(--exc-text, #1a1a1a);
}

body.exc-clone .exc-static-page__lead {
  margin: 0 0 32px;
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--exc-muted, #5a5a5a);
}

body.exc-clone .exc-static-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}

body.exc-clone .exc-static-stat {
  min-width: 120px;
}

body.exc-clone .exc-static-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--exc-accent-dark, #d4920a);
}

body.exc-clone .exc-static-stat span {
  font-size: 0.85rem;
  color: var(--exc-muted, #5a5a5a);
}

body.exc-clone .exc-static-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 36px;
}

body.exc-clone .exc-static-grid--services {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

body.exc-clone .exc-static-card {
  padding: 24px;
  border: 1px solid var(--exc-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--exc-radius, 12px);
  background: #fff;
}

body.exc-clone .exc-static-card h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: var(--exc-text, #1a1a1a);
}

body.exc-clone .exc-static-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--exc-muted, #5a5a5a);
}

body.exc-clone .exc-static-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

body.exc-clone .exc-contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

body.exc-clone .exc-contact-list {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--exc-border, rgba(0, 0, 0, 0.08));
  border-radius: var(--exc-radius, 12px);
  background: #fff;
}

body.exc-clone .exc-contact-item {
  margin: 0 0 18px;
}

body.exc-clone .exc-contact-item:last-child {
  margin-bottom: 0;
}

body.exc-clone .exc-contact-item dt {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
}

body.exc-clone .exc-contact-item dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--exc-text, #1a1a1a);
}

body.exc-clone .exc-contact-item a {
  color: inherit;
  text-decoration: none;
}

body.exc-clone .exc-contact-item a:hover {
  color: var(--exc-accent-dark, #d4920a);
}

body.exc-clone .exc-contact-cta {
  padding: 28px;
  border-radius: var(--exc-radius, 12px);
  background: #3c4146;
  color: rgba(255, 255, 255, 0.9);
}

body.exc-clone .exc-contact-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.35rem;
}

body.exc-clone .exc-contact-cta p {
  margin: 0 0 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 849px) {
  body.exc-clone .exc-contact-layout {
    grid-template-columns: 1fr;
  }
}

body.exc-clone .huigong-breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--exc-muted);
}

body.exc-clone .huigong-breadcrumb a {
  color: var(--exc-text);
  text-decoration: none;
}

body.exc-clone .huigong-breadcrumb a:hover {
  color: var(--exc-green-dark);
}

body.exc-clone .huigong-series-card,
body.exc-clone .huigong-product-hero__main {
  border-radius: var(--exc-radius);
  overflow: hidden;
  border: 1px solid var(--exc-border);
}

@media (max-width: 849px) {
  body.exc-clone .exc-hero__copy {
    padding: 32px 24px 28px;
    gap: 18px;
  }

  body.exc-clone .exc-hero__content {
    gap: 20px;
  }

  body.exc-clone .exc-hero__stats {
    flex-wrap: wrap;
    padding: 20px 18px;
  }

  body.exc-clone .exc-hot-carousel {
    padding: 0 40px;
  }

  body.exc-clone .exc-hero__stats li {
    flex: 1 1 30%;
    border-right: none;
    padding: 8px 0;
  }
}

/* ── Yellow theme: override legacy navy accents ── */
body.exc-clone .huigong-hot-carousel__btn {
  color: var(--exc-accent-dark) !important;
}

body.exc-clone .huigong-hot-carousel__btn:hover:not(:disabled) {
  color: var(--exc-black) !important;
}

body.exc-clone .huigong-series-card__cta,
body.exc-clone .huigong-product-eyebrow,
body.exc-clone .huigong-breadcrumb a:hover {
  color: var(--exc-accent-dark) !important;
}

body.exc-clone .button.gradientbtn:not(.is-outline) {
  background: var(--exc-accent) !important;
  border-color: var(--exc-accent) !important;
  color: var(--exc-black) !important;
}

body.exc-clone .button.gradientbtn:not(.is-outline):hover {
  background: var(--exc-accent-dark) !important;
  border-color: var(--exc-accent-dark) !important;
}

body.exc-clone .danbes-lang-btn.is-active,
body.exc-clone .danbes-lang-code {
  color: var(--exc-accent-dark);
}

@media (prefers-reduced-motion: reduce) {
  body.exc-clone .exc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  body.exc-clone .exc-industries__track {
    animation: none;
  }
}
