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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  background: #000;
  color: #fff;
  min-height: 100vh;
}

/* ========== Header ========== */
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 32px 0;
  z-index: 1000;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.header-logo {
  justify-self: start;
}

.header-logo h1 {
  font-family: 'Righteous', cursive;
  font-size: 26px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  opacity: 0.95;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-self: center;
}

.header-controls {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header-nav a:hover {
  color: #fff;
}

.header-nav-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

.user-icon-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.user-icon-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

#selectedFlag {
  font-size: 20px;
  line-height: 1;
}

.language-wrapper {
  position: relative;
  display: inline-block;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 200px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.language-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 18px;
  background: transparent !important;
  border: none;
  color: #f1f5f9 !important;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(14, 165, 233, 0.2) !important;
  color: #ffffff !important;
}

.language-flag {
  font-size: 22px;
  line-height: 1;
  width: 28px;
  text-align: center;
}

.language-name {
  flex: 1;
  font-weight: 500;
}

.header-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile navigation icon - hidden on desktop */
.mobile-nav-icon {
  display: none;
}

@media (max-width: 768px) {
  .mobile-nav-icon {
    display: flex;
  }
}

/* Responsive */
@media (max-width: 968px) {
  .header-content {
    grid-template-columns: auto 1fr;
  }

  .header-nav {
    justify-self: end;
    gap: 24px;
  }

  .header-controls {
    grid-column: 2;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 24px 0;
  }

  .header-content {
    display: flex;
    justify-content: space-between;
  }

  .header-nav a {
    display: none;
  }

  .header-logo h1 {
    font-size: 24px;
  }

  /* Hide nav divider on mobile (between logo and icons) */
  .header-nav-divider {
    display: none;
  }

  /* Make hero titles BIGGER on mobile */
  .hero-title {
    font-size: 2.8rem !important;
  }
}

/* ========== Hero Section ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 32px 120px;
  background: #000;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background:
    radial-gradient(ellipse 800px 600px at 50% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(96, 165, 250, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(147, 197, 253, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
  background-size: 50px 50px;
  opacity: 1;
  animation: gridMove 25s linear infinite;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.hero-content {
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.hero-title {
  font-family: 'Inter Tight', 'Inter', -apple-system, system-ui, sans-serif;
  font-size: clamp(2rem, 5vw + 0.5rem, 4.8rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;

  /* ✨ Crucial fixes for long translated text */
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  hyphens: auto;
  max-width: min(90%, 950px);
}

.hero-subtitle {
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  line-height: 1.6;
  max-width: 600px;
  margin: 0;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-cta {
  padding: 18px 56px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

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

/* Fix for hero title overflow on smaller widths / long translations */
.hero-content {
  width: 100%;
  max-width: 90vw;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.hero-title {
  display: inline-block; /* prevent flex from forcing it too wide */
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-align: center;
  margin: 0 auto;
  white-space: normal !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100%;
  width: auto;
  hyphens: auto;
  box-sizing: border-box;
}

/* Responsive */
@media (max-width: 968px) {
  .hero {
    padding: 140px 32px 100px;
  }

  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 100dvh;
    padding: 120px 24px 120px;
  }

  .hero-content {
    gap: 20px;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-cta {
    padding: 12px 36px;
    font-size: 14px;
  }

  .scroll-indicator {
    bottom: 40px;
  }
}

/* ========== Scroll Indicator ========== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 10;
}

.scroll-indicator:hover,
.scroll-indicator:visited,
.scroll-indicator:active,
.scroll-indicator:focus {
  color: rgba(255, 255, 255, 0.8) !important;
  transform: translateY(4px);
  text-decoration: none;
}

.scroll-indicator svg {
  color: rgba(255, 255, 255, 0.5);
}

.scroll-indicator:hover svg {
  color: rgba(255, 255, 255, 0.8);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ========== AI Platforms Section ========== */
.platforms-section {
  background: #0a0a0a;
  padding: 120px 32px;
}

.platforms-container {
  max-width: 1200px;
  margin: 0 auto;
}

.platforms-header {
  text-align: left;
  margin-bottom: 80px;
}

.platforms-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.title-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 100%
  );
}

.platforms-tagline {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 600px;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  column-gap: 0;
  row-gap: 0;
}

.platform-item {
  position: relative;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 28px;
  transition: all 0.3s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.platform-item:hover {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 30, 30, 0.3);
}

.platform-item::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  background:
    radial-gradient(circle, #fff 4px, transparent 4px) 0 0 / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 100% 0 / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 0 100% / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 100% 100% / 8px 8px no-repeat;
  pointer-events: none;
}

.platform-item:hover::before {
  opacity: 1;
}

.platform-item::after {
  display: none;
}

.platform-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  display: block;
}

