/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
/*   font-size: clamp(2.5rem, 5vw, 4rem); */
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-text .title {
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-text p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.android-graphic {
  position: relative;
  width: 300px;
  height: 300px;
}

.phone-mockup {
  width: 200px;
  height: 400px;
  background: var(--bg-card);
  border-radius: 32px;
  border: 3px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
}

.phone-screen {
  margin: 30px 8px 8px;
  height: calc(100% - 46px);
  background: linear-gradient(180deg, var(--gradient-start), var(--gradient-end));
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.phone-screen .android-icon {
  width: 60px;
  height: 60px;
  fill: white;
  animation: float 3s ease-in-out infinite;
}

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

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}

.floating-element:nth-child(1) {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.floating-element:nth-child(2) {
  bottom: 20%;
  left: -30%;
  animation-delay: 1s;
}

.floating-element:nth-child(3) {
  top: 40%;
  right: -40%;
  animation-delay: 2s;
}