/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
  --primary-color: #1a1a1a;
  --secondary-color: #6b46c1;
  --accent-color: #8b5cf6;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 12px;
  --border-radius-lg: 16px;
}

/* Global Styles */
* {
  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: var(--gray-800);
  background-color: var(--white);
}

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

/* Header/Navbar */
.header {
  position: sticky;
  top: 0;
  background-color: var(--white);
  border-bottom: 1px solid var(--gray-200);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
}

.logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.btn-signup {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-signup:hover {
  background-color: var(--gray-800);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--white) 0%, #e0e7ff 50%, #ddd6fe 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--gray-800);
}

.btn-secondary {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.btn-secondary:hover {
  color: var(--accent-color);
}

/* Floating Icons */
.floating-3d-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-3d {
  position: absolute;
  perspective: 1000px;
}

.floating-3d:hover {
  animation-play-state: paused;
  transform: scale(1.2) translateY(-10px);
  transition: all 0.3s ease;
}

/* 3D Cube */
.cube {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCube 8s linear infinite;
}

.cube:hover {
  animation-play-state: paused;
  transform: rotateX(45deg) rotateY(45deg) scale(1.1);
}

.face {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 20px rgba(107, 70, 193, 0.3);
}

.face.front { transform: rotateY(0deg) translateZ(30px); }
.face.back { transform: rotateY(180deg) translateZ(30px); }
.face.right { transform: rotateY(90deg) translateZ(30px); }
.face.left { transform: rotateY(-90deg) translateZ(30px); }
.face.top { transform: rotateX(90deg) translateZ(30px); }
.face.bottom { transform: rotateX(-90deg) translateZ(30px); }

/* 3D Sphere */
.sphere {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #8b5cf6, var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 30px rgba(107, 70, 193, 0.4),
    inset -10px -10px 20px rgba(0, 0, 0, 0.2),
    inset 10px 10px 20px rgba(255, 255, 255, 0.1);
  animation: pulseSphere 4s ease-in-out infinite;
}

.sphere:hover {
  transform: scale(1.2);
  box-shadow: 
    0 0 50px rgba(107, 70, 193, 0.6),
    inset -10px -10px 20px rgba(0, 0, 0, 0.2),
    inset 10px 10px 20px rgba(255, 255, 255, 0.1);
}

.sphere-inner {
  font-size: 28px;
  animation: bounceInner 3s ease-in-out infinite;
}

/* 3D Pyramid */
.pyramid {
  width: 0;
  height: 0;
  position: relative;
  transform-style: preserve-3d;
  animation: rotatePyramid 10s linear infinite;
}

.pyramid:hover {
  animation-play-state: paused;
  transform: rotateX(45deg) rotateY(45deg) scale(1.1);
}

.pyramid-face {
  position: absolute;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.pyramid-face.front {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid var(--secondary-color);
  transform: translateZ(15px);
}

.pyramid-face.back {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid var(--accent-color);
  transform: rotateY(180deg) translateZ(15px);
}

.pyramid-face.left {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid #9333ea;
  transform: rotateY(-90deg) translateZ(15px);
}

.pyramid-face.right {
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 52px solid #7c3aed;
  transform: rotateY(90deg) translateZ(15px);
}

/* 3D Cylinder */
.cylinder {
  width: 50px;
  height: 80px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateCylinder 7s linear infinite;
}

.cylinder:hover {
  animation-play-state: paused;
  transform: rotateX(45deg) scale(1.1);
}

.cylinder-top, .cylinder-bottom {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-color), var(--secondary-color));
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cylinder-top {
  top: 0;
  transform: rotateX(90deg) translateZ(25px);
}

.cylinder-bottom {
  bottom: 0;
  transform: rotateX(-90deg) translateZ(25px);
}

.cylinder-side {
  width: 50px;
  height: 80px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color), var(--secondary-color));
  border-radius: 25px;
}

/* 3D Diamond */
.diamond {
  width: 60px;
  height: 60px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateDiamond 9s linear infinite;
}

.diamond:hover {
  animation-play-state: paused;
  transform: rotateX(45deg) rotateY(45deg) rotateZ(45deg) scale(1.2);
}

