* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
}

.nav-menu {
  display: flex;
  gap: 3rem;
  padding-top: 35px;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #333;
}

.dropdown-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

/* Dropdown menu styles */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #e5e7eb;
}

.dropdown-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #666;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.2s ease;
  border-bottom: none;
}

.dropdown-item:hover {
  background: #f8f9fa;
  color: #333;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-item.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.btn-signup {
  background: #333;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-signup:hover {
  background: #555;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 0.9rem;
  color: #999;
  margin-top: 0.5rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dashboard-mockup {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  width: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.dashboard-header {
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

.dashboard-tabs {
  display: flex;
  gap: 1rem;
}

.tab {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #666;
}

.tab.active {
  background: #333;
  color: white;
}

.dashboard-content {
  background: #fff;
  padding: 2rem;
  border-radius: 0 0 8px 8px;
  display: flex;
  justify-content: center;
}

.chart-container {
  position: relative;
}

.chart-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(#4ade80 0deg 270deg, #e5e7eb 270deg 360deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.chart-circle::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
}

.chart-value {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  color: #333;
}

/* Why Section */
.why-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  color: #666;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
  color: #333;
  margin-top: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-item {
  text-align: left;
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 0;
  background: white;
}

.solution-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.tab-btn {
  background: #f1f3f4;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: #333;
  color: white;
}

.solution-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.warehouse-image {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 400"><rect fill="%23e5e7eb" width="800" height="400"/><text x="400" y="200" text-anchor="middle" fill="%23666" font-size="20">Warehouse Image</text></svg>');
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  padding: 2rem;
  color: white;
  min-height: 300px;
  position: relative;
}

.stat-overlay {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: 0.5rem;
}

.solution-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Brands Section */
.brands-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

.brand-logo {
  text-align: center;
  color: #999;
  font-weight: 500;
  font-size: 1.1rem;
}

/* Suite Section */
.suite-section {
  padding: 80px 0;
  background: white;
}

.suite-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.suite-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.suite-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.suite-item h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.suite-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.suite-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #333;
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.experience-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 3rem;
}

.exp-tab {
  background: #f1f3f4;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.exp-tab.active {
  background: #333;
  color: white;
}

/* Mockups Section */
.mockups-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.mockups-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.mobile-mockup,
.desktop-mockup,
.laptop-mockup {
  background: #333;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-mockup {
  width: 200px;
  height: 400px;
}

.desktop-mockup {
  width: 300px;
  height: 200px;
}

.laptop-mockup {
  width: 250px;
  height: 160px;
}

.mobile-screen,
.desktop-screen,
.laptop-screen {
  background: white;
  border-radius: 8px;
  padding: 1rem;
  height: 100%;
  overflow: hidden;
}

.desktop-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
}

.window-controls {
  font-size: 0.8rem;
}

.url-bar {
  background: #f1f3f4;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  color: #666;
}

.mobile-content h4,
.desktop-content h4,
.laptop-content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.mobile-options,
.return-reasons,
.laptop-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-item,
.reason-item,
.laptop-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  background: #f8f9fa;
  border-radius: 6px;
  font-size: 0.9rem;
}

.option-icon,
.reason-icon {
  font-size: 1rem;
}

.cta-section {
  text-align: center;
}

.btn-learn-more {
  background: #333;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-learn-more:hover {
  background: #555;
}

/* Company Page Styles */
.page-header {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: white;
  padding: 120px 0 80px;
  margin-top: 70px;
  text-align: center;
}

h1 {
    color: #147258;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.2rem;
  color: #ccc;
}

/* Company Tabs Styles */
.company-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1rem;
}

.company-tabs .tab-btn {
  background: transparent;
  border: none;
  padding: 1rem 2rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #666;
  border-bottom: 2px solid transparent;
}

.company-tabs .tab-btn.active {
  color: #333;
  border-bottom-color: #333;
  background: transparent;
}

.company-tabs .tab-btn:hover {
  color: #333;
}

/* Tab Panel Styles */
.tab-content {
  margin-bottom: 4rem;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section Grid */
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.about-text h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
  color: #333;
}

.about-text p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}

.about-stats .stat-item {
  text-align: center;
}

.about-stats .stat-item h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.about-stats .stat-item p {
  color: #666;
  font-weight: 500;
}

/* Timeline Styles for Company History */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e5e7eb;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -1.5rem;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: #333;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #e5e7eb;
}

.timeline-year {
  position: absolute;
  left: -6rem;
  top: 0;
  font-weight: 700;
  color: #333;
  font-size: 1.1rem;
}

.timeline-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
}

/* Video Section Styles */
.video-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.video-container {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
}

.video-container video {
  border-radius: 8px;
  width: 100%;
  height: auto;
}

.video-description {
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 12px;
}

.video-description h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.video-description p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Certifications Grid */
.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.cert-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cert-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.cert-item p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

/* Company Contact Section */
.company-contact {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid #e5e7eb;
  margin-top: 4rem;
}

.company-contact h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.company-contact p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-contact {
  background: #333;
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
  margin-top: 1rem;
}

.btn-contact:hover {
  background: #555;
}

/* Signup Page Styles */
.signup-container {
  min-height: 100vh;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.signup-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 4rem 3rem;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.signup-header {
  text-align: center;
  margin-bottom: 3rem;
}

.signup-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 0.5rem;
}

.signup-header p {
  color: #718096;
  font-size: 1.125rem;
}

.form-group {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  text-align: center;
  width: 100%;
}

.form-input {
  width: 100%;
  min-width: 400px;
  padding: 1.25rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 1.125rem;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  background: white;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.password-input-container {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #718096;
  font-size: 1.125rem;
}

.password-toggle:hover {
  color: #4a5568;
}

.password-requirements {
  background: #f7fafc;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 0.75rem;
}

.password-requirements h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.5rem;
}

.requirement {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #718096;
  margin-bottom: 0.25rem;
}

.requirement.valid {
  color: #38a169;
}

.requirement-icon {
  width: 16px;
  height: 16px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.requirement.valid .requirement-icon {
  background: #38a169;
  color: white;
}

.signup-btn {
  width: 100%;
  background: #4f46e5;
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.signup-btn:hover {
  background: #4338ca;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.3);
}

.signup-footer {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e2e8f0;
}

.signup-footer p {
  color: #718096;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.signup-footer a {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.signup-footer a:hover {
  text-decoration: underline;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #718096;
  font-size: 0.875rem;
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: #38a169;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-stats {
    justify-content: center;
    gap: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .solution-content {
    grid-template-columns: 1fr;
  }

  .nav-menu {
    display: none;
  }

  .mockups-container {
    flex-direction: column;
  }

  .about-grid,
  .video-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .company-tabs {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .company-tabs .tab-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .timeline {
    padding-left: 1rem;
  }

  .timeline-year {
    position: static;
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
  }

  .timeline-item {
    padding-left: 1rem;
  }

  .certifications-grid {
    grid-template-columns: 1fr;
  }

  .signup-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .suite-grid {
    grid-template-columns: 1fr;
  }
}
