/* ==========================================================================
   WISTERRA COMPONENTS STYLESHEET
   Premium Custom UI Elements: Buttons, Glass Cards, Modals, Forms & Calculators
   ========================================================================== */

@import url('./variables.css');

/* --------------------------------------------------------------------------
   1. PREMIUM BUTTONS & CALL-TO-ACTIONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  outline: none;
}

/* Primary Accent Gold Button */
.btn-gold {
  background: var(--accent-gold);
  color: var(--secondary-navy-dark);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  transform: translateY(-2px);
  background: var(--accent-gold-hover);
  box-shadow: var(--shadow-md);
}

/* Primary Corporate Emerald Button */
.btn-emerald {
  background: var(--primary-emerald);
  color: var(--neutral-white);
  box-shadow: var(--shadow-sm);
}

.btn-emerald:hover {
  background: var(--primary-emerald-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Outline Emerald Button */
.btn-outline {
  background: transparent;
  color: var(--primary-emerald);
  border: 1.5px solid var(--primary-emerald);
  padding: 0.75rem 1.85rem;
}

.btn-outline:hover {
  background: var(--primary-emerald-light);
  transform: translateY(-1px);
}

/* White Glass button for dark overlays */
.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: var(--neutral-white);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: var(--border-glass-light);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Small button variant */
.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   2. LUXURY GLASS CARDS
   -------------------------------------------------------------------------- */
.glass-card {
  background: var(--neutral-white);
  border: var(--border-hairline);
  border-radius: var(--radius-md);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  background: var(--neutral-white);
  border-color: rgba(15, 118, 110, 0.12);
}

/* Dark variant glass card */
.glass-card-dark {
  background: rgba(11, 17, 32, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg);
}

.glass-card-dark:hover {
  background: rgba(11, 17, 32, 0.85);
  border-color: rgba(212, 175, 55, 0.2);
}

/* Icon box within cards */
.icon-box {
  width: 55px;
  height: 55px;
  background: var(--primary-emerald-light);
  border: 1px solid var(--border-emerald);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--primary-emerald);
  transition: var(--transition-normal);
}

.glass-card:hover .icon-box {
  background: var(--primary-emerald);
  color: var(--neutral-white);
  transform: none;
}

.glass-card-dark .icon-box {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-subtle);
  color: var(--accent-gold);
}

.glass-card-dark:hover .icon-box {
  background: var(--accent-gold);
  color: var(--secondary-navy);
}

/* Card Titles */
.card-title {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  transition: var(--transition-fast);
}

.glass-card-dark .card-title {
  color: var(--neutral-white);
}

.glass-card:hover .card-title {
  color: var(--primary-emerald);
}

.glass-card-dark:hover .card-title {
  color: var(--accent-gold);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-emerald);
}

.card-link svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-fast);
}

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

.glass-card-dark .card-link {
  color: var(--accent-gold);
}

/* --------------------------------------------------------------------------
   3. PREMIUM LEAD FORMS & INPUT FIELDS
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xxs);
}

.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-navy-light);
}

.glass-card-dark .form-label {
  color: rgba(255, 255, 255, 0.9);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-md);
  color: var(--neutral-text-dark);
  outline: none;
  transition: var(--transition-fast);
}

.glass-card-dark .form-input,
.glass-card-dark .form-select,
.glass-card-dark .form-textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--neutral-white);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-emerald);
  box-shadow: 0 0 0 3px rgba(10, 92, 85, 0.08);
  background: var(--neutral-white);
}

.glass-card-dark .form-input:focus,
.glass-card-dark .form-select:focus,
.glass-card-dark .form-textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.08);
  background: rgba(11, 17, 32, 0.8);
}

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

/* Category Selection Grid Chips */
.form-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.chip-label {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.65rem var(--space-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.chip-label:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--neutral-white);
}

.chip-input {
  display: none;
}

.chip-input:checked + .chip-label {
  background: rgba(10, 92, 85, 0.08);
  border-color: var(--primary-emerald);
  color: var(--primary-emerald);
  font-weight: 600;
  box-shadow: none;
}

/* --------------------------------------------------------------------------
   4. FULL GLASS OVERLAY MODALS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: var(--blur-glass-heavy);
  -webkit-backdrop-filter: var(--blur-glass-heavy);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
  padding: var(--space-xl);
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: rgba(11, 17, 32, 0.95);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-3xl);
  position: relative;
  box-shadow: var(--shadow-premium);
  transform: scale(0.9);
  transition: var(--transition-smooth);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--neutral-text-light);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

/* --------------------------------------------------------------------------
   5. INTERACTIVE ROI CALCULATOR
   -------------------------------------------------------------------------- */
.calculator-widget {
  background: rgba(11, 17, 32, 0.9);
  border: var(--border-gold-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl);
  color: var(--neutral-white);
  box-shadow: var(--shadow-premium);
}

.slider-container {
  margin-bottom: var(--space-2xl);
}

.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.slider-label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-gold);
}

.slider-value {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--neutral-white);
}

.range-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--accent-gold);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--neutral-white);
}

