/* ============================================
   MAGTEK CARD SYSTEM
   ============================================
   
   Purpose: Centralized card system for MagTek website
   Philosophy: Flexible, beautiful, maintainable
   
   COLOR THEORY APPLIED:
   60-30-10 Rule for sophisticated, professional design:
   - 60% Navy/Dark Blues - Primary structure, depth
   - 30% White/Light Grays - Clean space, readability
   - 10% MagTek Red - Strategic accent, CTAs, reveals
   
   Design Principles:
   - Navy gradients create premium feel
   - Red reveals on hover (surprise & delight)
   - White borders separate elements clearly
   - Layered shadows add depth without heaviness
   
   CARD TYPES:
   1. Small Cards (.small-card) - Unified small card system (3-4 column)
   2. Compliance Cards - 2-column policies page cards
   3. Product Cards - Full-width feature cards with flow diagrams
   4. Jumbo Card - Full-width split layout (35% image / 65% content)
   5. Industry Card - Super jumbo (30% image / 70% content with features + benefits grid)
   6. Facility Card - Location card with full image display
   7. Video Card - Vertical layout for video content
   8. Story Card - Horizontal split for customer stories/press releases
   9. Metric Cards - Extra small stat/capability cards (4-column grid)
   10. Benefit Cards (.benefit-card) - Icon-based cards for platform benefits (3-column)
   11. Auth Method Cards (.auth-method-card) - Compact icon cards (4-column)
   
   All cards share consistent hover behaviors:
   - Image opacity: 0.85 → 1.0
   - Image scale: 1.05x
   - Icon rotation: 5deg
   - Icon scale: 1.1x
   - Card lift: -8px
   
   All card footers use standardized MagTek button classes:
   - .btn-text (primary choice for card links)
   - .btn-primary or .cta-button (for strong CTAs)
   
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --card-radius: 18px;
  --card-radius-lg: 24px;
  --card-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  --card-shadow-hover: 0 12px 40px rgba(210, 18, 66, 0.15);
  --card-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Universal Card Hover Behaviors */
  --card-hover-lift: -8px;
  --card-image-opacity: 0.85;
  --card-image-opacity-hover: 1;
  --card-image-scale: 1.05;
  --card-icon-rotate: 5deg;
  --card-icon-scale: 1.1;
}

/* =====================================================
   PHASE 1 SHARED MAGTEK COMPONENT ALIASES
   ===================================================== */

.magtek-policy-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.magtek-certification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.magtek-trust-badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.magtek-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1.4rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.3rem;
  font-weight: 600;
  color: #263c50;
}

.magtek-trust-badge i {
  color: #d21242;
}

@media (max-width: 768px) {
  .magtek-policy-card-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =====================================================
   PHASE 2 SHARED CARD COMPONENTS
   ===================================================== */
.magtek-feature-card-grid,
.magtek-metric-grid,
.magtek-resource-card-grid,
.magtek-pricing-tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.magtek-feature-card,
.magtek-metric-card,
.magtek-resource-card,
.magtek-pricing-tier {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 1.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.magtek-feature-card-icon,
.magtek-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  color: #ffffff;
  margin-bottom: 1rem;
}

.magtek-story-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
}

.magtek-story-image {
  position: relative;
}

.magtek-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magtek-story-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 1.1rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(38, 60, 80, 0.9);
  color: #ffffff;
}

.magtek-story-content {
  padding: 1.6rem;
}

.magtek-video-card,
.magtek-jumbo-split-card,
.magtek-industry-card {
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background: #ffffff;
  padding: 1.6rem;
}

.magtek-video-frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  margin: 1rem 0;
}

.magtek-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.magtek-jumbo-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
}

.magtek-jumbo-inner.image-first .magtek-jumbo-image {
  order: 1;
}

.magtek-jumbo-inner.image-first .magtek-jumbo-content {
  order: 2;
}

.magtek-jumbo-inner.content-first .magtek-jumbo-image {
  order: 2;
}

.magtek-jumbo-inner.content-first .magtek-jumbo-content {
  order: 1;
}

.magtek-jumbo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.magtek-jumbo-features,
.magtek-industry-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.magtek-jumbo-feature,
.magtek-industry-benefit {
  display: flex;
  gap: 0.8rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.9rem 1rem;
}

.magtek-jumbo-feature-title,
.magtek-industry-benefit-title {
  margin: 0;
  font-weight: 700;
  color: #263c50;
}

.magtek-jumbo-feature-description,
.magtek-industry-benefit-description {
  margin: 0.3rem 0 0;
  color: #4a5568;
}

.magtek-industry-bullets {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.magtek-pricing-tier.is-highlighted {
  border-color: #d21242;
  box-shadow: 0 8px 24px rgba(210, 18, 66, 0.14);
}

.magtek-pricing-label {
  margin: 0.4rem 0 0.8rem;
  color: #d21242;
  font-weight: 700;
}

.magtek-logo-cloud {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  align-items: center;
}

.magtek-logo-cloud-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.8rem;
}

.magtek-logo-cloud-item img {
  max-height: 42px;
  max-width: 100%;
  width: auto;
}

.magtek-assurance-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.magtek-assurance-bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  background: #ffffff;
}

.magtek-image-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.magtek-image-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.magtek-image-card-media {
  aspect-ratio: 16 / 10;
  background: #f8f9fa;
}

.magtek-image-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.magtek-image-card-body {
  padding: 1rem 1rem 1.2rem;
}

.magtek-image-card-body h3 {
  margin: 0 0 0.5rem;
}

.magtek-image-card-body p {
  margin: 0 0 0.8rem;
}

.magtek-icon-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.magtek-icon-tile {
  border: 1px solid #e5e7eb;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.9rem;
  text-align: center;
}

.magtek-icon-tile-icon {
  width: 38px;
  height: 38px;
  margin: 0 auto 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d21242;
  font-size: 2rem;
}

.magtek-icon-tile-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.magtek-icon-tile-title {
  margin: 0;
  font-weight: 700;
  color: #111827;
}

.magtek-icon-tile-subtitle {
  margin: 0.3rem 0 0;
  color: #4b5563;
}

.magtek-benefit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.magtek-benefit-column {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 0.9rem;
  background: #ffffff;
}

.magtek-benefit-grid {
  display: grid;
  gap: 0.6rem;
}

.magtek-benefit-item {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.7rem;
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  background: #f9fafb;
}

.magtek-benefit-item-icon {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #d21242;
}

