/* ==========================================
   BroadNet.AI Demo Kiosk - MWC Barcelona 2025
   ========================================== */

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

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0a0a1a 100%);
  min-height: 100vh;
  overflow: hidden;
  color: white;
}

/* ==========================================
   ANIMATED BACKGROUND
   ========================================== */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(99, 179, 237, 0.6);
  border-radius: 50%;
  animation: float 15s infinite;
}

.particle:nth-child(odd) {
  background: rgba(129, 230, 217, 0.5);
}

.particle:nth-child(3n) {
  width: 6px;
  height: 6px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) scale(1);
    opacity: 0;
  }
}

/* ==========================================
   PAGE CONTAINER
   ========================================== */
.page {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
}

.page.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* ==========================================
   LANDING PAGE
   ========================================== */
.logo-container {
  margin-bottom: 50px;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}

.logo-image {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 30px rgba(99, 179, 237, 0.3));
}

.headline {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 25px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.headline .highlight {
  background: linear-gradient(90deg, #63b3ed, #81e6d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.subheadline {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  opacity: 0;
  animation: fadeInUp 1s ease 0.5s forwards;
  font-weight: 500;
}

/* ==========================================
   LANGUAGE SHOWCASE - The Star Animation
   ========================================== */
.language-carousel {
  margin: 40px 0 50px 0;
  opacity: 0;
  animation: fadeIn 1s ease 0.7s forwards;
}

.language-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.typing-container {
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typing-text {
  font-size: 2.2rem;
  font-weight: 600;
  color: #81e6d9;
  border-right: 3px solid #81e6d9;
  padding-right: 10px;
  animation: blink 0.7s infinite;
  text-shadow: 0 0 30px rgba(129, 230, 217, 0.5);
}

@keyframes blink {
  0%, 50% { border-color: #81e6d9; }
  51%, 100% { border-color: transparent; }
}

/* Language flags floating animation */
.language-flags {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.flag-bubble {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  animation: floatBubble 3s ease-in-out infinite;
}

.flag-bubble:nth-child(1) { animation-delay: 0s; }
.flag-bubble:nth-child(2) { animation-delay: 0.2s; }
.flag-bubble:nth-child(3) { animation-delay: 0.4s; }
.flag-bubble:nth-child(4) { animation-delay: 0.6s; }
.flag-bubble:nth-child(5) { animation-delay: 0.8s; }
.flag-bubble:nth-child(6) { animation-delay: 1s; }

@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ==========================================
   CTA BUTTON
   ========================================== */
.cta-button {
  padding: 28px 90px;
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(90deg, #63b3ed, #81e6d9);
  border: none;
  border-radius: 60px;
  color: #0a0a1a;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  animation: fadeInUp 1s ease 0.9s forwards, pulse 2s ease-in-out 2s infinite;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.cta-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 60px rgba(99, 179, 237, 0.6);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(99, 179, 237, 0.3); }
  50% { box-shadow: 0 0 50px rgba(99, 179, 237, 0.6); }
}

/* ==========================================
   BUSINESS STATS
   ========================================== */
.stats {
  display: flex;
  gap: 80px;
  margin-top: 70px;
  opacity: 0;
  animation: fadeIn 1s ease 1.1s forwards;
}

.stat {
  text-align: center;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

.stat:last-child::after {
  display: none;
}

.stat-value {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #63b3ed, #81e6d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 5px;
}

/* ==========================================
   INDUSTRY SELECTOR PAGE
   ========================================== */
.selector-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.industry-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  width: 100%;
}

.industry-card {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-align: left;
}

.industry-card:hover {
  background: rgba(99, 179, 237, 0.08);
  border-color: rgba(99, 179, 237, 0.4);
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 20px rgba(99, 179, 237, 0.15);
}

.industry-card.broadnet {
  margin-top: 20px;
  background: rgba(129, 230, 217, 0.06);
  border-color: rgba(129, 230, 217, 0.2);
  justify-content: center;
  text-align: center;
  padding: 28px 32px;
}

.industry-card.broadnet:hover {
  background: rgba(129, 230, 217, 0.12);
  border-color: rgba(129, 230, 217, 0.5);
  transform: translateX(0) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2), 0 0 25px rgba(129, 230, 217, 0.2);
}

/* Abstract Industry Icons - CSS Only */
.industry-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.industry-icon::before {
  content: '';
  position: absolute;
}

/* Banking - Stacked coins (stability) */
.industry-card[data-industry="banking"] .industry-icon {
  background: linear-gradient(135deg, rgba(72, 187, 120, 0.2), rgba(72, 187, 120, 0.05));
  border: 2px solid rgba(72, 187, 120, 0.3);
}
.industry-card[data-industry="banking"] .industry-icon::before {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(72, 187, 120, 0.8);
  border-radius: 50%;
  box-shadow: 0 6px 0 -1px rgba(72, 187, 120, 0.5), 0 12px 0 -2px rgba(72, 187, 120, 0.3);
}

/* Telecom - Network nodes */
.industry-card[data-industry="telecom"] .industry-icon {
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.2), rgba(99, 179, 237, 0.05));
  border: 2px solid rgba(99, 179, 237, 0.3);
}
.industry-card[data-industry="telecom"] .industry-icon::before {
  width: 10px;
  height: 10px;
  background: rgba(99, 179, 237, 0.9);
  border-radius: 50%;
  box-shadow:
    -14px -8px 0 rgba(99, 179, 237, 0.6),
    14px -8px 0 rgba(99, 179, 237, 0.6),
    0 14px 0 rgba(99, 179, 237, 0.6);
}

/* Retail - Shopping bag */
.industry-card[data-industry="retail"] .industry-icon {
  background: linear-gradient(135deg, rgba(237, 100, 166, 0.2), rgba(237, 100, 166, 0.05));
  border: 2px solid rgba(237, 100, 166, 0.3);
}
.industry-card[data-industry="retail"] .industry-icon::before {
  width: 22px;
  height: 18px;
  border: 3px solid rgba(237, 100, 166, 0.8);
  border-radius: 0 0 6px 6px;
  border-top: none;
  margin-top: 6px;
}
.industry-card[data-industry="retail"] .industry-icon::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 8px;
  border: 3px solid rgba(237, 100, 166, 0.8);
  border-radius: 8px 8px 0 0;
  border-bottom: none;
  margin-bottom: 20px;
}

/* Government - Columns */
.industry-card[data-industry="government"] .industry-icon {
  background: linear-gradient(135deg, rgba(159, 122, 234, 0.2), rgba(159, 122, 234, 0.05));
  border: 2px solid rgba(159, 122, 234, 0.3);
}
.industry-card[data-industry="government"] .industry-icon::before {
  width: 28px;
  height: 4px;
  background: rgba(159, 122, 234, 0.8);
  border-radius: 2px;
  box-shadow:
    -8px 8px 0 0 rgba(159, 122, 234, 0.7),
    0px 8px 0 0 rgba(159, 122, 234, 0.7),
    8px 8px 0 0 rgba(159, 122, 234, 0.7),
    -8px 8px 0 12px rgba(159, 122, 234, 0.5),
    0px 8px 0 12px rgba(159, 122, 234, 0.5),
    8px 8px 0 12px rgba(159, 122, 234, 0.5);
}

/* Utilities - Power/Lightning */
.industry-card[data-industry="utilities"] .industry-icon {
  background: linear-gradient(135deg, rgba(236, 201, 75, 0.2), rgba(236, 201, 75, 0.05));
  border: 2px solid rgba(236, 201, 75, 0.3);
}
.industry-card[data-industry="utilities"] .industry-icon::before {
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 16px solid rgba(236, 201, 75, 0.8);
  margin-bottom: 8px;
}
.industry-card[data-industry="utilities"] .industry-icon::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 16px solid rgba(236, 201, 75, 0.8);
  margin-top: 12px;
  margin-left: 4px;
}

/* BroadNet - Logo placeholder */
.industry-card.broadnet .industry-icon {
  display: none;
}

/* Card Content Layout */
.industry-content {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}

.industry-info {
  flex: 1;
  min-width: 180px;
}

.industry-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.industry-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
}