/* Calculator Grid showing output values */
.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-2xl);
}

.calc-result-card {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.calc-result-card:hover {
  border-color: rgba(15, 118, 110, 0.3);
  background: rgba(15, 118, 110, 0.05);
  transform: translateY(-3px);
}

.calc-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-emerald);
  margin-bottom: var(--space-xs);
  font-feature-settings: "tnum";
}

.calc-result-card:nth-child(2) .calc-number {
  color: var(--accent-gold);
}

.calc-number-suffix {
  font-size: 1.15rem;
  font-weight: 600;
}

.calc-text {
  font-size: 0.85rem;
  color: var(--neutral-text-light);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   6. PREMIUM TIMELINE DESIGN
   -------------------------------------------------------------------------- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}

/* Timeline center line structure */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-emerald) 0%, var(--accent-gold) 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: var(--space-xl) var(--space-3xl);
  box-sizing: border-box;
}

/* Alternate items left and right */
.timeline-item-left {
  left: 0;
  text-align: right;
}

.timeline-item-right {
  left: 50%;
  text-align: left;
}

/* Timeline bullet points */
.timeline-bullet {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background: var(--secondary-navy-dark);
  border: 3px solid var(--primary-emerald);
  border-radius: var(--radius-full);
  z-index: 10;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

.timeline-item-left .timeline-bullet {
  right: -12px;
}

.timeline-item-right .timeline-bullet {
  left: -12px;
}

.timeline-item:nth-child(even) .timeline-bullet {
  border-color: var(--accent-gold);
}

.timeline-item:hover .timeline-bullet {
  transform: translateY(-50%) scale(1.15);
  background: var(--neutral-white);
  box-shadow: 0 2px 8px rgba(10, 92, 85, 0.2);
}

.timeline-item:nth-child(even):hover .timeline-bullet {
  box-shadow: 0 2px 8px rgba(197, 160, 89, 0.3);
}

/* Timeline step label badge */
.timeline-step {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-emerald);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.timeline-item:nth-child(even) .timeline-step {
  color: var(--accent-gold);
}

.timeline-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-navy);
  margin-bottom: var(--space-sm);
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--neutral-text-gray);
  max-width: 420px;
  display: inline-block;
}

/* Custom CSS to reverse elements on smaller mobile systems */
@media (max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: var(--space-md);
    text-align: left;
  }
  .timeline-item-left, .timeline-item-right {
    left: 0;
  }
  .timeline-item-left .timeline-bullet,
  .timeline-item-right .timeline-bullet {
    left: 18px;
    right: auto;
  }
  .timeline-desc {
    max-width: 100%;
  }
  .calc-results-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ==========================================================================
   7. TRUST LOGO WALL & COMPLIANCE BADGES
   ========================================================================== */
.logo-wall-container {
  padding: var(--space-xl) 0;
  text-align: center;
}

.logo-wall-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neutral-text-gray);
  margin-bottom: var(--space-xl);
}

.logo-wall-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
  opacity: 0.65;
  transition: var(--transition-normal);
}

.logo-wall-grid:hover {
  opacity: 1;
}

.logo-wall-item {
  height: 35px;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: var(--transition-fast);
}

.logo-wall-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.compliance-badge-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-2xl);
}

.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.5rem var(--space-lg);
  background: var(--neutral-bg-light);
  border: 1px solid rgba(10, 92, 85, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary-emerald);
  box-shadow: var(--shadow-sm);
}

.compliance-badge svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
}

.compliance-badge-dark {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--neutral-white);
}

/* ==========================================================================
   8. CONVERSION TRUST MICROCOPY & URGENCY INDICATORS
   ========================================================================== */
.trust-microcopy {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--neutral-text-gray);
  margin-top: var(--space-sm);
  text-align: center;
}

.glass-card-dark .trust-microcopy {
  color: var(--neutral-text-light);
}

.urgency-banner {
  background: var(--accent-gold-light);
  border: 1px solid var(--accent-gold-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-xl);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-navy);
}

