/* =========================================================
   TRUST STRIP
========================================================= */
.trust-strip {
  background: var(--color-surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: var(--space-md);
}

.trust-item strong {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  display: block;
}
/* ===============================
   EMCO Stats with Icons
================================= */
.emco-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap:  var(--space-lg);
  margin: 0.5rem 0;
  padding: 0;
}
.emco-stats li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-surface);
  color: var(--text-light);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.emco-stats li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.stat-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--emco-brand-primary);
  opacity: 0.9;
}

/* Light/Dark Theme Support */
body.dark .emco-stats li {
  background: var(--card-dark);
  color: var(--text-dark);
  border: 1px solid var(--border-dark);
}
body.dark .stat-icon { color: var(--brand-2); }

/* Responsive */
@media(max-width: 768px) {
  .emco-stats {
    grid-template-columns: 2fr 2fr;
  }
}
@media(max-width: 600px) {
  .emco-stats {
    grid-template-columns: 2fr 2fr;
  }
}
/* =========================================================
   projects
========================================================= */

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.project-card {
  background: var(--color-card);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-fast),
              box-shadow var(--transition-fast);
}

.project-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* =========================================================
   ADVANTAGE
========================================================= */
.advantage{
background:var(--gradient-brand)
}
.advantage .lead,.advantage h2{color:var(--color-text-inverse)}
.advantage-head {
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

/* GRID */
.advantage-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

/* CARD */
.adv-card {
  background: var(--color-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: left;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* HOVER */
.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--emco-brand-primary);
}

/* TOP GRADIENT LINE */
.adv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--gradient-brand);
  opacity: 0;
  transition: 0.3s;
}

.adv-card:hover::before {
  opacity: 1;
}

/* ICON */
.adv-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

/* TITLE */
.adv-card h3 {
  font-size: var(--font-size-md);
  margin-bottom: 6px;
}

/* TEXT */
.adv-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1024px) {
  .advantage-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE (HORIZONTAL SCROLL PREMIUM)
========================================= */

@media (max-width: 767px) {

  .advantage-cards {
    display: flex;
    overflow-x: auto;
    gap: var(--space-md);
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .advantage-cards::-webkit-scrollbar {
    display: none;
  }

  .adv-card {
    min-width: 85%;
    flex: 0 0 auto;

    scroll-snap-align: start;
  }
}
/* ICON WRAPPER */
.adv-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-sm);

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(255,255,255,0.04);
}

/* SVG STYLE */
.adv-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--emco-brand-accent);
  stroke-width: 1.8;
  fill: none;
}

/* HOVER EFFECT (ICON GLOW) */
.adv-card:hover .adv-icon {
  background: rgba(255,255,255,0.08);
}

.adv-card:hover .adv-icon svg {
  stroke: var(--emco-brand-primary);
}
.adv-card:hover .adv-icon svg {
  transform: scale(1.1);
  transition: 0.25s ease;
}
 /* ===============================
   EMCO Intro Section
================================= */
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.intro-content p {
	margin-bottom:var(--sapace-md);
}
 
/* ===============================
   PDF Preview Footer Box
================================= */
.updates-footer {
  margin: 1.5rem 0;
  text-align: left;
}

.pdf-preview-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--color-surface);
  padding: 1rem;
  border-radius:8px; 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pdf-preview-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

body.dark .pdf-preview-box {
  background: var(--card-dark);
  border: 1px solid var(--border-dark);
}

