:root {
  --primary: #4a7bca;
  --primary-dark: #1b1464;
  --bg-dark: #0f172a;
  --bg-alt: #1e293b;
  --text-main: #f8fafc;
  --text-muted: #cbd5e1;
  --glass-bg: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --accent: #a9aeb3;
  
  --font-main: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 210, 255, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(0, 210, 255, 0.1);
  transform: translateY(-2px);
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--bg-alt);
}

.section-label {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(to right, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Top Bar */
.top-bar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bg-dark);
  color: var(--text-muted);
  text-align: center;
  padding: 8px 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1001;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .top-bar {
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    padding: 8px 0;
  }
}

/* Header */
.site-header {
  position: fixed;
  top: 31px; /* Matches top-bar height */
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.75rem 0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .site-header {
    top: 36px;
    padding: 1rem 0;
  }
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  max-height: 40px;
  width: auto;
  mix-blend-mode: multiply;
  display: block;
}

@media (min-width: 768px) {
  .brand-logo {
    max-height: 50px;
  }
}

.main-nav a {
  color: var(--primary-dark);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: var(--primary);
}

/* Dropdown Navigation */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 2rem;
}

.dropbtn {
  background: none;
  border: none;
  color: var(--primary-dark);
  font-family: var(--font-main);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 10px 0;
}

.dropbtn:hover, .dropdown:hover .dropbtn {
  color: var(--primary);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-alt);
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  z-index: 1000;
  overflow: hidden;
  margin-top: 0;
}

.dropdown-content a {
  color: var(--text-main);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  margin-left: 0;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: rgba(0, 210, 255, 0.1);
  color: var(--primary);
}

.dropdown:hover .dropdown-content {
  display: block;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1002;
  margin-left: 1rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-dark);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
  border-radius: 3px;
  pointer-events: none;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg);
}

/* Hero Section */
.hero {
  padding: 10rem 0 6rem;
  position: relative;
  overflow: hidden;
}

.carousel-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1;
}

.carousel-bg .slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 6s ease-out;
  transform: scale(1);
}

.carousel-bg .slide.active {
  opacity: 1;
  transform: scale(1.05);
}

.carousel-bg .bg-1 {
  background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.85)), url('factory-bg.jpg');
}

.carousel-bg .bg-2 {
  background-image: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.85)), url('factory-work.jpg');
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  transition: opacity 0.5s ease;
}

.tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: rgba(0, 210, 255, 0.1);
  color: var(--accent);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero .subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.stats {
  display: flex;
  gap: 2rem;
}

.stats div {
  display: flex;
  flex-direction: column;
}

.stats strong {
  font-size: 1.5rem;
  color: var(--primary);
}

.stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  backdrop-filter: blur(10px);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero-card h3 {
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.hero-card ul {
  list-style: none;
}

.hero-card li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.hero-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.two-col p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.feature-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.responsive-feature-img {
  width: 100%;
  max-width: 550px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.15));
  transition: transform 0.4s ease, filter 0.4s ease;
}

.responsive-feature-img:hover {
  transform: translateY(-5px) scale(1.02);
  filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.3));
}

/* Grid Layouts */
.cards, .quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.card, .quality-grid article {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.card:hover, .quality-grid article:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  border-color: rgba(0, 210, 255, 0.3);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover::before {
  transform: scaleX(1);
}

.card-content {
  position: relative;
  z-index: 2;
}

.card h3, .quality-grid h4 {
  color: var(--text-main);
  margin-bottom: 1rem;
}

.card p, .quality-grid p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.card ul {
  list-style: none;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.card li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
}

.card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* Pill Grid */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.pill-grid span {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: default;
}

.pill-grid span:hover {
  background: rgba(0, 210, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.05);
}

/* Contact Box */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  border-radius: 20px;
}

@media (min-width: 768px) {
  .contact-box {
    padding: 4rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-family: inherit;
  transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0, 0, 0, 0.4);
}

/* Footer Redesign */
.site-footer {
  padding: 4rem 0 2rem;
  background-color: #0b151a;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 10px
  );
  border-top: 1px solid var(--glass-border);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  border: none;
  background: none;
  -webkit-text-fill-color: initial;
}

