/* Landing Page Styles */

/* Header Styles */
.landing-header {
  padding: 20px 0;
  background: white;
  border-bottom: 1px solid #e5e7eb;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a73e8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo .logo-icon {
  width: 20px;
  height: 25px;
}

.header-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: #6b7280;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #1f2937;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

/* Hero Section */
.hero-section {
  padding: 80px 0 80px;
  background: #f9fafb;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  margin-bottom: 2rem;
}

.hero-btn {
  background: #1a73e8;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  box-shadow: 0 0 0 0 rgba(26, 115, 232, 0);
}

.hero-btn:hover {
  background: #1557b0;
  color: white;
  box-shadow: 0 0 20px 8px rgba(26, 115, 232, 0.2);
  transform: translateY(-1px);
}

.trial-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  text-align: center;
}

/* Social Proof */
.social-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.company-logos {
  display: flex;
  align-items: center;
  justify-content: center;
}

.company-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: white;
  overflow: hidden;
}

.company-logo:first-child {
  margin-left: 0;
}

.company-logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.social-proof-text {
  color: #6b7280;
  font-weight: 500;
}

/* Demo Section */
.demo-section {
  position: relative;
  background: #f9fafb;
  padding: 0 0 60px;
}

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

.demo-header {
  text-align: center;
  margin-bottom: 3rem;
}

.demo-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.demo-header p {
  font-size: 1.2rem;
  color: #6b7280;
}

.demo-pointer {
  position: absolute;
  left: 247px;
  top: -82px;
  z-index: 10;
}

.pulse {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.pointer-text {
  position: absolute;
  left: 57px;
  top: 24px;
  width: 190px;
  color: #ef4444;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
  font-family: 'Permanent Marker', cursive;
}

.pointer-arrow {
  width: 80px;
  height: 100px;
  transform: rotate(230deg) scaleX(-0.5) scaleY(0.5);
}

.arrow-svg {
  width: 100%;
  height: 100%;
  fill: #ef4444;
}

.demo-iframe {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Media Queries */
@media (max-width: 768px) {
  .header-nav {
    display: none;
  }

  .header-actions {
    flex-shrink: 0;
  }

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

  .hero-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }

  .demo-header h2 {
    font-size: 2rem;
  }

  .demo-iframe {
    padding: 1rem;
  }

  .demo-pointer {
    left: 27px;
    top: -84px;
  }
}