.magtek-benefit-item-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 992px) {
  .magtek-story-card,
  .magtek-jumbo-inner {
    grid-template-columns: 1fr;
  }

  .magtek-icon-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .magtek-benefit-split {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   1. UNIFIED SMALL CARD COMPONENT
   ============================================
   
   ONE card to rule them all! Replaces:
   - simple-card
   - testimonial-card  
   - developer-card
   - mini-card
   
   Use for: Services, testimonials, team, features,
   industries, categories, benefits - any small card!
   
   Grid: Works in col-lg-3, col-lg-4, col-lg-6
   
   Consistent navy/red color scheme
   ============================================ */

.small-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
  margin-bottom: 3rem; /* Spacing when cards stack */
}

.small-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

/* Image Container */
.small-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Image Styling */
.small-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: var(--card-image-opacity);
}

.small-card:hover .small-card-image img {
  transform: scale(var(--card-image-scale));
  opacity: var(--card-image-opacity-hover);
}

/* Icon Badge */
.small-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(38, 60, 80, 0.2);
  border: 3px solid white;
}

.small-card-icon i {
  font-size: 2.8rem;
  color: white;
}

/* Clean professional hover */
.small-card:hover .small-card-icon {
  box-shadow: 0 6px 16px rgba(38, 60, 80, 0.25);
  transform: translateX(-50%) translateY(-2px);
}

/* Content Area */
.small-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2rem 2rem 0rem 2rem;
}

.small-card-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #263c50;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.small-card-content p {
  color: #1e293b;
  line-height: 1.6;
  font-size: 1.5rem;
  flex: 1;
  margin-bottom: 0;
}

/* Fallback for cards without .simple-card-content wrapper */
.small-card > h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #263c50;
  margin: 4.5rem 2rem 1.5rem;
  line-height: 1.2;
}

.small-card > p {
  color: #1e293b;
  line-height: 1.6;
  font-size: 1.5rem;
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.small-card-footer,
.simple-card-footer {
  margin-top: auto;
  padding: 0 2rem 2.5rem 2rem;
  text-align: center;
}

/* Small cards use standardized MagTek text buttons */
.small-card-footer .btn-text,
.small-card-footer .btn-link,
.small-card-footer a,
.simple-card-footer .btn-text,
.simple-card-footer .btn-link,
.simple-card-footer a {
  font-size: 1.5rem !important;
  margin: 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* SPOTLIGHT CARD - Featured/Special Variant */
/* Use for middle card in 3-card layouts to make it stand out */
.spotlight-card,
.people-card {
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%) !important;
  border: 1px solid #374151 !important;
  box-shadow: 0 8px 24px rgba(38, 60, 80, 0.15),
    0 16px 48px rgba(38, 60, 80, 0.1) !important;
  transform: translateY(-12px) !important; /* Subtle lift */
  z-index: 5;
}

.spotlight-card:hover,
.people-card:hover {
  transform: translateY(-16px) !important; /* Gentle lift on hover */
  box-shadow: 0 12px 32px rgba(38, 60, 80, 0.2),
    0 20px 56px rgba(38, 60, 80, 0.15) !important;
  border-color: #4b5563 !important;
}

/* Spotlight Card - White Text for Contrast */
.spotlight-card .small-card-content h3,
.people-card .small-card-content h3 {
  color: white !important;
}

.spotlight-card .small-card-content p,
.people-card .small-card-content p {
  color: rgba(255, 255, 255, 0.95) !important;
}

/* Spotlight Card - Icon with subtle accent */
.spotlight-card .small-card-icon,
.people-card .small-card-icon {
  background: white !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.9) !important;
}

.spotlight-card .small-card-icon i,
.people-card .small-card-icon i {
  color: #d21242 !important;
}

.spotlight-card:hover .small-card-icon,
.people-card:hover .small-card-icon {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  transform: translateX(-50%) translateY(-4px) !important;
}

/* Spotlight Card - Footer Link (Simple white text) */
.spotlight-card .small-card-footer a,
.people-card .small-card-footer a {
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  padding: 0.8rem 2rem !important;
  border-radius: 25px !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.spotlight-card .small-card-footer a:hover,
.people-card .small-card-footer a:hover {
  background: rgba(255, 255, 255, 0.2) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Responsive - Normalize on mobile */
@media (max-width: 992px) {
  .spotlight-card,
  .people-card {
    transform: translateY(0) scale(1) !important;
    min-height: 400px;
  }

  .spotlight-card:hover,
  .people-card:hover {
    transform: translateY(-8px) scale(1) !important;
  }
}

/* ============================================
   2. COMPLIANCE CARDS (Policies Page Style)
   ============================================ */

.compliance-card {
  background: white;
  border-radius: var(--card-radius);
  padding: 0;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
}

.compliance-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.compliance-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.compliance-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(210, 18, 66, 0.05) 0%,
    rgba(38, 60, 80, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.compliance-card:hover .compliance-card-image::before {
  opacity: 1;
}

.compliance-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: var(--card-image-opacity);
}

.compliance-card:hover .compliance-card-image img {
  transform: scale(var(--card-image-scale));
  opacity: var(--card-image-opacity-hover);
}

.compliance-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(38, 60, 80, 0.2);
  border: 3px solid white;
}

.compliance-card-icon i {
  font-size: 3rem;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.compliance-card:hover .compliance-card-icon {
  transform: translateX(-50%) translateY(-3px);
  box-shadow: 0 6px 20px rgba(38, 60, 80, 0.25);
}

.compliance-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 1rem 2rem;
}

.compliance-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #263c50;
  margin-bottom: 1rem;
}

.compliance-card p {
  color: #1e293b;
  line-height: 1.6;
  font-size: 1.5rem;
  flex: 1;
  margin-bottom: 1rem;
}

.compliance-card-footer {
  margin-top: auto;
  padding: 0 2rem 2rem 2rem;
}

/* Compliance cards use standardized MagTek text buttons */
.compliance-card-footer .btn-text,
.compliance-card-footer .btn-link {
  font-size: 1.5rem !important;
}

/* Legacy support for .compliance-card-link (redirects to btn-text) */
.compliance-card-link {
  color: #d21242;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.5rem;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 0.2rem;
}

.compliance-card-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #d21242;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.compliance-card-link:hover {
  color: #b01035;
}

.compliance-card-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.compliance-card-link i {
  transition: transform 0.3s ease;
}

.compliance-card-link:hover i {
  transform: translateX(4px);
}

/* ============================================
   3. PRODUCT CARDS (DynaConnect Large Cards)
   ============================================ */

.magtek-product-card {
  background: white;
  border-radius: var(--card-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 4rem;
}

.magtek-product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
  transform: translateY(-6px);
}