.pdf-thumbnail-link {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
.pdf-thumbnail {
  width: 90px;
  height: 120px;
  object-fit: cover; 
  transition: transform 0.3s ease;
}
.pdf-thumbnail-link:hover .pdf-thumbnail {
  transform: scale(1.05);
}
.pdf-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: var(--emco-brand-primary);
  color: #fff;
  font-size: 0.75rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.pdf-info .ttl {
  font-size: 1rem;
  margin: 0 0 0.3rem;
  color: var(--color-text);
} 
.pdf-info .small {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
 
.download-link {
  color: var(--emco-brand-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.download-link:hover {
  color: var(--emco-orange);
}

/* Responsive */
@media (max-width: 600px) {
  .pdf-preview-box {
    flex-direction: row;
    align-items: center;
    text-align: center;
  }
  .pdf-info {
    text-align: center;
  }
  .pdf-thumbnail {
    width: 90px;
    height: 120px;
  }
}

/* ===============================
   EMCO Intro Section
================================= */
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.headline {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.2;
}
  
.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
 

/* ===============================
   Updates Card
================================= 
  background: var(--card-light);
  border-radius: var(--radius);
 */
.updates-card {
  position: relative;
  overflow: hidden; padding: 1.5rem 0.5rem;
}
body.dark .updates-card {
  background: var(--card-dark);
}
.updates-card h3 { 
  margin-bottom: 0.75rem;
}

/* ===============================
   Updates Animation Styles
================================= */
.updates-ticker {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  position: relative;
  min-height: 130px;
  padding: 0.5rem 0;
}

.update-item {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease; 
  color: var(--color-text-muted);
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.fade-item.active {
  opacity: 1;
  transform: translateY(0);
  background: var(--emco-brand-primary);
  font-weight: 600;
  color: #fff;
}

.slide-item.slide-in {
  opacity: 1;
  transform: translateY(0);
}

.updates-ticker span:nth-child(1) {
  font-weight: 600;
}

.updates-ticker:hover span {
  filter: brightness(1.05);
  transition: filter 0.3s;
}

/* ===============================
   Responsive Styling
================================= */
@media (max-width: 600px) {
  .updates-card { 
  padding: 1rem; 
}
  .updates-ticker {
    min-height: 110px;
    gap: 6px;
  }
  .update-item {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
  }
}

/* Accessibility */
.updates-ticker[role="region"]::before {
  content: "Latest Updates";
  position: absolute;
  left: -9999px;
  top: -9999px;
} 
/* =========================================
   WHY SECTION — EMCO OPTIMIZED
========================================= */

.section-highlight {
  background: linear-gradient(
    135deg,
    var(--color-surface),
    var(--neutral-0)
  );
  padding: clamp(4rem, 8vh, 7rem) 0;
  position: relative;
  overflow: hidden;
}

/* subtle background depth */
.section-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(1,101,105,0.05),
    transparent 40%
  );
  pointer-events: none;
}

/* =========================================
   GRID
========================================= */

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

/* =========================================
   CARD
========================================= */

.why-card {
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;

  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;

  will-change: transform;
  cursor: pointer;
}

/* top gradient accent */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.why-card:active {
  transform: scale(0.98);
}

/* =========================================
   ICON + TITLE
========================================= */

.icon-title-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
}

/* ICON */
.why-icon {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: var(--gradient-brand);
  color: var(--color-text-inverse);

  border-radius: 50%;
  box-shadow: var(--shadow-sm);

  transition: transform var(--transition-base),
              box-shadow var(--transition-base);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-md);
}

.why-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}

/* =========================================
   TEXT
========================================= */

.why-card h4 {
  font-size: var(--font-size-lg);
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
}

/* highlight keyword */
.why-card h4 span {
  color: var(--emco-brand-primary);
  font-weight: var(--font-weight-bold);
}

.why-content {
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border);
}

.why-card p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1023px) {

  .icon-title-row {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
    text-align: left;
  }

  .why-content {
    text-align: left;
  }

  .why-card {
    text-align: left;
    align-items: flex-start;
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .why-card {
    padding: var(--space-md);
    border-radius: var(--radius-sm);
  }

  .why-icon {
    width: 36px;
    height: 36px;
  }

  .why-icon svg {
    width: 20px;
    height: 20px;
  }

  .why-card h4 {
    font-size: 1.05rem;
  }

  .why-card p {
    font-size: 0.9rem;
  }
}

/* =========================================
   ACCESSIBILITY
========================================= */

.why-card:focus-visible {
  outline: 2px solid var(--emco-brand-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .why-card,
  .why-icon {
    transition: none;
    transform: none;
  }
}

@media (prefers-contrast: high) {
  .why-card {
    border: 2px solid var(--color-border);
  }
}
/**/
/* =========================================
   PROBLEM vs SOLUTION SECTION (EMCO STYLE)
========================================= */

.ps-section {
  position: relative;
}

/* Labels (Top badges inside cards) */
.ps-label {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

/* Problem Label */
.problem-label {
  background: rgba(226, 58, 51, 0.12);
  color: var(--emco-red);
}

/* Solution Label */
.solution-label {
  background: rgba(0, 168, 107, 0.12);
  color: var(--emco-green);
}

/* Cards Enhancement */
.ps-section .card {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-card);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
  overflow: hidden;
}

/* Accent Border Left */
.ps-section .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 4px;
  background: transparent;
  transition: var(--transition-base);
}

/* Problem Accent */
.ps-section .card:first-child::before {
  background: var(--gradient-warm);
}

/* Solution Accent */
.ps-section .card:last-child::before {
  background: var(--gradient-cool);
}

/* Hover Elevation */
.ps-section .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* Headings */
.ps-section h3 {
  margin-bottom: var(--space-sm);
}

/* List Styling */
.ps-section ul {
  list-style: none;
  padding: 0;
  margin: var(--space-sm) 0 0;
  display: grid;
  gap: 10px;
}

/* List Items */
.ps-section ul li {
  position: relative;
  padding-left: 1.6rem;
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text);
}

