@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Comic+Neue:wght@400;700&display=swap');

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

body {
  font-family: 'Fredoka', 'Comic Neue', cursive, system-ui, sans-serif;
  line-height: 1.6;
  color: #2d3748;
  background: linear-gradient(180deg, #fef5ff 0%, #fff5e6 50%, #e6f7ff 100%);
  background-attachment: fixed;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}

.logo img {
  width: 48px;
  height: 48px;
}

.logo h1 {
  font-size: 28px;
  font-weight: 700;
}

/* Main Content */
main {
  padding: 80px 20px 60px;
}

/* Hero Section */
.hero {
  margin-bottom: 120px;
  margin-top: 60px;
}

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

.hero-text h2 {
  font-size: 58px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  font-weight: 700;
}

.subtitle {
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 30px;
  border: 5px solid #667eea;
  transform: rotate(2deg);
  transition: transform 0.3s;
}

.hero-image img:hover {
  transform: rotate(-2deg) scale(1.05);
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 18px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* Problem Section */
.problem {
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  padding: 60px 50px;
  border-radius: 30px;
  margin-bottom: 100px;
  border: 4px solid #fdcb6e;
}

.problem-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.problem-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 25px;
  border: 4px solid #e17055;
  transform: rotate(-3deg);
  transition: transform 0.3s;
}

.problem-image img:hover {
  transform: rotate(3deg) scale(1.05);
}

.problem-text h3 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #e17055;
  font-weight: 700;
}

.problem-text p {
  font-size: 18px;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* Solution Section */
.solution {
  margin-bottom: 100px;
}

.solution h3 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 20px;
  color: #6c5ce7;
  font-weight: 700;
}

.solution-intro {
  text-align: center;
  font-size: 20px;
  color: #4a5568;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature {
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 3px solid transparent;
}

.feature:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: #667eea;
}

.number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 20px;
}

.feature h4 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2d3748;
}

.feature p {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.6;
}

/* Value Props Section */
.value-props {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 50%, #f093fb 100%);
  padding: 80px 50px;
  border-radius: 30px;
  margin-bottom: 100px;
  color: white;
  border: 4px solid #ff6b6b;
}

.value-props h3 {
  font-size: 44px;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
}

.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.prop {
  text-align: center;
}

.prop-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.prop h4 {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.prop p {
  font-size: 16px;
  opacity: 0.95;
  line-height: 1.6;
}

/* Final CTA Section */
.cta-final {
  text-align: center;
  padding: 60px 0;
}

.cta-pug {
  width: 220px;
  height: auto;
  border-radius: 25px;
  margin-bottom: 30px;
  border: 4px solid white;
  animation: bounce 2s ease-in-out infinite;
}

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

.cta-final {
  text-align: center;
  padding: 60px;
  background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
  border-radius: 30px;
  border: 4px solid #6c5ce7;
}

.cta-final h3 {
  font-size: 46px;
  margin-bottom: 16px;
  color: white;
  font-weight: 700;
}

.cta-final > p {
  font-size: 22px;
  color: white;
  margin-bottom: 32px;
  font-weight: 500;
}

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

/* Footer */
footer {
  background: #2d3748;
  color: white;
  padding: 40px 0;
  margin-top: 80px;
}

footer nav {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 20px;
}

footer a {
  color: white;
  text-decoration: none;
  transition: opacity 0.2s;
}

footer a:hover {
  opacity: 0.8;
}

footer p {
  text-align: center;
  opacity: 0.8;
  font-size: 14px;
}

/* Privacy Policy Page */
.policy {
  background: white;
  padding: 60px;
  border-radius: 12px;
}

.policy h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #2d3748;
}

.policy h2 {
  font-size: 26px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #2d3748;
}

.policy h3 {
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #4a5568;
}

.policy p {
  margin-bottom: 16px;
  color: #4a5568;
  font-size: 16px;
}

.policy ul {
  margin-bottom: 16px;
  margin-left: 20px;
  color: #4a5568;
}

.policy li {
  margin-bottom: 8px;
}

.policy code {
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Monaco', 'Courier New', monospace;
  font-size: 14px;
  color: #667eea;
}

.policy a {
  color: #667eea;
  text-decoration: none;
  border-bottom: 1px solid #667eea;
}

.policy a:hover {
  opacity: 0.8;
}

.policy section {
  margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 968px) {
  .hero-content,
  .problem-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image,
  .problem-image {
    order: -1;
  }

  .hero-image img,
  .problem-image img {
    margin: 0 auto;
  }

  .hero-text h2 {
    font-size: 40px;
  }

  .props-grid {
    grid-template-columns: 1fr;
  }

  .value-props {
    padding: 60px 30px;
  }
}

@media (max-width: 768px) {
  .hero-text h2 {
    font-size: 36px;
  }

  .subtitle {
    font-size: 18px;
  }

  .solution h3,
  .value-props h3,
  .cta-final h3 {
    font-size: 32px;
  }

  .problem {
    padding: 40px 30px;
  }

  .problem-text h3 {
    font-size: 28px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .policy {
    padding: 30px 20px;
  }

  .policy h1 {
    font-size: 28px;
  }

  .policy h2 {
    font-size: 22px;
  }
}