.magtek-card-header {
  padding: 2rem 3rem 1.5rem 3rem;
  border-bottom: 1px solid #e5e7eb;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
}

.magtek-card-title-section {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.magtek-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(38, 60, 80, 0.2);
  border: 2px solid rgba(38, 60, 80, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.magtek-card-title-section h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 0.3rem 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 70%, #0f3460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.magtek-card-subtitle {
  font-size: 1.4rem;
  color: #d21242;
  margin: 0;
  font-weight: 600;
}

.magtek-card-content {
  padding: 0;
  display: block;
}

.magtek-card-content .row {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0;
}

.magtek-card-content .row > [class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.magtek-card-text {
  padding: 2.5rem 3rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
}

.magtek-card-text h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #263c50;
}

.magtek-card-text > p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.magtek-card-image {
  padding: 2.5rem 3rem 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.magtek-card-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: var(--card-image-opacity);
}

.magtek-product-card:hover .magtek-card-image img {
  transform: scale(var(--card-image-scale));
  opacity: var(--card-image-opacity-hover);
}

/* MagTek Flow Diagram */
.magtek-flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2.5rem 2rem;
  margin: 0;
  margin-top: 2.5rem;
  background: linear-gradient(
    135deg,
    rgba(210, 18, 66, 0.03) 0%,
    rgba(176, 16, 53, 0.03) 100%
  );
  border-radius: 0 0 24px 24px;
  border-top: 1px solid rgba(210, 18, 66, 0.15);
  flex-wrap: wrap;
}

.magtek-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  min-width: 90px;
  transition: all 0.3s ease;
}

.magtek-flow-step:hover {
  transform: translateY(-3px);
}

