* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a1a1a;
  --secondary-color: #f5f5f5;
  --accent-pink: #ffc4d6;
  --accent-blue: #bde3ff;
  --accent-peach: #ffd4c4;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --bg-white: #ffffff;
  --gradient-1: linear-gradient(135deg, #ffc4d6 0%, #ffd4c4 100%);
  --gradient-2: linear-gradient(135deg, #bde3ff 0%, #e8f4ff 100%);
  --gradient-3: linear-gradient(135deg, #ffe8f0 0%, #fff5e8 100%);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

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

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 40px;
}

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

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

.download-btn {
  background-color: var(--text-dark);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5f8 0%, #f0f9ff 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-description {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 40px;
}

.app-badges {
  display: flex;
  gap: 16px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: var(--text-dark);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.phone-mockup {
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.phone-screen::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #1a1a1a;
  border-radius: 20px;
  z-index: 1;
}

.phone-screen-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
}

.card-1 {
  top: 100px;
  right: -50px;
  background: linear-gradient(135deg, #ffc4d6 0%, #ffd4c4 100%);
}

.card-2 {
  bottom: 120px;
  left: -40px;
  background: linear-gradient(135deg, #bde3ff 0%, #e8f4ff 100%);
}

.card-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.card-text {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
}

.card-time {
  font-size: 14px;
  color: var(--text-light);
}

.card-subtext {
  font-size: 14px;
  color: var(--text-light);
}

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

.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: 0;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent-pink);
  top: -200px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-blue);
  bottom: -150px;
  left: -100px;
}

.features {
  padding: 100px 0;
  background: var(--bg-white);
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 20px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 60px;
}

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

.feature-card {
  padding: 40px;
  background: var(--secondary-color);
  border-radius: 24px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

.showcase {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #fff5f8 100%);
  position: relative;
  overflow: hidden;
}

.showcase-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.showcase-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.showcase-content > p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 18px;
}

.checkmark {
  width: 24px;
  height: 24px;
  background: var(--text-dark);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.blob-3 {
  width: 600px;
  height: 600px;
  background: var(--accent-peach);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
}

.professionals {
  padding: 100px 0;
  background: var(--bg-white);
}

.professionals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.professional-card {
  padding: 32px;
  background: var(--secondary-color);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.professional-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.professional-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.professional-title {
  font-weight: 600;
  font-size: 16px;
}

.cta {
  padding: 120px 0;
  background: linear-gradient(135deg, #ffc4d6 0%, #bde3ff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-container {
  position: relative;
  z-index: 10;
}

.cta h2 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
}

.cta p {
  font-size: 20px;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.blob-4 {
  width: 800px;
  height: 800px;
  background: rgba(255, 255, 255, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer-column h4 {
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom a:visited {
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .hero-container,
  .showcase-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .professionals-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-image {
    height: 500px;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .showcase-content h2 {
    font-size: 36px;
  }

  .cta h2 {
    font-size: 40px;
  }

  .features-grid,
  .professionals-grid {
    grid-template-columns: 1fr;
  }

  .app-badges {
    flex-direction: column;
    margin: 0 auto;
  }

  .badge {
    justify-content: center;
  }

  .hero {
    padding: 120px 0 80px;
  }

  .hero-image {
    height: 400px;
  }

  .phone-mockup {
    width: 250px;
    height: 500px;
  }

  .floating-card {
    font-size: 14px;
    padding: 12px 16px;
  }

  .card-1 {
    right: 0;
  }

  .card-2 {
    left: 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