.urgency-pulse-dot {
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: var(--radius-full);
  display: inline-block;
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

/* ==========================================================================
   9. PREMIUM COMPARISON GRID SYSTEM (WISTERRA vs TRADITIONAL AGENCIES)
   ========================================================================== */
.comparison-container {
  margin-top: var(--space-3xl);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr;
  background: var(--neutral-white);
  border: var(--border-hairline);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comp-header {
  background: var(--secondary-navy-dark);
  color: var(--neutral-white);
  padding: var(--space-lg) var(--space-xl);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.comp-header-highlight {
  background: var(--primary-emerald);
  color: var(--neutral-white);
  justify-content: center;
}

.comp-header-secondary {
  background: #1E293B;
  justify-content: center;
  color: var(--neutral-text-light);
}

.comp-row {
  display: contents;
}

.comp-cell {
  padding: var(--space-lg) var(--space-xl);
  border-bottom: var(--border-hairline);
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  color: var(--neutral-text-gray);
  background: var(--neutral-white);
}

.comp-feature {
  font-weight: 600;
  color: var(--secondary-navy);
}

.comp-cell-highlight {
  justify-content: center;
  background: rgba(15, 118, 110, 0.02);
  font-weight: 700;
  color: var(--primary-emerald);
  border-left: 1px solid rgba(15, 118, 110, 0.05);
  border-right: 1px solid rgba(15, 118, 110, 0.05);
}

.comp-cell-secondary {
  justify-content: center;
}

.comp-cell svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.comp-cell-highlight svg {
  color: var(--primary-emerald);
}

.comp-cell-secondary svg {
  color: #EF4444;
}

@media (max-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr;
  }
  .comp-header-secondary, .comp-cell-secondary {
    display: none; /* Hide traditional agency on small viewports */
  }
  .comp-header-highlight, .comp-cell-highlight {
    border: none;
  }
  .comp-cell {
    padding: var(--space-md);
  }
  .comp-feature {
    background: var(--neutral-bg-light);
    border-top: 1px solid rgba(15, 118, 110, 0.1);
  }
}

/* ==========================================================================
   10. PREMIUM INTERACTIVE FAQ ACCORDIONS
   ========================================================================== */
.faq-accordion-group {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-accordion-item {
  border: var(--border-hairline);
  border-radius: var(--radius-md);
  background: var(--neutral-white);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-accordion-item[open] {
  border-color: rgba(10, 92, 85, 0.2);
  box-shadow: var(--shadow-sm);
}

.faq-summary {
  padding: var(--space-lg) var(--space-xl);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--secondary-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
}

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

.faq-icon-arrow {
  width: 20px;
  height: 20px;
  color: var(--primary-emerald);
  transition: var(--transition-fast);
}

.faq-accordion-item[open] .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-answer-content {
  padding: 0 var(--space-xl) var(--space-lg);
  color: var(--neutral-text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  animation: slide-faq 0.3s ease-out forwards;
}

@keyframes slide-faq {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   11. MULTI-STEP RFQ WIDGET LAYOUTS
   ========================================================================== */
.rfq-step-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: var(--space-2xl);
  padding: 0 var(--space-md);
}

.rfq-step-bar::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
  transform: translateY(-50%);
}

.rfq-step-progress-line {
  position: absolute;
  top: 50%;
  left: 0;
  height: 2px;
  background: var(--accent-gold);
  z-index: 2;
  transform: translateY(-50%);
  width: 0%;
  transition: var(--transition-normal);
}

.rfq-step-node {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background: var(--secondary-navy-dark);
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neutral-text-light);
  position: relative;
  z-index: 3;
  transition: var(--transition-normal);
}

.rfq-step-node.active {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: var(--secondary-navy-light);
  box-shadow: var(--shadow-gold-soft);
}

.rfq-step-node.completed {
  border-color: var(--primary-emerald);
  background: var(--primary-emerald);
  color: var(--neutral-white);
}

.rfq-tab-panel {
  display: none;
}

.rfq-tab-panel.active {
  display: block;
  animation: fadeIn 0.4s ease-out forwards;
}

.rfq-navigation-actions {
  display: flex;
  justify-content: space-between;
  margin-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-xl);
}

/* ==========================================================================
   12. FROSTED EXIT INTENT POPUP MODAL
   ========================================================================== */
.exit-intent-modal {
  max-width: 650px !important;
}

.exit-intent-header-visual {
  background: linear-gradient(135deg, var(--secondary-navy) 0%, var(--primary-emerald) 100%);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  padding: var(--space-xl) var(--space-2xl);
  text-align: center;
  color: var(--neutral-white);
  border-bottom: 3px solid var(--accent-gold);
}

.exit-intent-header-visual svg {
  width: 45px;
  height: 45px;
  color: var(--accent-gold);
  margin-bottom: var(--space-xs);
}

/* ==========================================================================
   13. PREMIUM INDUSTRY TILES
   ========================================================================== */
.industry-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.industry-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md); /* 6px border-radius */
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  z-index: 1;
}

.industry-tile .tile-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -2;
}

.industry-tile .tile-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.1) 0%, rgba(3, 7, 18, 0.4) 40%, rgba(3, 7, 18, 0.95) 100%);
  transition: background 0.4s ease;
  z-index: -1;
}

.industry-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.industry-tile:hover .tile-bg {
  transform: scale(1.06);
}

.industry-tile:hover .tile-overlay {
  background: linear-gradient(180deg, rgba(3, 7, 18, 0.05) 0%, rgba(3, 7, 18, 0.3) 30%, rgba(3, 7, 18, 0.98) 100%);
}

.tile-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.tile-stat-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.3);
  color: var(--accent-gold);
  border-radius: var(--radius-xs);
  margin-bottom: var(--space-sm);
  transition: var(--transition-normal);
}

.industry-tile:hover .tile-stat-badge {
  background: var(--accent-gold);
  color: var(--secondary-navy-dark);
  border-color: var(--accent-gold);
}

.tile-title {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neutral-white);
  margin-bottom: var(--space-xs);
}

.tile-desc {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: color 0.3s ease;
}

.industry-tile:hover .tile-desc {
  color: rgba(255, 255, 255, 0.9);
}

