

.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 50%, #0a0e1a 100%);
  z-index: -2;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
  animation: floatOrb 20s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: #1e40af;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: #3b82f6;
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

/* Header */
.header {
  background: rgba(10, 14, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.lang-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.lang-btn.active {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
}

.lang-btn:hover:not(.active) {
  color: #3b82f6;
}

/* Hero animations */
.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #60a5fa;
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(59, 130, 246, 0.3));
}

/* Buttons */
.btn svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
  border: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1.125rem 2.25rem;
}

.btn-secondary:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: #3b82f6;
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Stats */
.stats {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  text-align: center;
}

.stat-item {
  animation: fadeIn 0.8s ease-out;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #94a3b8;
  font-size: 1.05rem;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: #3b82f6;
  box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
  background: rgba(30, 41, 59, 0.8);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
  transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.feature-desc {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* How It Works */
.how-section {
  background: rgba(15, 23, 42, 0.3);
}

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

.step {
  text-align: center;
}

.step-number {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
  position: relative;
}

.step-number::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(59, 130, 246, 0.3);
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.step-desc {
  color: #94a3b8;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* FAQ */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
  background: rgba(30, 41, 59, 0.7);
}

.faq-question {
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.faq-question::before {
  content: '💡';
  font-size: 1.5rem;
}

.faq-answer {
  color: #94a3b8;
  line-height: 1.8;
  font-size: 1.05rem;
  padding-right: 3rem;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #1e3a8a, #1e40af);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2), transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 3.25rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: #fff;
}

.cta-subtitle {
  font-size: 1.3rem;
  color: #bfdbfe;
  margin-bottom: 2.5rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: rgba(15, 23, 42, 0.8);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  color: #64748b;
  padding: 3rem 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #3b82f6;
}

.footer-text {
  color: #64748b;
  font-size: 0.9rem;
}

/* ========================================
   ENHANCED FOOTER WITH GRID LAYOUT
======================================== */

.footer {
    background: linear-gradient(180deg, #0a0e1a 0%, #050810 100%);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
    color: #3b82f6;
}

.footer-links a:hover {
    color: #60a5fa;
    padding-right: 0.5rem;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-link-hub {
    color: #3b82f6 !important;
    font-weight: 600;
    font-size: 1rem !important;
}

.footer-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
    margin-top: 0.5rem;
}

.footer-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    text-align: center;
}

.footer-copy {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.6;
}

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

@media (max-width: 640px) {
    .footer {
        padding: 3rem 0 6rem; /* Extra padding for floating button */
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-column {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }

    .footer-column:last-child {
        border-bottom: none;
    }
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(59, 130, 246, 0.3);
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.3s;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.floating-cta.visible {
  transform: translateY(0);
}

.floating-cta .btn {
  width: 100%;
  justify-content: center;
}

/* For Workers Section */
.for-workers-modern {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4), rgba(10, 14, 26, 0.6));
  contain: layout style paint;
}

.workers-modern__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
}

.workers-gradient {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.workers-gradient--1 {
  width: 500px;
  height: 500px;
  background: #1e40af;
  top: 10%;
  left: -10%;
}

.workers-gradient--2 {
  width: 400px;
  height: 400px;
  background: #0ea5e9;
  bottom: 20%;
  right: -10%;
}

.workers-modern__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.workers-modern__visual {
  position: relative;
  order: 2;
}

.workers-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
}

.workers-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.workers-image-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.workers-stat-float {
  position: absolute;
  background: rgba(30, 41, 59, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.workers-stat-float--2 {
  bottom: 20px;
  max-width: 16s0px;
  right: 20px;
}

.stat-float-icon {
  font-size: 1.5rem;
}

.stat-float-value {
  font-size: 1.25rem;
  font-weight: 900;
  color: #fff;
  margin: 0;
  line-height: 1;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-float-label {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0.25rem 0 0;
}

.workers-modern__content {
  order: 1;
}

.for_workers_header {
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.workers-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #fff;
}

.text-gradient {
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.workers-modern__intro {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.workers-benefits-modern {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item-modern {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.benefit-item-modern:hover {
  background: rgba(59, 130, 246, 0.05);
  border-color: rgba(59, 130, 246, 0.2);
}

.benefit-icon-modern {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.benefit-icon-modern svg {
  width: 24px;
  height: 24px;
}

.benefit-content-modern h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #fff;
}

.benefit-content-modern p {
  font-size: 0.9375rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
}

.btn-modern--primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  color: #fff;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

.btn-modern--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(59, 130, 246, 0.6);
}

.btn-modern__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-modern__icon {
  width: 24px;
  height: 24px;
}

/* Responsive - Workers Section */
@media (min-width: 768px) {
  .workers-modern__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .workers-modern__visual {
    order: 2;
  }

  .workers-modern__content {
    order: 1;
  }

  .workers-stat-float--2 {
    bottom: -20px;
    right: -80px;
  }
}

@media (max-width: 768px) {
  .for-workers-modern {
    padding: 4rem 0;
  }

  .workers-title {
    font-size: 1.75rem;
  }

  .workers-modern__intro {
    font-size: 1rem;
  }

  .workers-stat-float--2 {
    position: static;
    margin-top: 1rem;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    text-align: center;
  }
  .btn-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero-subtitle {
    font-size: 1.05rem;
  }
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
  .stat-number {
    font-size: 2.75rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .feature-card,
  .faq-item {
    padding: 1.5rem;
  }
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .header-content {
    height: 70px;
  }
  .logo img {
    height: 40px;
  }
}

@media (min-width: 769px) {
  .floating-cta {
    display: none;
  }
}

/* Performance: Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