.platform-icon[alt="Meta AI"],
.platform-icon[alt="Claude"],
.platform-icon[alt="Grok"],
.platform-icon[alt="Perplexity"] {
  width: 36px;
  height: 48px;
}

.platform-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  padding: 4px 8px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #999;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.platform-badge.live {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.platform-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.platform-description {
  font-size: 14px;
  line-height: 1.5;
  color: #999;
  margin: 0;
}

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

@media (max-width: 640px) {
  .platforms-section {
    padding: 80px 24px;
  }

  .platforms-grid {
    grid-template-columns: 1fr;
  }

  .platforms-tagline {
    font-size: 24px;
  }

  .platforms-title {
    font-size: 12px;
    justify-content: center;
  }

  .platforms-header {
    text-align: center;
  }

  .platform-item::before {
    opacity: 0.4;
  }

  .platform-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 30, 0.2);
  }
}

/* ========== How It Works Section ========== */
.how-it-works-section {
  background: #000;
  padding: 120px 32px;
}

.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.how-it-works-header {
  text-align: left;
  margin-bottom: 80px;
}

.how-it-works-title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
}

.how-it-works-tagline {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  max-width: 600px;
  white-space: nowrap;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  column-gap: 0;
  row-gap: 0;
}

.how-it-works-item {
  position: relative;
  background: transparent;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  border-bottom: 1px solid transparent;
  padding: 32px;
  transition: all 0.3s ease;
  min-height: 240px;
  display: flex;
  flex-direction: column;
}

.how-it-works-item:hover {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 30, 30, 0.3);
}

.how-it-works-item::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  background:
    radial-gradient(circle, #fff 4px, transparent 4px) 0 0 / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 100% 0 / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 0 100% / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 100% 100% / 8px 8px no-repeat;
  pointer-events: none;
}

.how-it-works-item:hover::before {
  opacity: 1;
}

.step-number {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.how-it-works-name {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.how-it-works-description {
  font-size: 15px;
  line-height: 1.6;
  color: #999;
  margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .how-it-works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .how-it-works-section {
    padding: 80px 24px;
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }

  .how-it-works-tagline {
    font-size: 24px;
    white-space: normal;
  }

  .how-it-works-title {
    font-size: 12px;
    justify-content: center;
  }

  .how-it-works-header {
    text-align: center;
  }

  .how-it-works-item::before {
    opacity: 0.4;
  }

  .how-it-works-item {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(30, 30, 30, 0.2);
  }
}

/* ========== ChatGPT Showcase Section ========== */
.chatgpt-showcase {
  background: #0a0a0a;
  padding: 120px 32px;
}

.chatgpt-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chatgpt-showcase-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.chatgpt-showcase-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.chatgpt-showcase-description {
  font-size: 18px;
  line-height: 1.6;
  color: #999;
  margin: 0;
}

.chatgpt-showcase-cta {
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 16px;
  align-self: flex-start;
}

.chatgpt-showcase-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.chatgpt-showcase-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 400px;
  margin: 0 auto;
}

.chatgpt-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 968px) {
  .chatgpt-showcase-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .chatgpt-showcase-title {
    font-size: 36px;
  }

  .chatgpt-showcase-description {
    font-size: 16px;
  }
}

@media (max-width: 640px) {
  .chatgpt-showcase {
    padding: 80px 24px;
  }

  .chatgpt-showcase-title {
    font-size: 32px;
    text-align: center;
  }

  .chatgpt-showcase-description {
    font-size: 15px;
    text-align: center;
  }

  .chatgpt-showcase-content {
    align-items: center;
  }

  .chatgpt-showcase-cta {
    align-self: center;
  }
}

/* ========== Industries Section ========== */
.industries-section {
  background: #000;
  padding: 120px 32px;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header {
  text-align: center;
  margin-bottom: 80px;
}

.industries-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px 0;
}