.magtek-flow-icon {
  width: 60px;
  height: 60px;
  background: white;
  border: 2px solid rgba(210, 18, 66, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #d21242;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.magtek-flow-step:hover .magtek-flow-icon {
  border-color: #d21242;
  box-shadow: 0 6px 20px rgba(210, 18, 66, 0.2);
  transform: scale(1.05);
}

.magtek-flow-step.highlight .magtek-flow-icon {
  background: linear-gradient(135deg, #d21242 0%, #b01035 100%);
  color: white;
  border-color: #d21242;
  box-shadow: 0 8px 25px rgba(210, 18, 66, 0.3);
}

.magtek-flow-step.highlight:hover .magtek-flow-icon {
  box-shadow: 0 12px 35px rgba(210, 18, 66, 0.4);
}

.magtek-flow-step span {
  font-size: 1.3rem;
  font-weight: 600;
  color: #263c50;
  text-align: center;
  line-height: 1.2;
}

.magtek-flow-step.highlight span {
  color: #d21242;
  font-weight: 700;
}

.magtek-flow-arrow {
  display: flex;
  align-items: center;
  color: #d21242;
  font-size: 1.8rem;
  opacity: 0.6;
}

.magtek-flow-arrow i {
  animation: magtekPulseArrow 2s ease-in-out infinite;
}

@keyframes magtekPulseArrow {
  0%,
  100% {
    opacity: 0.6;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

/* ============================================
   CHECKMARK LIST (for Product Cards)
   ============================================ */

.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checkmark-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  color: #263c50;
  line-height: 1.65;
  font-weight: 400;
}

.checkmark-list-content {
  flex: 1;
  min-width: 0;
  font-weight: 400;
}

.checkmark-list-icon {
  color: #d21242;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* Product Badges (Inline Clickable Items) */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  margin: 0 0.3rem;
  background: linear-gradient(
    135deg,
    rgba(99, 97, 154, 0.1) 0%,
    rgba(76, 74, 125, 0.08) 100%
  );
  border: 1px solid rgba(99, 97, 154, 0.25);
  border-radius: 20px;
  color: #312d57;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  vertical-align: middle;
  box-shadow: 0 2px 6px rgba(76, 74, 125, 0.1);
}

.product-badge i {
  font-size: 1.3rem;
  color: #4c4a7d;
  transition: all 0.3s ease;
}

.product-badge span {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-weight: 400;
}

.product-badge sup {
  font-size: 0.7em;
  vertical-align: super;
  line-height: 0;
}

.product-badge:hover {
  background: linear-gradient(
    135deg,
    rgba(99, 97, 154, 0.18) 0%,
    rgba(76, 74, 125, 0.15) 100%
  );
  border-color: rgba(99, 97, 154, 0.4);
  color: #1e1a3d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 74, 125, 0.2);
  text-decoration: none;
}

.product-badge:hover i {
  color: #312d57;
  transform: scale(1.1);
}

.product-badge:active {
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(76, 74, 125, 0.15);
}

/* Specific badge variants */
.product-badge-qwickcards {
  background: linear-gradient(
    135deg,
    rgba(99, 97, 154, 0.12) 0%,
    rgba(76, 74, 125, 0.1) 100%
  );
}

.product-badge-qwickpin {
  background: linear-gradient(
    135deg,
    rgba(99, 97, 154, 0.12) 0%,
    rgba(76, 74, 125, 0.1) 100%
  );
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-badge {
    padding: 0.4rem 0.8rem;
    font-size: 1.3rem;
    margin: 0 0.2rem;
  }

  .product-badge i {
    font-size: 1.2rem;
  }
}

/* ============================================
   4. JUMBO CARD (Full-Width Split Layout)
   ============================================ */

.jumbo-card {
  background: white;
  border-radius: var(--card-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 4rem;
  position: relative;
}

.jumbo-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
  transform: translateY(-6px);
}

.jumbo-card-container {
  display: grid;
  grid-template-columns: 35fr 65fr;
  min-height: 500px;
  align-items: stretch;
}

/* Image side (35%) */
.jumbo-card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.jumbo-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: var(--card-image-opacity);
}

.jumbo-card:hover .jumbo-card-image img {
  transform: scale(var(--card-image-scale));
  opacity: var(--card-image-opacity-hover);
}

.jumbo-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(210, 18, 66, 0.08) 0%,
    rgba(38, 60, 80, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.jumbo-card:hover .jumbo-card-image::before {
  opacity: 1;
}

/* Content side (65%) */
.jumbo-card-content {
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  position: relative;
}

.jumbo-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f3f4f6;
  color: #374151;
  padding: 0.7rem 1.6rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.jumbo-card-badge i {
  font-size: 1.3rem;
  color: #d21242;
}

.jumbo-card-title {
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 70%, #0f3460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jumbo-card-subtitle {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  max-width: 90%;
}

.jumbo-card-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jumbo-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.jumbo-feature-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateX(4px);
}

.jumbo-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(38, 60, 80, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(38, 60, 80, 0.1);
  position: relative;
}

.jumbo-feature-item:hover .jumbo-feature-icon {
  box-shadow: 0 4px 12px rgba(38, 60, 80, 0.2);
  transform: translateY(-2px);
}

.jumbo-feature-text h4 {
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 0.5rem 0;
}

.jumbo-feature-text p {
  font-size: 1.5rem;
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
}

.jumbo-card-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* Reversed layout - Image on right */
.jumbo-card.jumbo-reverse .jumbo-card-container {
  grid-template-columns: 65fr 35fr;
}

/* Responsive */
@media (max-width: 1024px) {
  .jumbo-card-container {
    grid-template-columns: 40fr 60fr;
  }

  .jumbo-card.jumbo-reverse .jumbo-card-container {
    grid-template-columns: 60fr 40fr;
  }

  .jumbo-card-content {
    padding: 3rem 3.5rem;
  }
}

@media (max-width: 768px) {
  .jumbo-card-container,
  .jumbo-card.jumbo-reverse .jumbo-card-container {
    grid-template-columns: 1fr;
  }

  .jumbo-card-image {
    min-height: 350px;
    order: 1;
  }

  .jumbo-card-content {
    padding: 3rem 2.5rem;
    order: 2;
  }

  .jumbo-card-title {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }

  .jumbo-card-subtitle {
    font-size: clamp(1.6rem, 3vw, 1.8rem);
  }

  .jumbo-feature-item {
    padding: 1.2rem;
  }

  .jumbo-feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
  }

  .jumbo-feature-text h4 {
    font-size: 1.6rem;
  }

  .jumbo-feature-text p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .jumbo-card-content {
    padding: 2.5rem 2rem;
    gap: 2rem;
  }

  .jumbo-card-image {
    min-height: 280px;
  }

  .jumbo-card-actions {
    flex-direction: column;
    width: 100%;
  }

  .jumbo-card-actions .cta-button,
  .jumbo-card-actions .btn-secondary {
    width: 100%;
  }
}

/* ============================================
   7. INDUSTRY CARD (Super Jumbo - Maximum Content)
   ============================================ */

.industry-card {
  background: white;
  border-radius: var(--card-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 0;
  position: relative;
}

.industry-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
  transform: translateY(-6px);
}

.industry-card-container {
  display: grid;
  grid-template-columns: 30fr 70fr;
  min-height: 600px;
  align-items: stretch;
}

/* Image side (30%) */
.industry-card-image {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.3s ease;
  opacity: var(--card-image-opacity);
}

.industry-card:hover .industry-card-image img {
  transform: scale(var(--card-image-scale));
  opacity: var(--card-image-opacity-hover);
}

.industry-card-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(210, 18, 66, 0.08) 0%,
    rgba(38, 60, 80, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.industry-card:hover .industry-card-image::before {
  opacity: 1;
}

/* Content side (70%) */
.industry-card-content {
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

/* Header Section */
.industry-card-header {
  border-bottom: 2px solid rgba(210, 18, 66, 0.1);
  padding-bottom: 2rem;
}

.industry-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f3f4f6;
  color: #374151;
  padding: 0.6rem 1.3rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.industry-card-badge i {
  font-size: 1.2rem;
  color: #d21242;
}

.industry-card-title {
  font-size: clamp(3.2rem, 4.5vw, 4.5rem);
  font-weight: 800;
  color: #263c50;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.industry-card-subtitle {
  font-size: clamp(1.7rem, 2.2vw, 2rem);
  color: #1e293b;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

/* Features Section */
.industry-card-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.industry-card-features h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #263c50;
  margin: 0 0 1.2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.industry-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  color: #263c50;
  font-weight: 500;
  padding: 0.5rem 0;
}

.industry-features-list li i {
  color: #d21242;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Benefits Grid Section */
.industry-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.industry-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.industry-benefit-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.industry-benefit-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.2rem;
  box-shadow: 0 2px 8px rgba(38, 60, 80, 0.15);
  transition: all 0.3s ease;
}

.industry-benefit-item:hover .industry-benefit-icon {
  box-shadow: 0 4px 12px rgba(38, 60, 80, 0.2);
  transform: translateY(-2px);
}

.industry-benefit-text h4 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #263c50;
  margin: 0;
}

.industry-benefit-text p {
  font-size: 1.4rem;
  color: #1e293b;
  line-height: 1.5;
  margin: 0;
}

.industry-card-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
  border-top: 2px solid rgba(210, 18, 66, 0.1);
}

/* Responsive - Industry Card */
@media (max-width: 1200px) {
  .industry-card-container {
    grid-template-columns: 35fr 65fr;
  }

  .industry-card-content {
    padding: 3.5rem 4rem;
    gap: 2.5rem;
  }

  .industry-features-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
  .industry-card-container {
    grid-template-columns: 1fr;
  }

  .industry-card-image {
    min-height: 400px;
    order: 1;
  }

  .industry-card-content {
    padding: 3rem 3rem;
    order: 2;
  }

  .industry-benefits {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .industry-card-content {
    padding: 2.5rem 2rem;
    gap: 2rem;
  }

  .industry-card-image {
    min-height: 320px;
  }

  .industry-card-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
  }

  .industry-card-subtitle {
    font-size: clamp(1.5rem, 3.5vw, 1.7rem);
  }

  .industry-features-list li {
    font-size: 1.4rem;
  }

  .industry-benefit-item {
    padding: 1.5rem;
  }

  .industry-benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }

  .industry-benefit-text h4 {
    font-size: 1.6rem;
  }

  .industry-benefit-text p {
    font-size: 1.3rem;
  }

  .industry-card-actions {
    flex-direction: column;
    width: 100%;
  }

  .industry-card-actions .cta-button,
  .industry-card-actions .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .industry-card-content {
    padding: 2rem 1.5rem;
  }

  .industry-card-image {
    min-height: 280px;
  }
}

/* ============================================
   5. FACILITY CARD (Location/Headquarters Showcase)
   ============================================
   
   Full-width card with unconstrained image on top,
   content below. Perfect for facility showcases,
   office locations, or headquarter presentations.
   
   Image displays in full without cropping.
   ============================================ */

.facility-card {
  background: white;
  border-radius: var(--card-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 3rem;
  position: relative;
}

.facility-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
  transform: translateY(-6px);
}

/* Image Container - Full width, no constraints */
.facility-card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fafc 0%, #e9ecef 100%);
}

