html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Hero Section Styles */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.1'%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") repeat;
  opacity: 0.1;
}

.min-vh-85 {
  min-height: 50vh;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 1.5rem 2rem;
  text-align: left;
}

.hero-title-wrapper {
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-brand {
  display: block;
  background: linear-gradient(45deg, #ffffff, #f8f9fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-subtitle {
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.5rem;
  letter-spacing: 0.01em;
}

.hero-description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 90%;
  font-weight: 400;
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.benefit-item::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #4caf50;
  border-radius: 50%;
  color: white;
  font-weight: bold;
  flex-shrink: 0;
  font-size: 1rem;
}

.hero-cta {
  margin-top: 1rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 400px;
  margin: 0 auto;
}

.feature-icon {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  position: relative;
  transition: all 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.feature-icon:nth-child(1) { animation-delay: 0s; }
.feature-icon:nth-child(2) { animation-delay: -1.5s; }
.feature-icon:nth-child(3) { animation-delay: -3s; }
.feature-icon:nth-child(4) { animation-delay: -4.5s; }

.feature-icon.picking {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  box-shadow: 0 8px 32px rgba(76, 175, 80, 0.3);
}

.feature-icon.attendance {
  background: linear-gradient(135deg, #2196f3, #1565c0);
  box-shadow: 0 8px 32px rgba(33, 150, 243, 0.3);
}

.feature-icon.quality {
  background: linear-gradient(135deg, #ff9800, #e65100);
  box-shadow: 0 8px 32px rgba(255, 152, 0, 0.3);
}

.feature-icon.tracking {
  background: linear-gradient(135deg, #e91e63, #ad1457);
  box-shadow: 0 8px 32px rgba(233, 30, 99, 0.3);
}

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

/* Capabilities Section */
.capabilities-section {
  background: #f8f9fa;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
}

.capability-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.capability-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.capability-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: white;
}

.picking-card .card-icon {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.attendance-card .card-icon {
  background: linear-gradient(135deg, #2196f3, #1565c0);
}

.quality-card .card-icon {
  background: linear-gradient(135deg, #ff9800, #e65100);
}

.management-card .card-icon {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.workforce-card .card-icon {
  background: linear-gradient(135deg, #9c27b0, #6a1b9a);
}

.reporting-card .card-icon {
  background: linear-gradient(135deg, #607d8b, #37474f);
}

.packhouse-card .card-icon {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
}

.payments-card .card-icon {
  background: linear-gradient(135deg, #5c6bc0, #3949ab);
}

.jobtracking-card .card-icon {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.bintrack-card .card-icon {
  background: linear-gradient(135deg, #ff9800, #e65100);
}

.card-content h4 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.card-content p {
  color: #6c757d;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  color: #495057;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}

/* Why Sisko Works Section */
.why-sisko-section {
  background: white;
}

.reason-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
}

.reason-card:hover {
  border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.reason-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.reason-card h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.75rem;
}

.reason-card p {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
.how-it-works-section {
  background: #f8f9fa;
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 30px;
  bottom: 40px;
  width: 3px;
  background: linear-gradient(180deg, #667eea, #764ba2);
}

.process-step {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
  position: relative;
  z-index: 1;
}

.step-content {
  flex: 1;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-content h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #6c757d;
  margin: 0;
  line-height: 1.6;
}

/* What You Get Section */
.what-you-get-section {
  background: white;
}

.benefits-list-card {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border: 2px solid rgba(102, 126, 234, 0.2);
  border-radius: 16px;
  padding: 3rem;
}

.benefits-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.25rem;
}

.benefits-checklist li {
  font-size: 1.15rem;
  color: #2c3e50;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.6;
}

.benefits-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

/* The Bottom Line Section */
.bottom-line-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 5rem 0;
}

.cta-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: white;
}

.cta-content {
  margin-bottom: 3rem;
}

.lead-text {
  font-size: 1.35rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
}

.sub-text {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.highlight-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2rem 0;
  color: #81c784;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.closing-text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: white;
  color: #667eea;
  border: none;
}

.cta-buttons .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-outline-light {
  border: 2px solid white;
  color: white;
}

.cta-buttons .btn-outline-light:hover {
  background: white;
  color: #667eea;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-content {
    padding: 2rem 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    max-width: 100%;
    font-size: 1.2rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .feature-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .capability-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-content {
    padding: 1rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-benefits {
    padding: 1rem;
    margin-bottom: 2rem;
  }

  .benefit-item {
    font-size: 0.95rem;
    justify-content: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .min-vh-85 {
    min-height: auto;
  }

  .reason-card {
    padding: 1.5rem 1rem;
  }

  .reason-card h5 {
    font-size: 1.1rem;
  }

  .reason-card p {
    font-size: 0.9rem;
  }

  .process-timeline::before {
    left: 20px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .process-step {
    gap: 1rem;
  }

  .benefits-list-card {
    padding: 2rem 1.5rem;
  }

  .benefits-checklist li {
    font-size: 1rem;
    padding-left: 2rem;
  }

  .benefits-checklist li::before {
    width: 24px;
    height: 24px;
    font-size: 1rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .lead-text {
    font-size: 1.15rem;
  }

  .highlight-text {
    font-size: 1.25rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }
}