@import url("assets/css/base.css");

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 140%;
  background: radial-gradient(ellipse, rgba(26, 115, 232, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(0, 201, 167, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: white;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  background: linear-gradient(90deg, #60a5fa, #34d399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lead {
  color: #94a3b8;
  font-size: 1.2rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
}

.hero-stats .stat span {
  color: #64748b;
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.phone-mockup {
  width: 280px;
  margin: 0 auto;
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  background: linear-gradient(180deg, #1a73e8 0%, #00c9a7 100%);
  border-radius: 28px;
  height: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding: 2rem;
}

.phone-screen i {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.phone-screen h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

/* Apps section */
.apps-section {
  padding: 6rem 0;
}

.app-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.app-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.app-card-icon {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: white;
}

.app-card-icon.weather { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.app-card-icon.thermo { background: linear-gradient(135deg, #f97316, #ef4444); }
.app-card-icon.translate { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.app-card-icon.focus { background: linear-gradient(135deg, #10b981, #059669); }
.app-card-icon.step { background: linear-gradient(135deg, #ec4899, #f43f5e); }

.app-card-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.app-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.app-card-body .tag {
  display: inline-block;
  background: rgba(26, 115, 232, 0.1);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.app-card-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.app-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.app-rating span {
  color: var(--text-light);
  margin-left: 4px;
}

/* Features */
.features-section {
  padding: 6rem 0;
  background: var(--white);
}

.feature-box {
  text-align: center;
  padding: 2rem 1.5rem;
}

.feature-box .icon-wrap {
  width: 64px;
  height: 64px;
  background: rgba(26, 115, 232, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
  color: var(--primary);
}

.feature-box h4 {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.feature-box p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* CTA */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), #4285f4);
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-outline-custom {
  border-color: white;
  color: white;
}

.cta-section .btn-outline-custom:hover {
  background: white;
  color: var(--primary);
}