.footer-logo-wrap {
  background: #fff;
  padding: 15px 25px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-logo {
  max-width: 160px;
  max-height: 60px;
  display: block;
  object-fit: contain;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.footer-awards {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-awards-txt {
  color: #a9aeb3;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-address {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  color: #a9aeb3;
}

.footer-contact {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  color: #fff;
}

.footer-contact strong {
  margin-right: 0.3rem;
}

.footer-timing {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #a9aeb3;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Documents Accordion */
.docs-accordions {
  margin-top: 5rem;
  text-align: left;
}

.docs-accordions h2 {
  padding: 0 0 1.5rem 0;
  margin: 0;
  color: var(--primary-dark) !important;
  font-size: 2.2rem;
  font-weight: 500;
  background: transparent !important;
  -webkit-text-fill-color: initial !important;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  margin-bottom: 2rem;
}

.accordion-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.accordion-item summary {
  padding: 1.25rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

@media (min-width: 768px) {
  .accordion-item summary {
    padding: 1.5rem 1.8rem;
    font-size: 1.1rem;
  }
}

.accordion-item summary::-webkit-details-marker {
  display: none;
}

.accordion-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 400;
  transition: transform 0.3s ease;
}

.accordion-item[open] summary::after {
  content: '−';
}

.accordion-item[open] summary {
  background: rgba(74, 123, 202, 0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.accordion-content {
  padding: 1.25rem 1.5rem;
  background: #fff;
}

@media (min-width: 768px) {
  .accordion-content {
    padding: 1.5rem 1.8rem;
  }
}

.accordion-content ul {
  list-style: none;
}

.accordion-content li {
  margin-bottom: 0.8rem;
  padding-left: 1.8rem;
  position: relative;
  color: #333;
  font-size: 1rem;
}

.accordion-content li::before {
  content: '»';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.2rem;
  line-height: 1;
}

/* Responsive Table Wrapper */
.table-container {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.spec-table {
  min-width: 600px; /* Force scroll on small screens */
}

/* Responsive */
@media (max-width: 992px) {
  .hero-grid, .two-col, .contact-box {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-card {
    transform: none !important;
  }
  
  .hero-card:hover {
    transform: translateY(-5px) !important;
  }

  .hero h1 {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .container {
    padding: 0 1rem;
  }

  .mobile-column {
    flex-direction: column !important;
  }

  .hero {
    padding: 8rem 0 4rem;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 75px; /* header height + top bar approx */
    left: 0;
    width: 100%;
    height: calc(100vh - 75px);
    background: #fff;
    flex-direction: column;
    padding: 2rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
  }
  
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .main-nav a {
    margin: 0;
    padding: 1.25rem 2rem;
    display: block;
    color: var(--primary-dark);
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .dropdown {
    margin: 0;
    width: 100%;
  }
  
  .dropbtn {
    margin: 0;
    padding: 1.25rem 2rem;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    border: none;
    background-color: #f8fafc;
    min-width: 100%;
    margin-top: 0;
    border-radius: 0;
  }
  
  .dropdown-content a {
    padding-left: 3rem;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .page-header {
    padding: 6rem 0 3rem !important;
  }

  .page-header h1 {
    font-size: 1.75rem !important;
  }

  .page-header .subtitle {
    font-size: 0.95rem !important;
  }
}

/* Card Links */
.card-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

/* --- STATS SECTION --- */
.stats-section {
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 40px;
  border-radius: 14px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(60px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.stat-card.stat-main {
  grid-column: span 2;
  background: rgba(15, 23, 42, 0.6);
  border-left: 4px solid var(--primary);
}

.stat-card h1 {
  font-size: 34px;
  line-height: 1.3;
  margin: 15px 0;
  color: var(--text-main);
}

.stat-card h2 {
  font-size: 48px;
  margin-top: 10px;
  color: var(--primary);
}

.stat-card .stat-num {
  font-size: 18px;
  color: var(--text-muted);
}

.stat-card p {
  margin-top: 10px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 1.1rem;
}

.stat-card.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-card:nth-child(1) { transition-delay: 0.1s; }
.stat-card:nth-child(2) { transition-delay: 0.2s; }
.stat-card:nth-child(3) { transition-delay: 0.3s; }
.stat-card:nth-child(4) { transition-delay: 0.4s; }

.stat-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 41, 59, 0.9);
}

@media(max-width: 900px){
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card.stat-main {
    grid-column: span 1;
  }
}

/* --- PRODUCT CARD BACKGROUNDS --- */
/* By default the cards all have var(--glass-bg). Here we override them with the uploaded images. */
.cards > a:nth-child(1) .card {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('buttweld-img.jpg');
  background-size: cover;
  background-position: center;
}
.cards > a:nth-child(2) .card {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('forged-img.jpg');
  background-size: cover;
  background-position: center;
}
.cards > a:nth-child(3) .card {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('flanges-img.jfif');
  background-size: cover;
  background-position: center;
}
.cards > a:nth-child(4) .card {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('factory-bg.jpg'); /* Defaulting Duplex to hero bg */
  background-size: cover;
  background-position: center;
}
.cards > a:nth-child(5) .card {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('fasteners-img.jpg');
  background-size: cover;
  background-position: center;
}
.cards > a:nth-child(6) .card {
  background: linear-gradient(rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.9)), url('pipes-img.jfif');
  background-size: cover;
  background-position: center;
}

/* Ensure text on image-backed cards remains highly visible */
.cards .card h3 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
}
.cards .card p {
  color: #e2e8f0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.9);
  font-weight: 500;
}
.cards .card ul li {
  color: #e2e8f0;
  text-shadow: 0 1px 3px rgba(0,0,0,0.9);
}

.brand-logo, .brand {
  mix-blend-mode: multiply !important;
  background-color: transparent !important;
}
