/* HeyPops - Bold Redesign */
:root {
  --bg: #fef6ee;
  --bg-light: #fff8f0;
  --text: #1f2937;
  --text-muted: #6b7280;
  --primary: #38bdf8;
  --secondary: #fb923c;
  --accent: #fb923c;
  --accent-hover: #f97316;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--bg);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Main */
main {
  padding-top: 72px;
}

/* Hero */
.hero {
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 32px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lead {
  font-size: 22px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--text) 0%, #374151 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Illustrations */
.illustration {
  max-width: 320px;
  height: auto;
  border-radius: 20px;
  margin: 24px 0;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.12));
}

/* Subtitle */
.subtitle {
  margin: 0;
}

.subtitle p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.subtitle .emphasis {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 12px 0;
}

.subtitle .highlight {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-top: 12px;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: none;
  min-width: 200px;
  flex: 1;
  max-width: 220px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

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

.feature-icon {
  font-size: 32px;
}

.feature-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.4;
}

/* CTA */
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 18px 36px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(56, 189, 248, 0.25);
  margin-bottom: 16px;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(56, 189, 248, 0.35);
}

.pricing {
  font-size: 14px;
  color: var(--text-muted);
}


/* Footer */
footer {
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

footer a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--text);
}

.copyright {
  font-size: 14px;
  color: var(--text-muted);
}

/* Responsive - Tablet */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero {
    max-width: 720px;
    padding: 32px 48px 80px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .illustration {
    max-width: 360px;
    margin: 32px 0;
  }

  .subtitle p {
    font-size: 20px;
  }

  .subtitle .emphasis {
    font-size: 28px;
  }

  .subtitle .highlight {
    font-size: 20px;
  }

  .features {
    gap: 16px;
  }

  .feature {
    min-width: 200px;
    max-width: 230px;
    padding: 32px 28px;
  }

  .feature-label {
    font-size: 15px;
  }

  .download-btn {
    padding: 20px 44px;
    font-size: 18px;
    border-radius: 16px;
  }

  .pricing {
    font-size: 15px;
  }
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  main {
    padding-top: 60px;
  }

  .hero {
    padding: 24px 24px 60px;
  }

  .lead {
    font-size: 17px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .illustration {
    max-width: 260px;
    margin: 28px 0;
  }

  .pricing + .illustration {
    margin-top: 48px;
  }

  .subtitle p {
    font-size: 17px;
  }

  .subtitle .emphasis {
    font-size: 22px;
  }

  .subtitle .highlight {
    font-size: 17px;
  }

  .features {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
  }

  .feature {
    max-width: none;
    flex-direction: row;
    padding: 18px 22px;
    gap: 14px;
  }

  .feature-icon {
    font-size: 26px;
  }

  .feature-label {
    text-align: left;
    font-size: 15px;
  }

  .download-btn {
    width: 100%;
    max-width: 300px;
    padding: 18px 32px;
    font-size: 16px;
  }

  .pricing {
    font-size: 15px;
  }

  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 12px 16px;
  }

  .logo {
    font-size: 18px;
    gap: 8px;
  }

  .logo-icon {
    width: 28px;
    height: 28px;
  }

  .hero {
    padding: 20px 20px 60px;
  }

  .lead {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .illustration {
    max-width: 240px;
    margin: 24px 0;
  }

  .pricing + .illustration {
    margin-top: 40px;
  }

  footer {
    padding: 16px 20px;
  }
}

/* Support Page Styles */
.support-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 32px 60px;
}

.support-page h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text);
}

.section {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
}

.section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

.section p {
  margin-bottom: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.section ul {
  margin-left: 24px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.section a {
  color: var(--primary);
  text-decoration: none;
}

.section a:hover {
  text-decoration: underline;
}

.last-updated {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-card {
  background: rgba(56, 189, 248, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin-top: 20px;
  border: 1px solid rgba(56, 189, 248, 0.15);
}

.contact-card p {
  margin: 0;
  color: var(--text);
}

.support-footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.support-footer .footer-links {
  display: flex;
  gap: 24px;
}

.support-footer .footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.support-footer .footer-links a:hover {
  color: var(--text);
}

@media (max-width: 480px) {
  .support-page {
    padding: 80px 20px 40px;
  }

  .support-page h1 {
    font-size: 28px;
  }

  .section {
    padding: 24px 20px;
    border-radius: 16px;
  }

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

  .support-footer {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .support-footer .footer-links {
    gap: 16px;
  }
}