.facility-card-image img {
  width: 100%;
  height: auto;
  display: block;
  opacity: var(--card-image-opacity);
  transition: all 0.4s ease;
}

.facility-card:hover .facility-card-image img {
  opacity: var(--card-image-opacity-hover);
  transform: scale(1.02);
}

/* Location Badge Overlay on Image */
.facility-location-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  color: white;
  padding: 1.2rem 2rem;
  border-radius: 16px;
  font-weight: 700;
  font-size: 1.5rem;
  border: 2px solid rgba(210, 18, 66, 0.3);
  box-shadow: 0 6px 20px rgba(38, 60, 80, 0.4);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.facility-location-badge i {
  font-size: 1.8rem;
  color: #d21242;
}

/* Content Section */
.facility-card-content {
  padding: 3rem 4rem;
}

.facility-card-header {
  margin-bottom: 2.5rem;
}

.facility-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f3f4f6;
  color: #374151;
  padding: 0.7rem 1.6rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.facility-card-badge i {
  font-size: 1.3rem;
  color: #d21242;
}

.facility-card-title {
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1.2rem 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 70%, #0f3460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.facility-card-subtitle {
  font-size: clamp(1.6rem, 2vw, 1.9rem);
  color: #4a5568;
  line-height: 1.7;
  margin: 0 0 2.5rem 0;
}

/* Features Grid - 2 columns */
.facility-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.facility-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.facility-feature-item:hover {
  background: #f3f4f6;
  border-color: #d1d5db;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.facility-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(38, 60, 80, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(38, 60, 80, 0.1);
  position: relative;
}

.facility-feature-item:hover .facility-feature-icon {
  box-shadow: 0 4px 12px rgba(38, 60, 80, 0.2);
  transform: translateY(-2px);
}