.industries-tagline {
  font-size: 18px;
  line-height: 1.6;
  color: #999;
  max-width: 600px;
  margin: 0 auto;
}

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

.industry-card {
  position: relative;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.industry-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.industry-card:hover img {
  transform: scale(1.1);
}

.industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: all 0.4s ease;
  border-radius: 16px;
}

.industry-card:hover .industry-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.65) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
}

.industry-name {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  z-index: 1;
  transition: all 0.35s ease;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.industry-card:hover .industry-name {
  opacity: 0;
}

.industry-description {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  padding: 0 48px;
  text-align: center;
  width: 100%;
  max-width: none;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.industry-card:hover .industry-description {
  opacity: 1;
}

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

  .industries-title {
    font-size: 36px;
  }

  .industries-tagline {
    font-size: 16px;
  }

  .industry-card {
    height: 350px;
  }

  .industry-overlay {
    padding: 28px;
  }

  .industry-name {
    font-size: 26px;
  }

  .industry-description {
    font-size: 14px;
    padding: 0 32px;
    line-height: 1.65;
  }
}

@media (max-width: 640px) {
  .industries-section {
    padding: 80px 24px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .industries-title {
    font-size: 32px;
  }

  .industries-tagline {
    font-size: 15px;
  }

  .industry-card {
    height: 300px;
    cursor: default;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }

  .industry-card:focus {
    outline: none;
  }

  .industry-overlay {
    padding: 24px;
  }

  .industry-name {
    font-size: 22px;
  }

  .industry-description {
    font-size: 13px;
    padding: 0 24px;
    line-height: 1.6;
    font-weight: 500;
  }

  /* Active card (centered in viewport) */
  .industry-card.active .industry-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.65) 50%,
      rgba(0, 0, 0, 0.35) 100%
    );
  }

  .industry-card.active .industry-name {
    opacity: 0;
  }

  .industry-card.active .industry-description {
    opacity: 1;
  }

  .industry-card.active img {
    transform: scale(1.05);
  }
}

/* ========== FAQ Section ========== */
.faq-section {
  background: #0a0a0a;
  padding: 120px 32px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  margin: 0 0 80px 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  background: transparent;
  transition: all 0.3s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:hover {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(30, 30, 30, 0.3);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  background:
    radial-gradient(circle, #fff 4px, transparent 4px) 0 0 / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 100% 0 / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 0 100% / 8px 8px no-repeat,
    radial-gradient(circle, #fff 4px, transparent 4px) 100% 100% / 8px 8px no-repeat;
  pointer-events: none;
  z-index: 1;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: rgba(255, 255, 255, 0.8);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 32px 24px 32px;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #999;
}

/* Responsive */
@media (max-width: 640px) {
  .faq-section {
    padding: 80px 24px;
  }

  .faq-title {
    font-size: 32px;
    margin-bottom: 48px;
  }

  .faq-question {
    font-size: 16px;
    padding: 20px 24px;
  }

  .faq-answer p {
    font-size: 15px;
    padding: 0 24px 20px 24px;
  }

  .faq-icon {
    font-size: 20px;
  }
}

/* ========== Floating Banner ========== */
.floating-banner {
  padding: 0 32px;
  margin: 80px 0;
}

.banner-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 350px;
  margin: 0 auto;
  border-radius: 24px;
  background-image: url('images/unsplash-background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: all 0.4s ease;
  cursor: pointer;
}

.banner-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
}

.banner-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
  transition: background 0.4s ease;
}

.banner-wrapper:hover::before {
  background: rgba(0, 0, 0, 0.35);
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.banner-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.banner-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.banner-cta {
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .floating-banner {
    bottom: 500px;
    height: 250px;
  }

  .banner-content h2 {
    font-size: 32px;
  }

  .banner-content p {
    font-size: 16px;
  }
}

/* ========== Footer ========== */
.footer {
  position: relative;
  background: #0a0a0a;
  padding: 48px 0 24px;
}

.footer-divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    transparent 10%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0.15) 70%,
    transparent 90%,
    transparent 100%
  );
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* Logo & Brand */
.footer-brand {
  max-width: 280px;
}

.footer-logo {
  font-family: 'Righteous', cursive;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}

/* Footer Sections */
.footer-section h3 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section-link {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
  display: inline-block;
}

.footer-section-link:hover {
  opacity: 0.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  color: #666;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }
}