/* Icons (SVG via background) */
.ps-section ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Problem Icons (cross / warning) */
.ps-section .card:first-child ul li::before {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<circle cx='12' cy='12' r='11' fill='%23ffecec' stroke='%23E23A33' stroke-width='1.5'/>\
<path d='M8 8l8 8M16 8l-8 8' stroke='%23E23A33' stroke-width='2' stroke-linecap='round'/>\
</svg>");
}

/* Solution Icons (check) */
.ps-section .card:last-child ul li::before {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<circle cx='12' cy='12' r='11' fill='%23e9f8f0' stroke='%2300A86B' stroke-width='1.5'/>\
<path d='M7.5 12.5l3 3 6-6.5' fill='none' stroke='%2300A86B' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>");
}

/* Subtle Background Differentiation */
.ps-section .card:first-child {
  background: linear-gradient(to bottom right, #fff, #fff5f5);
}

.ps-section .card:last-child {
  background: linear-gradient(to bottom right, #fff, #f2fff9);
}

/* =========================================
   RESPONSIVE
========================================= */

/* Tablet */
@media (max-width: 1024px) {
  .ps-section .card {
    padding: var(--space-md);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ps-section ul li {
    font-size: 0.95rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .ps-section .card {
    padding: var(--space-md);
  }

  .ps-section ul {
    gap: 8px;
  }
}

/* =========================================
   ACCESSIBILITY
========================================= */
@media (prefers-reduced-motion: reduce) {
  .ps-section .card {
    transition: none;
    transform: none;
  }
}
/* =========================================
   PROCESS SECTION — EMCO STYLE
========================================= */

.process {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
  position: relative;
}

/* subtle background accent */
.process::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(1,101,105,0.06),
    transparent 40%
  );
  pointer-events: none;
}

/* =========================================
   STEPS WRAPPER
========================================= */

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  position: relative;
}

/* connecting line (desktop only) */
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

/* =========================================
   STEP CARD
========================================= */

.process-step {
  position: relative;
  background: var(--color-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* =========================================
   STEP NUMBER (KEY VISUAL)
========================================= */

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: var(--color-text-inverse);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: var(--font-weight-bold);
  font-size: 1.4rem;

  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-md);
  position: relative;
}

/* glow ring */
.step-num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: var(--gradient-brand);
  opacity: 0.15;
  z-index: -1;
}

/* =========================================
   TYPOGRAPHY
========================================= */

.process-step h4 {
  margin-bottom: var(--space-xs);
  font-weight: var(--font-weight-semibold);
}

.process-step p {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  max-width: 260px;
}

/* =========================================
   HOVER MICRO-INTERACTION
========================================= */

.process-step:hover .step-num {
  transform: scale(1.08);
  box-shadow: var(--shadow-lg);
}

/* =========================================
   TABLET (2 columns)
========================================= */

@media (max-width: 1023px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    text-align: left;
    align-items: flex-start;
  }

  .step-num {
    margin-bottom: var(--space-sm);
  }
}

/* =========================================
   MOBILE (stacked timeline feel)
========================================= */

@media (max-width: 576px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .process-step {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
  }

  .step-num {
    width: 48px;
    height: 48px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .process-step h4 {
    margin-bottom: 4px;
  }

  .process-step p {
    font-size: 0.9rem;
  }
}

/* =========================================
   ACCESSIBILITY
========================================= */

@media (prefers-reduced-motion: reduce) {
  .process-step,
  .step-num {
    transition: none;
    transform: none;
  }
}
/**/
/* =========================================
   INDUSTRIES SECTION (EMCO SYSTEM)
========================================= */

.industry-section {
  position: relative;
}

/* Grid refinement */
.industry-section .grid {
  margin-top: var(--space-lg);
}

/* Chip Base */
.industry-chip {
  position: relative;
  padding: 0.9rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);

  background: var(--color-card);
  border: 1px solid var(--color-border);

  display: flex;
  align-items: center;
  gap: 0.6rem;

  cursor: default;
  transition: all var(--transition-base);
  overflow: hidden;
}

