/* =============================================
   Poonel — Global Styles
   ============================================= */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --accent:       #F5B400;
  --accent-dark:  #d49e00;
  --text:         #1a1a1a;
  --text-muted:   #555555;
  --bg:           #ffffff;
  --bg-subtle:    #f5f5f5;
  --bg-section:   #fafafa;
  --border:       #e0e0e0;
  --radius:       8px;
  --font:         'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-width:    900px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

/* =============================================
   Layout
   ============================================= */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 64px 0;
}

section.alt {
  background-color: var(--bg-subtle);
}

/* =============================================
   Navigation / Header
   ============================================= */

header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
}

.nav-brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--text);
  text-decoration: none;
}

/* =============================================
   Hero
   ============================================= */

.hero {
  padding: 96px 0 80px;
  text-align: center;
  background-color: var(--bg);
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 36px;
}

.btn-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   Buttons
   ============================================= */

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-primary {
  background-color: var(--accent);
  color: var(--text);
  border-color: var(--accent);
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-outline:hover {
  border-color: var(--text);
  text-decoration: none;
}

/* =============================================
   Features
   ============================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.feature-item {
  text-align: center;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
}

.feature-item h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =============================================
   Product Section
   ============================================= */

.product-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
  max-width: 620px;
  margin: 40px auto 0;
}

.product-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.product-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent);
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

.product-meta h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.product-meta p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.product-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 28px;
}

.product-features li {
  font-size: 0.92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* =============================================
   Privacy Highlights
   ============================================= */

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.privacy-item {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.privacy-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.privacy-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* =============================================
   Section headings
   ============================================= */

.section-title {
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
}

/* =============================================
   Support
   ============================================= */

.support-box {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.support-box h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.support-box p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.support-box .email-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-dark);
}

/* =============================================
   Footer
   ============================================= */

footer {
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.footer-brand span {
  color: var(--accent);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

/* =============================================
   Privacy Policy Page
   ============================================= */

.page-hero {
  padding: 64px 0 48px;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.prose {
  max-width: 680px;
  padding: 56px 24px 80px;
  margin: 0 auto;
}

.prose h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 40px 0 10px;
  color: var(--text);
}

.prose p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.prose ul {
  margin: 0 0 14px 20px;
  color: var(--text-muted);
}

.prose ul li {
  margin-bottom: 6px;
}

.prose a {
  color: var(--accent-dark);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 32px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.back-link:hover {
  border-color: var(--text);
  text-decoration: none;
}

/* =============================================
   Responsive
   ============================================= */

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    gap: 14px;
  }
}
