/* BarberSys Premium Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@500;600;700;800;900&display=swap');

html {
  scroll-behavior: smooth;
}

:root {
  --bg-dark: #0c0f17;
  --bg-card: #151a24;
  --bg-card-hover: #1c2331;
  --primary: #d4af37;
  --primary-hover: #e5be48;
  --primary-glow: rgba(212, 175, 55, 0.25);
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(212, 175, 55, 0.3);
  --radius: 16px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
}

.text-gold {
  color: var(--primary);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.logo-badge {
  background: linear-gradient(135deg, var(--primary), #b38f24);
  color: #0c0f17;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 0 15px var(--primary-glow);
}

.nav-cta {
  background: var(--primary);
  color: #0c0f17;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.nav-download {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: transparent;
}

.nav-download:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  padding: 70px 0 80px;
  text-align: center;
  background: linear-gradient(rgba(12, 15, 23, 0.82) 0%, rgba(12, 15, 23, 0.96) 100%), url('bg_barber.jpg') no-repeat center center / cover;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 48px;
  font-weight: 900;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 24px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 36px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #b89428 100%);
  color: #0c0f17;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px var(--primary-glow);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-preview {
  margin-top: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(12, 15, 23, 0) 100%);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.05);
}

.hero-preview img {
  width: 100%;
  border-radius: 12px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Features Grid */
.features {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing Card */
.pricing {
  padding: 80px 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.price-card {
  max-width: 550px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--primary);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px var(--primary-glow);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #0c0f17;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.old-price {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 18px;
  margin-bottom: 4px;
}

.current-price {
  font-size: 54px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #ffffff;
  margin-bottom: 8px;
}

.price-desc {
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 32px;
}

.price-benefits {
  text-align: left;
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.price-benefits li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-icon {
  color: #10b981;
  font-weight: bold;
}

.guarantee-badge {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}

.faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

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

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 0;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-download {
    display: none; /* Hide header download button on mobile to prevent layout overflow */
  }
  .navbar {
    padding: 10px 0;
  }
  .logo {
    font-size: 20px;
  }
  .logo-badge {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .nav-cta {
    padding: 10px 18px;
    font-size: 13px;
  }
  .hero-title {
    font-size: 32px;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .features-grid {
    grid-template-columns: 1fr; /* Prevent mobile horizontal scroll/grid overflow */
  }
  .price-card {
    padding: 32px 20px;
  }
}