/* Value Props */
.industry-values {
  display: flex;
  gap: 32px;
  flex: 1.5;
}

.value-prop {
  flex: 1;
}

.value-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 4px;
}

.value-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.4;
}

/* BroadNet Card - Special Layout */
.industry-card.broadnet .industry-content {
  flex-direction: column;
  gap: 8px;
}

.industry-card.broadnet .industry-info {
  min-width: auto;
}

.industry-card.broadnet .industry-name {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #63b3ed, #81e6d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.industry-card.broadnet .industry-values {
  justify-content: center;
}

.industry-card.broadnet .value-text {
  color: rgba(255, 255, 255, 0.6);
}

/* Arrow indicator on hover */
.industry-arrow {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  margin-left: auto;
}

.industry-card:hover .industry-arrow {
  color: rgba(99, 179, 237, 0.8);
  transform: translateX(4px);
}

.industry-card.broadnet .industry-arrow {
  display: none;
}

.back-button {
  margin-top: 50px;
  padding: 16px 40px;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 40px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

/* ==========================================
   INDUSTRY LANDING PAGE
   ========================================== */
.industry-landing {
  max-width: 1000px;
}

.industry-header {
  margin-bottom: 45px;
}

.industry-landing-icon {
  font-size: 5rem;
  margin-bottom: 20px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.industry-landing-name {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.industry-landing-tagline {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.7);
}

.industry-features {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 0.95rem;
}

.feature-badge .icon {
  font-size: 1.2rem;
}

.sample-questions {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 35px;
  margin-bottom: 45px;
}

.sample-questions h3 {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.question-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.question-chip {
  padding: 12px 22px;
  background: rgba(99, 179, 237, 0.08);
  border: 1px solid rgba(99, 179, 237, 0.25);
  border-radius: 30px;
  font-size: 0.9rem;
  color: #63b3ed;
  cursor: pointer;
  transition: all 0.3s ease;
}

.question-chip:hover {
  background: rgba(99, 179, 237, 0.2);
  border-color: #63b3ed;
  transform: translateY(-3px);
}

.question-chip.arabic {
  direction: rtl;
  font-family: 'Inter', 'Segoe UI', Tahoma, sans-serif;
}

.language-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.language-showcase span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}

.lang-flag {
  padding: 10px 18px;
  background: rgba(129, 230, 217, 0.08);
  border: 1px solid rgba(129, 230, 217, 0.25);
  border-radius: 25px;
  font-size: 0.9rem;
  color: #81e6d9;
}

.start-chat-button {
  padding: 26px 90px;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #63b3ed, #81e6d9);
  border: none;
  border-radius: 60px;
  color: #0a0a1a;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s ease-in-out infinite;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.start-chat-button:hover {
  transform: scale(1.06);
  box-shadow: 0 0 50px rgba(99, 179, 237, 0.5);
}

.industry-back-button {
  margin-top: 35px;
  padding: 14px 35px;
  font-size: 0.95rem;
  font-weight: 600;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 40px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-back-button:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
}

/* BroadNet specific styling */
.broadnet-landing .industry-landing-name {
  background: linear-gradient(90deg, #63b3ed, #81e6d9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.broadnet-landing .start-chat-button {
  background: linear-gradient(90deg, #81e6d9, #63b3ed);
}

/* ==========================================
   CHAT PAGE
   ========================================== */
.chat-page {
  padding: 30px;
  justify-content: flex-start;
}

.chat-header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.chat-company {
  display: flex;
  align-items: center;
  gap: 20px;
}

.chat-company-icon {
  font-size: 2.5rem;
}

.chat-company-name {
  font-size: 1.6rem;
  font-weight: 700;
}

.chat-close {
  padding: 12px 30px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.15);
}

.chat-container {
  width: 100%;
  max-width: 1200px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
}

.chat-messages {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.chat-welcome {
  text-align: center;
  padding: 40px;
  color: rgba(255, 255, 255, 0.5);
}

.chat-welcome h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
}

.message {
  max-width: 70%;
  padding: 18px 24px;
  border-radius: 20px;
  font-size: 1.1rem;
  line-height: 1.5;
  animation: messageIn 0.3s ease;
}

@keyframes messageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.message.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #63b3ed, #4299e1);
  color: white;
  border-bottom-right-radius: 5px;
}

.message.bot {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  border-bottom-left-radius: 5px;
}

.message.bot.typing {
  display: flex;
  gap: 8px;
  padding: 20px 30px;
}

.typing-dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite;
}

.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); }
  30% { transform: translateY(-8px); }
}

.chat-input-area {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
}

.chat-input {
  flex: 1;
  padding: 18px 28px;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: white;
  outline: none;
  transition: border-color 0.3s ease;
}

.chat-input:focus {
  border-color: #63b3ed;
}

.chat-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.chat-send {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  background: linear-gradient(90deg, #63b3ed, #81e6d9);
  border: none;
  border-radius: 50px;
  color: #0a0a1a;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.chat-send:hover {
  transform: scale(1.05);
}

.chat-hint {
  padding: 15px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1200px) {
  .headline {
    font-size: 3.5rem;
  }
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .industry-landing-name {
    font-size: 2.5rem;
  }
  .stats {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .industry-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
  }

  .industry-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .industry-values {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .industry-arrow {
    display: none;
  }

  .industry-card.broadnet {
    align-items: center;
  }

  .industry-card.broadnet .industry-content {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: 2.5rem;
  }
  .stats {
    flex-direction: column;
    gap: 30px;
  }
  .stat::after {
    display: none;
  }
  .cta-button {
    padding: 20px 50px;
    font-size: 1.2rem;
  }
  .selector-title {
    font-size: 2rem;
  }
}