.diamond-face {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  clip-path: polygon(50% 0%, 0% 50%, 50% 100%, 100% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 25px rgba(251, 191, 36, 0.4);
}

/* 3D Octahedron */
.octahedron {
  width: 70px;
  height: 70px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateOctahedron 6s linear infinite;
}

.octahedron:hover {
  animation-play-state: paused;
  transform: rotateX(45deg) rotateY(45deg) scale(1.1);
}

.octahedron-face {
  position: absolute;
  width: 0;
  height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.octahedron-face.top {
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-bottom: 35px solid #10b981;
  transform: translateZ(25px);
}

.octahedron-face.bottom {
  border-left: 35px solid transparent;
  border-right: 35px solid transparent;
  border-top: 35px solid #059669;
  transform: rotateX(180deg) translateZ(25px);
}

/* 3D Torus */
.torus {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--secondary-color), var(--accent-color), #9333ea, var(--secondary-color));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateTorus 5s linear infinite;
}

.torus:hover {
  animation-play-state: paused;
  transform: scale(1.2);
  box-shadow: 0 0 40px rgba(107, 70, 193, 0.6);
}

.torus::before {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light-bg);
  z-index: 1;
}

.torus-inner {
  font-size: 24px;
  z-index: 2;
  position: relative;
}

/* Positioning for Hero Section */
.cube-1 { top: 15%; left: 8%; animation-delay: 0s; }
.sphere-1 { top: 25%; right: 12%; animation-delay: 1s; }
.pyramid-1 { bottom: 30%; left: 10%; animation-delay: 2s; }
.cube-2 { bottom: 20%; right: 15%; animation-delay: 3s; }
.sphere-2 { top: 40%; left: 50%; animation-delay: 4s; }
.cylinder-1 { top: 60%; right: 8%; animation-delay: 5s; }

/* Positioning for Benefits Section */
.benefits-floating .diamond-1 { top: 10%; right: 5%; animation-delay: 1s; }
.benefits-floating .octahedron-1 { bottom: 15%; left: 8%; animation-delay: 2s; }
.benefits-floating .torus-1 { top: 50%; right: 10%; animation-delay: 3s; }

