* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

:root {
  --primary-red: #ff4b4b;
  --primary-yellow: #ffdd59;
  --dark-text: #333333;
  --light-text: #ffffff;
  --light-bg: #fff9f9;
  --section-padding: 5rem 1rem;
}

body {
  color: var(--dark-text);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--light-bg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header & Navigation */
header {
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  padding: 1.2rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.logo i {
  color: white;
  font-size: 2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 50px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cta-button {
  background: white;
  color: var(--primary-red);
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  color: white;
  padding: 6rem 1rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 100% 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.hero p {
  font-size: 1.4rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.app-badges {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.badge:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.badge i {
  font-size: 1.8rem;
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-text span:first-child {
  font-size: 0.8rem;
}

.badge-text span:last-child {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Features Section */
.features {
  padding: var(--section-padding);
  background: white;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.section-title p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.feature-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #444;
}

.feature-card p {
  color: #666;
}

/* App Showcase */
.app-showcase {
  padding: var(--section-padding);
  background: linear-gradient(to bottom, #fff9f9, #fff3f3);
}

.showcase-container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.showcase-content {
  flex: 1;
  min-width: 300px;
}

.showcase-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.showcase-content p {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.showcase-images {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
}

.phone-mockup {
  width: 250px;
  height: 500px;
  background: #333;
  border-radius: 40px;
  padding: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff9a9e, #fad0c4);
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 1rem;
  text-align: center;
}

.phone-screen i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mockup-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.mockup-desc {
  font-size: 0.9rem;
}

.floating-mockup {
  position: absolute;
  width: 200px;
  height: 400px;
  background: #444;
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.floating-mockup:nth-child(2) {
  top: 50px;
  right: 0;
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  transform: rotate(5deg);
}

.floating-mockup:nth-child(3) {
  bottom: 50px;
  left: 0;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  transform: rotate(-5deg);
}

/* Community Section */
.community {
  padding: var(--section-padding);
  text-align: center;
  background: white;
}

.community-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #666;
  font-weight: 500;
}

/* Footer */
footer {
  background: linear-gradient(
    135deg,
    var(--primary-red),
    var(--primary-yellow)
  );
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.contact-email {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact-email:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.copyright {
  margin-top: 2rem;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .nav-links {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .showcase-container {
    flex-direction: column;
  }

  .community-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}
