/* ══════════════════════════════════════════════════════════════
   E-COMMERCE & RETAIL - INDUSTRY PAGE STYLES
   ══════════════════════════════════════════════════════════════ */

/* ── Floating Elements Animation ─────────────────────────────── */
.floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.float-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(117, 222, 83, 0.3);
  border-radius: 12px;
  font-size: 28px;
  color: #75DE53;
  animation: float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}

.cart-icon {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.bag-icon {
  top: 60%;
  left: 5%;
  animation-delay: 1s;
}

.credit-icon {
  top: 25%;
  right: 15%;
  animation-delay: 2s;
}

.graph-icon {
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

.mobile-icon {
  top: 70%;
  right: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-30px) rotate(3deg);
  }
}

/* ── Animated Badge ──────────────────────────────────────────── */
.animated-badge {
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(42, 125, 241, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(42, 125, 241, 0);
  }
}

/* ── Hero Section ─────────────────────────────────────────────── */
.industry-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #020509 0%, #0a1628 50%, #020509 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(42, 125, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(117, 222, 83, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232A7DF1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(42, 125, 241, 0.1);
  border: 1px solid rgba(42, 125, 241, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #2A7DF1;
  width: fit-content;
  letter-spacing: 0.5px;
}

.industry-badge i {
  font-size: 18px;
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, #FF6B35 0%, #75DE53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background: linear-gradient(135deg, #FF6B35 0%, #75DE53 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
  50% {
    background: linear-gradient(135deg, #75DE53 0%, #2A7DF1 100%);
    -webkit-background-clip: text;
    background-clip: text;
  }
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #B8C5D6;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(117, 222, 83, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(117, 222, 83, 0.1);
  transform: translateY(-2px);
}

.stat-item i {
  font-size: 20px;
  color: #75DE53;
}

.stat-item span {
  font-size: 14px;
  color: #B8C5D6;
}

.stat-item strong {
  color: #fff;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.5);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── Hero Visual / Mockups ───────────────────────────────────── */
.hero-visual {
  position: relative;
  width: 100%;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.browser-mockup {
  position: absolute;
  top: 0;
  left: 0;
  width: 500px;
  background: #1e293b;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: floatMockup 6s ease-in-out infinite;
}

@keyframes floatMockup {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.browser-header {
  background: #0f172a;
  padding: 12px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-header .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #64748b;
}

.browser-header .dot:nth-child(1) { background: #f87171; }
.browser-header .dot:nth-child(2) { background: #fbbf24; }
.browser-header .dot:nth-child(3) { background: #4ade80; }

.browser-content {
  padding: 30px;
  background: #fff;
  min-height: 400px;
}

.product-showcase {
  animation: fadeInUp 1s ease;
}

.product-card-demo {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.product-img-placeholder {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #75DE53 100%);
  background-size: 200% 200%;
  animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.product-info {
  padding: 20px;
}

.product-line {
  height: 12px;
  background: #e5e7eb;
  border-radius: 4px;
  margin-bottom: 8px;
  width: 80%;
}

.product-line.short {
  width: 50%;
}

.product-price {
  font-size: 24px;
  font-weight: 700;
  color: #FF6B35;
  margin: 16px 0;
}

.add-to-cart-btn {
  background: linear-gradient(135deg, #75DE53 0%, #5BBD3E 100%);
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(117, 222, 83, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(117, 222, 83, 0);
  }
}

.mobile-mockup {
  position: absolute;
  bottom: 40px;
  right: 40px;
  width: 200px;
  height: 400px;
  background: #1e293b;
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: floatMobile 6s ease-in-out infinite 1s;
  z-index: 2;
}

@keyframes floatMobile {
  0%, 100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-20px) rotate(-2deg);
  }
}

.mobile-notch {
  width: 50%;
  height: 20px;
  background: #0f172a;
  margin: 0 auto 8px;
  border-radius: 0 0 12px 12px;
}

.mobile-screen {
  width: 100%;
  height: calc(100% - 28px);
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.mobile-app-demo {
  padding: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-header-bar {
  width: 100%;
  height: 30px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 8px;
}

.mobile-product {
  width: 100%;
  height: 80px;
  background: #f3f4f6;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.mobile-checkout-btn {
  margin-top: auto;
  background: #75DE53;
  color: #fff;
  padding: 14px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

/* ── Metrics Section ─────────────────────────────────────────── */
.industry-metrics {
  background: linear-gradient(180deg, #0a1628 0%, #020509 100%);
  padding: 60px 6%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.metric {
  text-align: center;
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.6s ease;
}

.metric:hover::before {
  left: 100%;
}

.metric:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.metric-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(117, 222, 83, 0.2) 100%);
  border-radius: 16px;
  font-size: 32px;
  color: #FF6B35;
  animation: iconRotate 3s ease infinite;
}

@keyframes iconRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}

.metric strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #FF6B35 0%, #75DE53 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.metric span {
  display: block;
  font-size: 15px;
  color: #B8C5D6;
  font-weight: 500;
}

/* ── Platform Showcase Section ───────────────────────────────── */
.platform-showcase {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fb 0%, #fff 100%);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.platform-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.platform-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 107, 53, 0.05), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.platform-card:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.platform-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  border-color: #FF6B35;
}

.featured-platform {
  border: 2px solid #FF6B35;
  background: linear-gradient(135deg, #fff 0%, #fff5f2 100%);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.platform-logo {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-size: 36px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.shopify-logo {
  background: linear-gradient(135deg, #96bf48 0%, #7ab55c 100%);
  color: #fff;
}

.custom-logo {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
}

.bigcommerce-logo {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  color: #fff;
}

.platform-card:hover .platform-logo {
  transform: scale(1.1) rotate(5deg);
}

.platform-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 12px;
}

.platform-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0 0 24px;
}

.platform-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.platform-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.platform-features i {
  color: #75DE53;
  font-size: 18px;
}

/* ── Conversion Features Section ─────────────────────────────── */
.conversion-features {
  padding: 100px 0;
  background: #fff;
}

.features-showcase {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-content {
  padding: 20px;
}

.feature-icon {
  font-size: 48px;
  color: #FF6B35;
  margin-bottom: 20px;
  display: block;
}

.feature-content h3 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 16px;
}

.feature-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0 0 24px;
}

.feature-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

.feature-points i {
  color: #75DE53;
  font-size: 16px;
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.feature-card-demo {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 24px;
  width: 100%;
  max-width: 400px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
}

.feature-card-demo:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15);
}

/* Cart Demo */
.cart-demo {
  animation: slideInLeft 0.8s ease;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cart-header {
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-header i {
  color: #FF6B35;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 12px;
}

.item-img {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  border-radius: 8px;
}

.item-details {
  flex: 1;
}

.item-name {
  height: 10px;
  background: #d1d5db;
  border-radius: 4px;
  margin-bottom: 8px;
  width: 70%;
}

.item-price {
  height: 10px;
  background: #e5e7eb;
  border-radius: 4px;
  width: 40%;
}

.cart-total {
  font-size: 20px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 20px 0 16px;
  text-align: right;
}

.checkout-btn-demo {
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  animation: pulse 2s ease infinite;
}

/* Recommendations Demo */
.recommendations-demo {
  animation: slideInRight 0.8s ease;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.rec-header {
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rec-header i {
  color: #F7931E;
}

.rec-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rec-product {
  background: #f9fafb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rec-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.rec-img {
  width: 100%;
  height: 80px;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
}

.rec-info {
  padding: 12px;
  font-weight: 700;
  color: #FF6B35;
  text-align: center;
}

/* Analytics Demo */
.analytics-demo {
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.analytics-header {
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.analytics-header i {
  color: #75DE53;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 120px;
  gap: 8px;
  margin-bottom: 24px;
}

.bar {
  flex: 1;
  background: linear-gradient(180deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 8px 8px 0 0;
  animation: barGrow 1s ease forwards;
  transform-origin: bottom;
}

@keyframes barGrow {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}

.bar:nth-child(2) { animation-delay: 0.1s; }
.bar:nth-child(3) { animation-delay: 0.2s; }
.bar:nth-child(4) { animation-delay: 0.3s; }
.bar:nth-child(5) { animation-delay: 0.4s; }

.analytics-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: #f9fafb;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
}

.stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Section Styles ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section.light {
  background: #f8f9fb;
}

.section.dark {
  background: linear-gradient(135deg, #020509 0%, #0a1628 100%);
  color: #fff;
}

.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FF6B35;
  margin-bottom: 16px;
}

.head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.section.light .head h2 {
  color: #0D1B2A;
}

.section.dark .head h2 {
  color: #fff;
}

.head p {
  font-size: 18px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

.section.dark .head p {
  color: #B8C5D6;
}

/* ── Challenges Grid ─────────────────────────────────────────── */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.challenge-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
  border-color: #FF6B35;
}

.challenge-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(117, 222, 83, 0.1) 100%);
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 28px;
  color: #FF6B35;
}

.challenge-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 12px;
}

.challenge-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

/* ── Solutions Grid ──────────────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #FF6B35;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.2);
}

.solution-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  border-radius: 12px;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
}

.solution-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
}

.solution-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: #B8C5D6;
  margin: 0 0 24px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #B8C5D6;
}

.solution-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(255, 107, 53, 0.2);
  color: #FF6B35;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Technology Categories ───────────────────────────────────── */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tech-category {
  background: #fff;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tech-category:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #FF6B35;
}

.tech-category h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-category h3 i {
  color: #FF6B35;
  font-size: 22px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(117, 222, 83, 0.08) 100%);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #FF6B35;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(117, 222, 83, 0.15) 100%);
  transform: translateY(-2px);
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1628 0%, #020509 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  opacity: 0.5;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #B8C5D6;
  margin: 0 0 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.in {
  opacity: 1;
}

.reveal.up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.up.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.left {
  opacity: 0;
  transform: translateX(-40px);
}

.reveal.left.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.right {
  opacity: 0;
  transform: translateX(40px);
}

.reveal.right.in {
  opacity: 1;
  transform: translateX(0);
}

.reveal.fade {
  opacity: 0;
}

.reveal.fade.in {
  opacity: 1;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal-group.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.in > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.6s; }

/* ── Responsive Design ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    height: 500px;
  }

  .browser-mockup {
    width: 400px;
  }

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr;
  }

  .feature-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .industry-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .floating-elements {
    display: none;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 16px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-item {
    width: 100%;
  }

  .hero-visual {
    height: 400px;
  }

  .browser-mockup {
    width: 300px;
  }

  .mobile-mockup {
    width: 150px;
    height: 300px;
    bottom: 20px;
    right: 20px;
  }

  .industry-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 4%;
  }

  .section {
    padding: 60px 0;
  }

  .platforms-grid,
  .challenges-grid,
  .solutions-grid,
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .features-showcase {
    gap: 60px;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0 4%;
  }

  .hero-visual {
    height: 300px;
  }

  .browser-mockup {
    width: 250px;
  }

  .mobile-mockup {
    display: none;
  }

  .industry-metrics {
    grid-template-columns: 1fr;
  }

  .metric strong {
    font-size: 2rem;
  }

  .challenge-card,
  .solution-card,
  .tech-category,
  .platform-card {
    padding: 30px 24px;
  }

  .feature-card-demo {
    max-width: 100%;
  }

  .rec-products {
    grid-template-columns: 1fr;
  }
}

.industry-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #020509 0%, #0a1628 50%, #020509 100%);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(42, 125, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(117, 222, 83, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232A7DF1' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.industry-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(42, 125, 241, 0.1);
  border: 1px solid rgba(42, 125, 241, 0.3);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: #2A7DF1;
  width: fit-content;
  letter-spacing: 0.5px;
}

.industry-badge i {
  font-size: 18px;
}

.hero-content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin: 0;
}

.hero-content h1 .accent {
  background: linear-gradient(135deg, #75DE53 0%, #2A7DF1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: #B8C5D6;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2A7DF1 0%, #1E5FBD 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(42, 125, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(42, 125, 241, 0.5);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-industry-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
}

/* ── Metrics Section ─────────────────────────────────────────── */
.industry-metrics {
  background: linear-gradient(180deg, #0a1628 0%, #020509 100%);
  padding: 60px 6%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.metric {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.metric:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(117, 222, 83, 0.3);
  transform: translateY(-4px);
}

.metric strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, #75DE53 0%, #2A7DF1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.metric span {
  display: block;
  font-size: 16px;
  color: #B8C5D6;
  font-weight: 500;
}

/* ── Section Styles ──────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
}

.section.light {
  background: #f8f9fb;
}

.section.dark {
  background: linear-gradient(135deg, #020509 0%, #0a1628 100%);
  color: #fff;
}

.page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 6%;
}

.head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.kicker {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2A7DF1;
  margin-bottom: 16px;
}

.head h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.section.light .head h2 {
  color: #0D1B2A;
}

.section.dark .head h2 {
  color: #fff;
}

.head p {
  font-size: 18px;
  line-height: 1.7;
  color: #6B7280;
  margin: 0;
}

.section.dark .head p {
  color: #B8C5D6;
}

/* ── Challenges Grid ─────────────────────────────────────────── */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.challenge-card {
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(117, 222, 83, 0.15);
  border-color: #75DE53;
}

.challenge-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(117, 222, 83, 0.1) 0%, rgba(42, 125, 241, 0.1) 100%);
  border-radius: 12px;
  margin-bottom: 24px;
  font-size: 28px;
  color: #75DE53;
}

.challenge-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 12px;
}

.challenge-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6B7280;
  margin: 0;
}

/* ── Solutions Grid ──────────────────────────────────────────── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.solution-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.solution-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: #75DE53;
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(117, 222, 83, 0.2);
}

.solution-card-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.solution-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #75DE53 0%, #5BBD3E 100%);
  border-radius: 12px;
  font-size: 26px;
  color: #fff;
  flex-shrink: 0;
}

.solution-card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin: 4px 0 0;
}

.solution-card > p {
  font-size: 16px;
  line-height: 1.7;
  color: #B8C5D6;
  margin: 0 0 24px;
}

.solution-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #B8C5D6;
}

.solution-features li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(117, 222, 83, 0.2);
  color: #75DE53;
  border-radius: 50%;
  font-weight: 700;
  font-size: 12px;
  flex-shrink: 0;
}

/* ── Technology Categories ───────────────────────────────────── */
.tech-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.tech-category {
  background: #fff;
  padding: 36px 32px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.tech-category:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: #75DE53;
}

.tech-category h3 {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0D1B2A;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tech-category h3 i {
  color: #75DE53;
  font-size: 22px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(117, 222, 83, 0.08) 0%, rgba(42, 125, 241, 0.08) 100%);
  border: 1px solid rgba(117, 222, 83, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #75DE53;
  transition: all 0.2s ease;
}

.tech-tag:hover {
  background: linear-gradient(135deg, rgba(117, 222, 83, 0.15) 0%, rgba(42, 125, 241, 0.15) 100%);
  transform: translateY(-2px);
}

/* ── CTA Section ─────────────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0a1628 0%, #020509 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(117, 222, 83, 0.15) 0%, transparent 70%);
  opacity: 0.5;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 20px;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #B8C5D6;
  margin: 0 0 40px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Reveal Animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transition: all 0.8s ease;
}

.reveal.in {
  opacity: 1;
}

.reveal.up {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.up.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal.fade {
  opacity: 0;
}

.reveal.fade.in {
  opacity: 1;
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal-group.in > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group.in > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-group.in > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-group.in > *:nth-child(6) { transition-delay: 0.6s; }

/* ── Responsive Design ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-image-wrapper {
    order: -1;
  }

  .hero-industry-img {
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .industry-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-desc {
    font-size: 16px;
  }

  .industry-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 40px 4%;
  }

  .section {
    padding: 60px 0;
  }

  .challenges-grid,
  .solutions-grid,
  .tech-categories {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .page {
    padding: 0 4%;
  }

  .industry-metrics {
    grid-template-columns: 1fr;
  }

  .metric strong {
    font-size: 2rem;
  }

  .challenge-card,
  .solution-card,
  .tech-category {
    padding: 30px 24px;
  }
}