.facility-feature-text h4 {
  font-size: 1.7rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.facility-feature-text p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

/* Actions Section */
.facility-card-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .facility-features {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .facility-card-content {
    padding: 2.5rem 2rem;
  }

  .facility-location-badge {
    font-size: 1.3rem;
    padding: 1rem 1.5rem;
  }

  .facility-card-header {
    margin-bottom: 2rem;
  }

  .facility-feature-item {
    padding: 1.2rem;
  }
}

/* ============================================
   6. VIDEO CARD (Embedded Video with Context)
   ============================================
   
   Professional card for showcasing videos with
   title, description, and optional metadata.
   Perfect for product demos, tutorials, and
   promotional content.
   
   Maintains 16:9 aspect ratio for videos.
   ============================================ */

.video-card {
  background: white;
  border-radius: var(--card-radius-lg);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 4rem;
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.video-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
  transform: translateY(-6px);
}

/* Video Container - 16:9 Aspect Ratio (Middle) */
.video-card-media {
  position: relative;
  width: 100%;
  max-width: 700px;
  padding-bottom: 39.375%; /* 16:9 aspect ratio of 700px */
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  overflow: hidden;
  order: 2; /* Middle: after header, before footer */
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.video-card-media iframe,
.video-card-media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Optional Overlay (for thumbnail/preview state) */
.video-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(38, 60, 80, 0.85) 0%,
    rgba(30, 41, 59, 0.9) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 5;
}

.video-card:hover .video-card-overlay {
  opacity: 1;
}

.video-play-button {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d21242 0%, #b01035 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.4rem;
  box-shadow: 0 8px 24px rgba(210, 18, 66, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.video-play-button::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(210, 18, 66, 0.3);
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.video-card:hover .video-play-button {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(210, 18, 66, 0.6);
}

.video-play-button i {
  margin-left: 4px; /* Visual centering for play icon */
}

/* Video Header Section (Top) */
.video-card-header {
  padding: 3rem 3.5rem 2.5rem 3.5rem;
  order: 1; /* Top */
}

/* Video Footer Section (Bottom) */
.video-card-footer {
  padding: 2.5rem 3.5rem 3rem 3.5rem;
  order: 3; /* Bottom */
}

.video-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #f3f4f6;
  color: #374151;
  padding: 0.6rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid #e5e7eb;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.video-card-badge i {
  font-size: 1.2rem;
  color: #d21242;
}

.video-card-title {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 70%, #0f3460 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-card-description {
  font-size: 1.6rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

/* Video Metadata */
.video-card-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 0;
  border-top: none;
  margin-bottom: 2rem;
}

.video-meta-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.video-meta-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(38, 60, 80, 0.15);
  transition: all 0.3s ease;
  border: 2px solid rgba(38, 60, 80, 0.1);
  position: relative;
}

.video-meta-text {
  display: flex;
  flex-direction: column;
}

.video-meta-label {
  font-size: 1.2rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.video-meta-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Video Action */
.video-card-action {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .video-card {
    max-width: 100%;
  }

  .video-card-header {
    padding: 2.5rem 2rem 2rem 2rem;
  }

  .video-card-footer {
    padding: 2rem 2rem 2.5rem 2rem;
  }

  .video-card-media {
    max-width: 100%;
    padding-bottom: 56.25%; /* Full 16:9 on mobile */
    border-radius: 8px;
  }

  .video-card-meta {
    gap: 1.5rem;
  }

  .video-play-button {
    width: 65px;
    height: 65px;
    font-size: 2rem;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .small-card,
  .compliance-card {
    min-height: 380px;
  }

  .small-card-image,
  .compliance-card-image {
    height: 180px;
  }

  .small-card-icon {
    width: 65px;
    height: 65px;
    top: 155px;
  }

  .small-card-icon i {
    font-size: 2.2rem;
  }

  .small-card-content {
    padding-top: 4rem;
  }

  .compliance-card-icon {
    width: 70px;
    height: 70px;
    top: 160px;
  }

  .compliance-card-icon i {
    font-size: 2.4rem;
  }

  .mini-icon {
    width: 55px;
    height: 55px;
    top: 125px;
  }

  .mini-icon i {
    font-size: 1.8rem;
  }

  .magtek-card-header {
    padding: 1.5rem 2rem 1rem 2rem;
  }

  .magtek-card-content .row {
    flex-direction: column;
  }

  .magtek-card-content .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    order: 0;
  }

  .magtek-card-text,
  .magtek-card-image {
    padding: 2rem;
    width: 100%;
  }

  .magtek-card-image {
    min-height: 0;
  }

  .magtek-flow-diagram {
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .magtek-flow-arrow {
    transform: rotate(90deg);
    font-size: 1.5rem;
  }

  .magtek-flow-step {
    min-width: 120px;
  }

  .magtek-flow-icon {
    width: 60px;
    height: 60px;
    font-size: 2.2rem;
  }

  .magtek-flow-step span {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .small-card,
  .compliance-card {
    min-height: 350px;
  }

  .small-card-image,
  .compliance-card-image {
    height: 160px;
  }

  .small-card-icon {
    width: 60px;
    height: 60px;
    top: 140px;
  }

  .small-card-icon i {
    font-size: 2rem;
  }

  .small-card-content {
    padding-top: 3.5rem;
  }

  .compliance-card-icon {
    width: 65px;
    height: 65px;
    top: 145px;
  }

  .compliance-card-icon i {
    font-size: 2rem;
  }

  .mini-icon {
    width: 50px;
    height: 50px;
    top: 115px;
  }

  .mini-icon i {
    font-size: 1.6rem;
  }

  .magtek-product-card {
    margin-bottom: 3rem;
  }

  .magtek-card-content .row {
    flex-direction: column;
  }

  .magtek-card-content .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    order: 0;
  }

  .magtek-card-image {
    min-height: 0;
  }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  .small-card,
  .compliance-card,
  .magtek-product-card,
  .jumbo-card,
  .industry-card,
  .facility-card,
  .video-card,
  .small-card-icon,
  .compliance-card-icon,
  .jumbo-feature-icon,
  .industry-benefit-icon,
  .magtek-flow-step,
  .magtek-flow-icon {
    transition: none !important;
  }

  .small-card:hover,
  .compliance-card:hover,
  .magtek-product-card:hover,
  .jumbo-card:hover,
  .industry-card:hover,
  .facility-card:hover,
  .video-card:hover,
  .small-card-icon:hover,
  .compliance-card-icon:hover,
  .jumbo-feature-icon:hover,
  .jumbo-feature-item:hover,
  .industry-benefit-icon:hover,
  .industry-benefit-item:hover,
  .magtek-flow-step:hover {
    transform: none !important;
  }

  .small-card:hover .small-card-icon,
  .compliance-card:hover .compliance-card-icon {
    transform: translateX(-50%) !important;
  }

  .jumbo-card::before,
  .industry-card::before,
  .facility-card::before {
    transform: none !important;
  }

  .magtek-flow-arrow i {
    animation: none !important;
  }

  .metric-card:hover,
  .metric-icon:hover,
  .story-card:hover,
  .story-badge:hover {
    transform: none !important;
  }
}

/* ============================================
   STORY CARD - Customer Success / Press Release Card
   ============================================
   
   Horizontal split card with image and content.
   Perfect for customer stories, press releases, case studies.
   
   Usage:
   <div class="story-card">
     <div class="story-image">
       <img src="image.jpg" alt="Story" />
       <div class="story-badge">Success Story</div>
     </div>
     <div class="story-content">
       <div class="story-header">
         <h3 class="story-title">Company Name</h3>
         <div class="story-category">
           <i class="fas fa-shopping-cart"></i>
           <span>Industry Category</span>
         </div>
       </div>
       <p class="story-description">Description text...</p>
       <a href="#" class="btn-text">Read the Full Story</a>
     </div>
   </div>
   ============================================ */

.story-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  max-width: 1100px;
  margin: 4rem auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 400px 1fr;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.story-image {
  position: relative;
  overflow: hidden;
  background: #f7f9fb;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.story-card:hover .story-image img {
  transform: scale(1.05);
}

.story-badge {
  position: absolute;
  top: 2rem;
  left: 2rem;
  background: rgba(38, 60, 80, 0.9);
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.story-card:hover .story-badge {
  background: rgba(38, 60, 80, 0.95);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.story-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.story-header {
  margin-bottom: 2rem;
}

.story-title {
  font-size: 3rem;
  font-weight: 900;
  color: #263c50;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.story-category {
  font-size: 1.5rem;
  font-weight: 600;
  color: #d21242;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.story-category i {
  font-size: 1.8rem;
}

.story-description {
  font-size: 1.7rem;
  color: #1e293b;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .story-card {
    grid-template-columns: 1fr;
    max-width: 700px;
  }

  .story-image {
    height: 300px;
  }

  .story-content {
    padding: 3rem;
  }
}

@media (max-width: 768px) {
  .story-card {
    margin: 6rem auto;
  }

  .story-image {
    height: 250px;
  }

  .story-content {
    padding: 3rem 2.5rem;
  }

  .story-title {
    font-size: 2.4rem;
  }

  .story-description {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }

  .story-badge {
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.2rem;
    padding: 0.8rem 2rem;
  }
}

/* ============================================
   METRIC CARDS - Extra Small Capability/Stats Cards
   ============================================
   
   High-impact metric cards with icon, title, value, and description.
   Perfect for showcasing statistics, capabilities, or key features.
   
   Usage:
   <div class="metric-card">
     <div class="metric-icon">
       <i class="fas fa-clock"></i>
     </div>
     <div class="metric-content">
       <h4 class="metric-title">Fast Updates</h4>
       <p class="metric-value">15 Minutes</p>
       <p class="metric-desc">Update 1,000+ devices at once—no waiting, no delays</p>
     </div>
   </div>
   ============================================ */

.metric-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 2.5rem 2rem;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.metric-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.metric-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #263c50 0%, #1e293b 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(38, 60, 80, 0.15);
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid rgba(38, 60, 80, 0.1);
}

.metric-card:hover .metric-icon {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(38, 60, 80, 0.2);
}

.metric-icon i {
  font-size: 2.4rem;
  color: white;
  position: relative;
  z-index: 1;
}

.metric-content {
  flex: 1;
  width: 100%;
}

.metric-title {
  margin: 0 0 0.5rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #263c50;
  line-height: 1.2;
}

.metric-value {
  margin: 0 0 0.8rem 0;
  font-size: 2.4rem;
  font-weight: 800;
  color: #d21242;
  line-height: 1;
}

.metric-desc {
  margin: 0;
  font-size: 1.3rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

/* ============================================
   QUOTE CARD - Clean Corporate Quote Display
   ============================================
   
   Minimal, professional quote design for corporate environments.
   Clean typography, subtle accents, straightforward layout.
   
   Usage:
   <div class="quote-card">
     <blockquote class="quote-text">
       Your inspiring quote goes here...
     </blockquote>
     <div class="quote-attribution">
       <span class="quote-author">John Doe</span>
       <span class="quote-role">CEO, Company Name</span>
     </div>
     <div class="quote-footer">
       <a href="#" class="btn-text">Learn More</a>
     </div>
   </div>
   ============================================ */

.quote-card {
  max-width: 750px;
  margin: 4rem auto;
  padding: 3rem 2.5rem 2.5rem 5.5rem;
  position: relative;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
  border-radius: var(--card-radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e5e7eb;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Simple left accent bar */
.quote-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  bottom: 14px;
  width: 3px;
  background: #d21242;
  border-radius: var(--card-radius-lg) 0 0 var(--card-radius-lg);
  transition: width 0.3s ease;
}

.quote-card:hover {
  border-color: #d1d5db;
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 16px 48px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.quote-card:hover::before {
  width: 4px;
}

/* Quote Text - Distinct Testimonial Typography */
.quote-text {
  font-size: 1.9rem;
  font-weight: 500;
  color: #1e293b;
  line-height: 1.7;
  margin: 0 0 2rem 0;
  position: relative;
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
}

.quote-card:hover .quote-text {
  color: #0f172a;
}

/* Simple opening quote mark */
.quote-text::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 8rem;
  font-weight: 700;
  color: #d21242;
  position: absolute;
  left: -4rem;
  top: -1.5rem;
  line-height: 1;
  opacity: 0.12;
  transition: opacity 0.2s ease;
}

.quote-card:hover .quote-text::before {
  opacity: 0.18;
}

/* Subtle closing quote mark */
.quote-text::after {
  content: "\201D";
  font-family: Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #d21242;
  margin-left: 0.3rem;
  vertical-align: super;
  line-height: 0;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.quote-card:hover .quote-text::after {
  opacity: 0.7;
}

/* Attribution - Clean and Simple with Testimonial Emphasis */
.quote-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

/* Author name - Distinct from body copy */
.quote-author {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.2s ease;
  font-style: normal;
}

.quote-card:hover .quote-author {
  color: #0f172a;
}

/* Role - supporting detail */
.quote-role {
  font-size: 1.2rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.4;
  font-style: normal;
}

/* Footer - Call to Action */
.quote-footer {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Responsive Design - Clean at all breakpoints */
@media (max-width: 1200px) {
  .quote-card {
    padding: 3rem 2.5rem 2.5rem 5.5rem;
    margin: 4rem auto;
  }

  .quote-text {
    font-size: 1.85rem;
  }

  .quote-text::before {
    font-size: 7.5rem;
    left: -3.8rem;
    top: -1.4rem;
  }

  .quote-text::after {
    font-size: 2.4rem;
  }
}

@media (max-width: 992px) {
  .quote-card {
    max-width: 700px;
    padding: 2.8rem 2.3rem 2.3rem 5rem;
    margin: 3.5rem auto;
  }

  .quote-text {
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
  }

  .quote-text::before {
    font-size: 7rem;
    left: -3.5rem;
    top: -1.2rem;
  }

  .quote-text::after {
    font-size: 2.3rem;
  }

  .quote-attribution {
    margin-bottom: 1.8rem;
  }

  .quote-author {
    font-size: 1.35rem;
  }

  .quote-role {
    font-size: 1.15rem;
  }
}

@media (max-width: 768px) {
  .quote-card {
    padding: 2.5rem 2rem 2rem 4.5rem;
    margin: 3rem auto;
  }

  .quote-card::before {
    width: 3px;
  }

  .quote-card:hover::before {
    width: 4px;
  }

  .quote-text {
    font-size: 1.7rem;
    margin-bottom: 1.6rem;
  }

  .quote-text::before {
    font-size: 6.5rem;
    left: -3.2rem;
    top: -1rem;
  }

  .quote-text::after {
    font-size: 2.2rem;
  }

  .quote-attribution {
    margin-bottom: 1.6rem;
  }

  .quote-author {
    font-size: 1.3rem;
  }

  .quote-role {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .quote-card {
    padding: 2.2rem 1.8rem 1.8rem 4rem;
    margin: 2.5rem auto;
  }

  .quote-card::before {
    width: 3px;
  }

  .quote-card:hover::before {
    width: 4px;
  }

  .quote-text {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .quote-text::before {
    font-size: 6rem;
    left: -2.8rem;
    top: -0.8rem;
  }

  .quote-text::after {
    font-size: 2rem;
  }

  .quote-attribution {
    margin-bottom: 1.5rem;
  }

  .quote-author {
    font-size: 1.25rem;
  }

  .quote-role {
    font-size: 1.05rem;
  }
}

/* Metric Card Grid Layout */
.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .metric-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .metric-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .metric-card {
    padding: 2rem 1.5rem;
  }
}

/* ============================================
   10. BENEFIT CARD COMPONENT
   ============================================
   
   Compact icon-based cards for platform benefits
   Use for: Key benefits, features, value props
   Grid: 3-column (col-lg-4 equivalent)
   ============================================ */

.platform-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.benefit-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(210, 18, 66, 0.12);
  border-color: var(--magtek-red);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(210, 18, 66, 0.2);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 2.6rem;
  color: white;
}

.benefit-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.benefit-card p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .platform-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .platform-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .benefit-card {
    padding: 2.5rem 2rem;
  }

  .benefit-icon {
    width: 70px;
    height: 70px;
  }

  .benefit-icon i {
    font-size: 3rem;
  }

  .benefit-card h3 {
    font-size: 2rem;
  }

  .benefit-card p {
    font-size: 1.5rem;
  }
}

/* ============================================
   11. AUTH METHOD CARD COMPONENT
   ============================================
   
   Extra compact cards for authentication methods
   Use for: Auth methods, payment methods, features
   Grid: 4-column (col-lg-3 equivalent)
   ============================================ */

.auth-methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto 0;
  padding: 0 2rem;
}

.auth-method-card {
  background: white;
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.auth-method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(210, 18, 66, 0.12);
  border-color: var(--magtek-red);
}

.auth-method-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.auth-method-card:hover .auth-method-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.auth-method-icon i {
  font-size: 2.6rem;
  color: var(--magtek-blue);
  transition: color 0.3s ease;
}

.auth-method-card:hover .auth-method-icon i {
  color: white;
}

.auth-method-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.auth-method-card p {
  font-size: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .auth-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .auth-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .auth-method-card {
    padding: 2rem 1.5rem;
  }

  .auth-method-icon {
    width: 56px;
    height: 56px;
  }

  .auth-method-icon i {
    font-size: 2.4rem;
  }

  .auth-method-card h4 {
    font-size: 1.6rem;
  }

  .auth-method-card p {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .auth-methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   ADDITIONAL RESPONSIVE STYLES FOR SERVICES PAGE
   ========================================================================== */

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .magtek-product-card {
    margin-bottom: 3rem;
  }

  .magtek-card-header {
    padding: 1.5rem 2rem 1rem 2rem;
  }

  .magtek-card-title-section {
    gap: 1.5rem;
  }

  .magtek-card-icon {
    width: 55px;
    height: 55px;
    font-size: 2.4rem;
  }

  .magtek-card-title-section h3 {
    font-size: 2.2rem;
  }

  .magtek-card-content .row {
    flex-direction: row;
  }

  .magtek-card-text,
  .magtek-card-image {
    padding: 2rem 2rem;
  }

  .magtek-card-image {
    min-height: 0;
  }

  .magtek-card-text h4 {
    font-size: 1.8rem;
  }

  .magtek-card-text > p {
    font-size: 1.5rem;
  }

  .checkmark-list-item {
    font-size: 1.5rem;
  }

  .small-card {
    min-height: 380px;
  }

  .platform-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
  }

  .quote-card {
    padding: 2.5rem 2rem 2rem 4.5rem;
    margin: 3rem auto;
  }

  .quote-text {
    font-size: 1.7rem;
  }

  .quote-text::before {
    font-size: 6.5rem;
    left: -3.2rem;
    top: -1rem;
  }

  .magcare-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 2.5rem 2rem;
  }
}

/* Mobile Landscape (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .magtek-product-card {
    margin-bottom: 2.5rem;
  }

  .magtek-card-header {
    padding: 1.2rem 1.5rem 1rem 1.5rem;
  }

  .magtek-card-title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .magtek-card-icon {
    width: 50px;
    height: 50px;
    font-size: 2.2rem;
  }

  .magtek-card-title-section h3 {
    font-size: 2rem;
  }

  .magtek-card-content .row {
    flex-direction: column;
  }

  .magtek-card-content .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    order: 0;
  }

  .magtek-card-text,
  .magtek-card-image {
    padding: 1.5rem;
    width: 100%;
  }

  .magtek-card-image {
    min-height: 0;
  }

  .magtek-card-text h4 {
    font-size: 1.7rem;
  }

  .magtek-card-text > p {
    font-size: 1.4rem;
  }

  .checkmark-list-item {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }

  .small-card {
    min-height: 360px;
    margin-bottom: 2rem;
  }

  .small-card-image {
    height: 180px;
  }

  .small-card-icon {
    width: 60px;
    height: 60px;
    top: 150px;
  }

  .small-card-icon i {
    font-size: 2rem;
  }

  .small-card-content {
    padding: 3.5rem 1.5rem 0 1.5rem;
  }

  .small-card-content h3 {
    font-size: 2.2rem;
  }

  .small-card-content p {
    font-size: 1.4rem;
  }

  .platform-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1rem;
  }

  .quote-card {
    padding: 2rem 1.5rem 1.5rem 4rem;
    margin: 2.5rem auto;
  }

  .quote-text {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
  }

  .quote-text::before {
    font-size: 6rem;
    left: -2.8rem;
    top: -0.8rem;
  }

  .quote-author {
    font-size: 1.25rem;
  }

  .quote-role {
    font-size: 1.05rem;
  }

  .magcare-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 2rem 1.5rem;
  }

  .magcare-benefit-item {
    padding: 1.2rem;
  }
}

/* Mobile Portrait (320px - 479px) */
@media (max-width: 479px) {
  .magtek-product-card {
    margin-bottom: 2rem;
  }

  .magtek-card-header {
    padding: 1rem 1.2rem 0.8rem 1.2rem;
  }

  .magtek-card-title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .magtek-card-icon {
    width: 45px;
    height: 45px;
    font-size: 2rem;
  }

  .magtek-card-title-section h3 {
    font-size: 1.8rem;
  }

  .magtek-card-subtitle {
    font-size: 1.2rem;
  }

  .magtek-card-content .row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .magtek-card-content .row > [class*="col-"] {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    padding-left: 0;
    padding-right: 0;
    order: 0;
  }

  .magtek-card-text,
  .magtek-card-image {
    padding: 1.2rem;
    width: 100%;
  }

  .magtek-card-image {
    min-height: 0;
  }

  .magtek-card-text h4 {
    font-size: 1.6rem;
  }

  .magtek-card-text > p {
    font-size: 1.3rem;
  }

  .checkmark-list {
    margin-top: 1.5rem;
  }

  .checkmark-list-item {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    gap: 1rem;
  }

  .checkmark-list-icon {
    font-size: 1.6rem;
  }

  .small-card {
    min-height: 340px;
    margin-bottom: 1.5rem;
  }

  .small-card-image {
    height: 160px;
  }

  .small-card-icon {
    width: 55px;
    height: 55px;
    top: 135px;
  }

  .small-card-icon i {
    font-size: 1.8rem;
  }

  .small-card-content {
    padding: 3rem 1.2rem 0 1.2rem;
  }

  .small-card-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .small-card-content p {
    font-size: 1.3rem;
  }

  .small-card-footer,
  .simple-card-footer {
    padding: 0 1.2rem 2rem 1.2rem;
  }

  .platform-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 1.5rem 0.5rem;
  }

  .quote-card {
    padding: 1.8rem 1.2rem 1.2rem 3.5rem;
    margin: 2rem auto;
  }

  .quote-card::before {
    width: 3px;
  }

  .quote-text {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
  }

  .quote-text::before {
    font-size: 5.5rem;
    left: -2.5rem;
    top: -0.6rem;
  }

  .quote-text::after {
    font-size: 1.8rem;
  }

  .quote-attribution {
    margin-bottom: 1.2rem;
    padding-top: 1.2rem;
  }

  .quote-author {
    font-size: 1.2rem;
  }

  .quote-role {
    font-size: 1rem;
  }

  .magcare-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem 1rem;
  }

  .magcare-benefit-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .magcare-benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 1.8rem;
    margin: 0 auto;
  }

  .magcare-benefit-content h4 {
    font-size: 1.5rem;
  }

  .magcare-benefit-content p {
    font-size: 1.2rem;
  }
}

/* Widescreen (1400px+) */
@media (min-width: 1400px) {
  .magtek-product-card {
    margin-bottom: 5rem;
  }

  .magtek-card-header {
    padding: 2.5rem 4rem 2rem 4rem;
  }

  .magtek-card-text,
  .magtek-card-image {
    padding: 3rem 4rem;
  }

  .quote-card {
    max-width: 850px;
    padding: 3.5rem 3rem 3rem 6rem;
  }

  .quote-text {
    font-size: 2rem;
  }

  .platform-benefits-grid {
    max-width: 1300px;
    gap: 2.5rem;
  }
}