/* Subtle Gradient Hover Layer */
.industry-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-base);
  z-index: 0;
}

/* Content above gradient */
.industry-chip span,
.industry-chip {
  position: relative;
  z-index: 1;
}

/* Icon (inline SVG via pseudo) */
.industry-chip::after {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;

  background: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>\
<circle cx='12' cy='12' r='11' fill='%23e9f8f0' stroke='%23016569' stroke-width='1.5'/>\
<path d='M7.5 12.5l3 3 6-6.5' fill='none' stroke='%23016569' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/>\
</svg>") no-repeat center;

  background-size: contain;

  transition: transform var(--transition-fast);
}

/* Hover Interaction */
@media (hover: hover) {
  .industry-chip:hover {
    color: var(--color-text-inverse);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
  }

  .industry-chip:hover::before {
    opacity: 1;
  }

  .industry-chip:hover::after {
    transform: scale(1.1);
    filter: brightness(1.2);
  }
}

/* Active / pressed */
.industry-chip:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

/* =========================================
   GRID CONTROL (Better than generic grid-4)
========================================= */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* Tablet */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-chip {
    justify-content: space-between;
    padding: 0.85rem 1rem;
  }
}

/* =========================================
   VARIANTS (Optional for future scaling)
========================================= */

/* Outline style */
.industry-chip.outline {
  background: transparent;
}

/* Muted */
.industry-chip.muted {
  opacity: 0.75;
}

/* =========================================
   ACCESSIBILITY
========================================= */
.industry-chip:focus-visible {
  outline: 2px solid var(--emco-brand-accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .industry-chip {
    transition: none;
  }
}
/**/
/* =========================================
   PRICING SECTION (EMCO SYSTEM)
========================================= */

.pricing {
  background: var(--gradient-brand);
  color: var(--color-text-inverse);
  padding: var(--space-xl) 0;
  position: relative;
}

/* Section header */
.pricing .section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.15);
  color: #fff;
  margin-bottom: var(--space-sm);
}

.pricing h2,
.pricing p {
  color: #fff;
}

/* =========================================
   GRID
========================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

/* =========================================
   CARD
========================================= */
.pricing-card {
  background: rgba(255,255,255,0.95);
  color: var(--color-text);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

/* subtle glow */
.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  opacity: 0;
  transition: var(--transition-base);
}

/* hover */
@media (hover: hover) {
  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }

  .pricing-card:hover::before {
    opacity: 0.05;
  }
}

/* =========================================
   FEATURED CARD
========================================= */
.pricing-card.featured {
  transform: scale(1.04);
  border: 2px solid var(--emco-brand-sec);
  box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

.pricing-popular {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: var(--font-size-xs);
  background: var(--emco-brand-accent);
  color: #fff;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-pill);
  font-weight: var(--font-weight-semibold);
}

/* =========================================
   TYPOGRAPHY
========================================= */
.pricing-card h3 {
  margin-bottom: 0.3rem;
}

.pricing-type {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

/* =========================================
   PRICE BLOCK
========================================= */
.pricing-price {
  margin: var(--space-sm) 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.pricing-original {
  text-decoration: line-through;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.pricing-offer {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  color: var(--emco-brand-primary);
}

.pricing-discount {
  font-size: var(--font-size-xs);
  background: rgba(0,168,107,0.12);
  color: var(--emco-green);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
}

/* =========================================
   DESCRIPTION
========================================= */
.pricing-desc {
  font-size: var(--font-size-sm);
  line-height: 1.6;
  margin: var(--space-sm) 0 var(--space-md);
}

/* =========================================
   CTA BUTTON
========================================= */
.pricing-cta {
  margin-top: auto;
  text-align: center;
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-pill);
  font-weight: var(--font-weight-semibold);
  font-size: var(--font-size-sm);

  background: var(--gradient-brand);
  color: #fff;
  text-decoration: none;

  transition: all var(--transition-fast);
}

/* hover */
@media (hover: hover) {
  .pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
  }
}

/* =========================================
   RESPONSIVE
========================================= */

/* Tablet */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card.featured {
    transform: none;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing {
    padding: var(--space-lg) 0;
  }

  .pricing-card {
    padding: var(--space-md);
  }
}

/* =========================================
   ACCESSIBILITY
========================================= */
@media (prefers-reduced-motion: reduce) {
  .pricing-card,
  .pricing-cta {
    transition: none;
    transform: none;
  }
}