/* Keyframe Animations */
@keyframes rotateCube {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes pulseSphere {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

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

@keyframes rotatePyramid {
  0% { transform: rotateY(0deg) rotateX(0deg); }
  100% { transform: rotateY(360deg) rotateX(180deg); }
}

@keyframes rotateCylinder {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes rotateDiamond {
  0% { transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
}

@keyframes rotateOctahedron {
  0% { transform: rotateX(0deg) rotateY(0deg); }
  100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes rotateTorus {
  0% { transform: rotateZ(0deg); }
  100% { transform: rotateZ(360deg); }
}

/* Dashboard Preview Section */
.dashboard-preview {
  padding: 5rem 0;
  background-color: var(--light-bg);
}

.dashboard-container {
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.dashboard-header {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.dashboard-actions {
  display: flex;
  gap: 1rem;
}

.search-bar {
  background-color: var(--gray-800);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  color: var(--white);
  width: 200px;
}

.btn-dashboard {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.5rem 1rem;
  font-weight: 600;
  cursor: pointer;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  min-height: 600px;
}

.sidebar {
  background-color: var(--gray-100);
  padding: 2rem 1rem;
}

.sidebar-menu {
  list-style: none;
}

.sidebar-menu li {
  margin-bottom: 0.5rem;
}

.sidebar-menu a {
  display: block;
  padding: 0.75rem 1rem;
  text-decoration: none;
  color: var(--gray-700);
  border-radius: var(--border-radius);
  transition: background-color 0.3s ease;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  background-color: var(--white);
  color: var(--primary-color);
}

.main-content {
  padding: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.metric-card {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.metric-title {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}

.metric-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.chart-placeholder {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 1.5rem;
}

.chart-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  height: 150px;
}

.chart-bar {
  flex: 1;
  background-color: var(--secondary-color);
  border-radius: 4px 4px 0 0;
}

.chart-bar:nth-child(1) { height: 60%; }
.chart-bar:nth-child(2) { height: 80%; }
.chart-bar:nth-child(3) { height: 40%; }
.chart-bar:nth-child(4) { height: 90%; }
.chart-bar:nth-child(5) { height: 70%; }
.chart-bar:nth-child(6) { height: 50%; }

.task-list {
  background-color: var(--white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.task-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.task-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.task-item:last-child {
  border-bottom: none;
}

.task-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid var(--gray-300);
  border-radius: 4px;
  margin-right: 1rem;
}

.task-text {
  flex: 1;
  font-size: 0.875rem;
}

/* Trusted Clients Section */
.trusted-clients {
  padding: 5rem 0;
  background-color: var(--white);
}

.trusted-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.trusted-subtitle {
  text-align: center;
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.client-logo {
  width: 120px;
  height: 60px;
  background-color: var(--gray-200);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-weight: 600;
  font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .main-content {
    grid-template-columns: 1fr;
  }

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

  .client-logos {
    gap: 1.5rem;
  }

  .client-logo {
    width: 100px;
    height: 50px;
  }
}
/* Benefits Section */
.benefits-section {
  padding: 6rem 0;
  background-color: var(--light-bg);
}

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

.section-tag {
  display: inline-block;
  background-color: #e0e7ff;
  color: var(--secondary-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-description {
  font-size: 1.125rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.feature-visual {
  margin-bottom: 2rem;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-description {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Workflow Diagram */
.workflow-diagram {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.workflow-step {
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.step-icon.settings {
  background-color: #e0e7ff;
  border: 2px solid var(--secondary-color);
}

.step-icon.settings::before {
  content: "⚙️";
  font-size: 18px;
}

.step-icon.sync {
  background-color: #ddd6fe;
  border: 2px solid var(--accent-color);
}

.step-icon.sync::before {
  content: "🔄";
  font-size: 18px;
}

.step-icon.gear {
  background-color: #e0e7ff;
  border: 2px solid var(--secondary-color);
}

.step-icon.gear::before {
  content: "⚙️";
  font-size: 18px;
}

.workflow-arrow {
  width: 30px;
  height: 2px;
  background-color: var(--gray-300);
  position: relative;
}

.workflow-arrow::after {
  content: "";
  position: absolute;
  right: -4px;
  top: -3px;
  width: 0;
  height: 0;
  border-left: 8px solid var(--gray-300);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* Tracking Map */
.tracking-map {
  width: 200px;
  height: 120px;
  background-color: #f1f5f9;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.map-pin {
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: var(--shadow-sm);
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
}

.pin-1 {
  top: 30%;
  left: 25%;
}

.pin-2 {
  top: 20%;
  right: 30%;
}

.pin-3 {
  bottom: 35%;
  left: 50%;
  transform: translateX(-50%);
}

/* Insights Card */
.insights-card {
  width: 240px;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.card-header {
  background-color: var(--gray-100);
  padding: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.card-title {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.875rem;
}

.card-content {
  padding: 1.5rem;
}

.card-text {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.upgrade-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  margin-bottom: 1rem;
  transition: background-color 0.3s ease;
}

.upgrade-btn:hover {
  background-color: var(--accent-color);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 32px;
  height: 32px;
  background-color: var(--gray-300);
  border-radius: 50%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
  background-size: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.user-details {
  display: flex;
  flex-direction: column;
}

.user-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-color);
}

.user-email {
  font-size: 0.75rem;
  color: var(--gray-500);
}

/* Responsive Design for Benefits Section */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .benefits-section {
    padding: 4rem 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 2rem;
  }
  
  .feature-visual {
    height: 150px;
  }
  
  .workflow-diagram {
    gap: 0.5rem;
  }
  
  .workflow-arrow {
    width: 20px;
  }
  
  .tracking-map {
    width: 150px;
    height: 100px;
  }
  
  .insights-card {
    width: 200px;
  }
}
/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo .logo-icon {
  width: 32px;
  height: 32px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: bold;
}

.footer-description {
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--gray-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.875rem;
}

.footer-links a:hover {
  color: var(--white);
}

/* Newsletter Section */
.newsletter-section {
  max-width: 280px;
}

.newsletter-description {
  color: var(--gray-400);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-input {
  background-color: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--secondary-color);
}

.newsletter-input::placeholder {
  color: var(--gray-500);
}

.newsletter-btn {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
  background-color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--white);
}

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

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .footer-section:first-child {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
  }
  
  .newsletter-section {
    grid-column: 1 / -1;
    max-width: 100%;
    margin-top: 1rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .footer-bottom-links {
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-section:first-child {
    grid-column: 1;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .newsletter-form {
    gap: 1rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Responsive Design for 3D Elements */
@media (max-width: 1024px) {
  .floating-3d {
    transform: scale(0.8);
  }
  
  .cube, .sphere, .cylinder, .diamond, .octahedron, .torus {
    transform: scale(0.9);
  }
}

@media (max-width: 768px) {
  .floating-3d-elements {
    display: none; /* Hide on mobile for performance */
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-3d,
  .cube,
  .sphere,
  .pyramid,
  .cylinder,
  .diamond,
  .octahedron,
  .torus,
  .sphere-inner {
    animation: none !important;
  }
  
  .floating-3d:hover {
    transform: none;
  }
}