.landing-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow-x: hidden;
}

/* Navigation */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.3s ease;
}

.landing-nav .nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.landing-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.landing-nav .nav-link {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.landing-nav .nav-link:hover {
  color: #2563eb;
}

.nav-btn-primary {
  padding: 0.625rem 1.25rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 3px;
  background: #0f172a;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.mobile-menu-toggle span:nth-child(1).active {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle span:nth-child(2).active {
  opacity: 0;
}

.mobile-menu-toggle span:nth-child(3).active {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.08) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
  width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 50px;
  font-size: 0.875rem;
  color: #2563eb;
  font-weight: 500;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 100%;
}

.badge-icon {
  font-size: 1rem;
  flex-shrink: 0;
}

.badge-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: block;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  width: 100%;
  box-sizing: border-box;
}

.cta-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  min-height: 48px;
  touch-action: manipulation;
  box-sizing: border-box;
  border: none;
  white-space: nowrap;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.cta-primary:active {
  transform: translateY(0);
}

.cta-secondary {
  padding: 1rem 2rem;
  background: white;
  color: #2563eb;
  text-decoration: none;
  border: 2px solid #2563eb;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  box-sizing: border-box;
  white-space: nowrap;
}

.cta-secondary:hover {
  background: #2563eb;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.cta-secondary:active {
  transform: translateY(0);
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: #e2e8f0;
}

/* Features Section */
.features-section {
  padding: 6rem 2rem;
  background: white;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.6;
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.feature-card {
  padding: 2.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb 0%, #1d4ed8 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-icon.security {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #2563eb;
}

.feature-icon.location {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #10b981;
}

.feature-icon.communication {
  background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
  color: #8b5cf6;
}

.feature-icon.comfort {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #f59e0b;
}

.feature-icon.schedule {
  background: linear-gradient(135deg, #ffe4e6 0%, #fecdd3 100%);
  color: #ef4444;
}

.feature-icon.support {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0ea5e9;
}

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

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #64748b;
}

/* CTA Section */
.cta-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.cta-button-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  background: white;
  color: #2563eb;
  text-decoration: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  min-height: 56px;
  touch-action: manipulation;
  box-sizing: border-box;
  border: none;
  white-space: nowrap;
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-button-large:active {
  transform: translateY(0);
}

/* Footer */
.landing-footer {
  padding: 4rem 2rem 2rem;
  background: #0f172a;
  color: #94a3b8;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-brand .brand-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-brand .brand-text {
  font-size: 1.25rem;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #64748b;
}

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

.footer-link {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #60a5fa;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #475569;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .landing-nav .nav-container {
    padding: 0.75rem 1rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .landing-nav .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    padding: 2rem;
  }

  .landing-nav .nav-links.mobile-open {
    transform: translateX(0);
  }

  .landing-nav .nav-link {
    font-size: 1.25rem;
    width: 100%;
    justify-content: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  }

  .nav-btn-primary {
    width: 100%;
    max-width: 280px;
    font-size: 1.125rem;
    padding: 1rem 2rem;
  }

  .hero-section {
    padding: 5rem 1rem 3rem;
    min-height: auto;
  }

  .hero-content {
    padding: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.875rem;
    margin-bottom: 1.5rem;
  }

  .badge-text {
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .gradient-text {
    display: inline;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    padding: 0;
    box-sizing: border-box;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
  }

  .stat-item {
    width: 100%;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .stat-label {
    font-size: 0.875rem;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
    margin: 0.5rem 0;
  }

  .features-section {
    padding: 3rem 1rem;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .feature-card {
    padding: 1.75rem;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1.25rem;
  }

  .feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .feature-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .cta-section {
    padding: 3rem 1rem;
  }

  .cta-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
  }

  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }

  .cta-button-large {
    width: 100%;
    max-width: 100%;
    font-size: 1rem;
    padding: 1rem 1.5rem;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
  }

  .landing-footer {
    padding: 2.5rem 1rem 1.5rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .footer-link {
    font-size: 0.95rem;
    padding: 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .landing-nav .nav-container {
    padding: 0.625rem 0.875rem;
  }

  .brand-text {
    font-size: 1.125rem;
  }

  .brand-logo {
    height: 28px;
  }

  .hero-section {
    padding: 4.5rem 0.875rem 2.5rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.75rem;
    margin-bottom: 1.25rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
    padding: 0 0.5rem;
  }

  .hero-description {
    font-size: 0.875rem;
    padding: 0;
  }

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

  .cta-primary,
  .cta-secondary {
    font-size: 0.95rem;
    padding: 0.875rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }

  .hero-stats {
    padding: 1.25rem;
    gap: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .features-section {
    padding: 2.5rem 0.875rem;
  }

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

  .section-subtitle {
    font-size: 0.875rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-size: 1.125rem;
  }

  .feature-description {
    font-size: 0.875rem;
  }

  .cta-section {
    padding: 2.5rem 0.875rem;
  }

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

  .cta-description {
    font-size: 0.875rem;
  }

  .cta-button-large {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
    white-space: normal;
  }

  .landing-footer {
    padding: 2rem 0.875rem 1.25rem;
  }

  .footer-text {
    font-size: 0.875rem;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.625rem;
  }

  .stat-number {
    font-size: 1.25rem;
  }
}

