/* neko77.homes - Warm Beige Cat Theme Landing Page & Articles Styles */
:root {
  --bg-primary: #faf6f0; /* Warm Creamy Beige */
  --bg-secondary: #f3ece0;
  --bg-card: #ffffff;
  --bg-card-hover: #fdfaf5;
  --accent-purple: #7e22ce;
  --accent-purple-glow: rgba(126, 34, 206, 0.2);
  --accent-pink: #db2777;
  --accent-pink-glow: rgba(219, 39, 119, 0.18);
  --accent-amber: #d97706;
  --accent-cyan: #0284c7;
  --text-main: #2a1f1b; /* Deep Espresso / Warm Dark Charcoal */
  --text-muted: #57463f; /* Warm Cocoa Brown */
  --text-dim: #857269;  /* Soft Warm Taupe */
  --border-color: #e8dccb;
  --border-highlight: #d8b4fe;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-main: 0 10px 30px -5px rgba(74, 52, 40, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(219, 39, 119, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(126, 34, 206, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(217, 119, 6, 0.04) 0%, transparent 60%);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Floating Cat Paw Background Decor */
body::after {
  content: "🐾";
  position: fixed;
  font-size: 9rem;
  opacity: 0.04;
  top: 15%;
  right: 4%;
  pointer-events: none;
  z-index: 0;
  transform: rotate(20deg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* Header Navbar on Beige Theme */
header.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 14px 0;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.brand-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(126, 34, 206, 0.15);
  transition: var(--transition);
}

.brand-logo:hover img {
  transform: scale(1.08) rotate(-4deg);
}

.brand-name {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-main);
}

.brand-badge {
  font-size: 0.72rem;
  background: linear-gradient(135deg, #be185d, var(--accent-purple));
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent-purple);
}

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

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 25px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-recommend {
  background: #fce7f3;
  color: #be185d;
  border-color: #fbcfe8;
}

.btn-recommend:hover {
  background: #fbcfe8;
  color: #9f1239;
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.15);
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(109, 40, 217, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  box-shadow: 0 6px 20px rgba(91, 33, 182, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  border-color: var(--border-color);
}

.btn-outline:hover {
  border-color: var(--accent-purple);
  background: #fdf8f0;
}

.btn-lg {
  padding: 14px 30px;
  font-size: 1.05rem;
}

/* Hero Section */
.hero {
  padding: 85px 0 65px;
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  border-radius: 30px;
  color: #6b21a8;
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 22px;
  color: var(--text-main);
  letter-spacing: -1px;
}

.hero-title span.gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #be185d 50%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 780px;
  margin: 0 auto 38px;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 45px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 920px;
  margin: 40px auto 0;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-main);
  position: relative;
}

.stat-card::before {
  content: "🐾";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.9rem;
  opacity: 0.3;
}

.stat-val {
  font-size: 2.1rem;
  font-weight: 900;
  color: #7e22ce;
}

.stat-lbl {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Feature Grid */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.section-tag {
  color: #be185d;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--shadow-main);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: #c084fc;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -8px rgba(74, 52, 40, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #f3e8ff;
  border: 1px solid #e9d5ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  color: #7e22ce;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* Pricing Section */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 45px;
}

.toggle-btn {
  background: #ffffff;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-btn.active {
  background: linear-gradient(135deg, #7e22ce, #be185d);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(126, 34, 206, 0.25);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 38px 30px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-main);
}

.price-card.popular {
  border-color: #be185d;
  background: #ffffff;
  box-shadow: 0 12px 40px -8px rgba(190, 24, 93, 0.15);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #be185d, #7e22ce);
  color: #ffffff;
  padding: 4px 18px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.price-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 8px;
}

.price-desc {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 22px;
  min-height: 42px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 22px;
}

.price-amount span {
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 500;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.price-features li {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: "🐾";
  font-size: 0.8rem;
}

/* Articles Section */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 26px;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-main);
}

.article-card:hover {
  border-color: #be185d;
  transform: translateY(-4px);
  box-shadow: 0 14px 36px -6px rgba(74, 52, 40, 0.12);
}

.article-tag {
  font-size: 0.78rem;
  color: #be185d;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.article-card h3 {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 14px;
}

.article-card h3 a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

.article-card h3 a:hover {
  color: #7e22ce;
}

.article-excerpt {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 22px;
  flex-grow: 1;
}

.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-main);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #be185d, #7e22ce);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #ffffff;
  font-size: 1.1rem;
}

.review-user h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
}

.review-user span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.review-rating {
  color: #d97706;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* FAQ Accordion Section */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-main);
}

.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.08rem;
  font-weight: 800;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: #7e22ce;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 26px;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 320px;
  padding: 0 26px 24px;
}

/* Article Body Typography for Beige Theme */
.article-header {
  padding: 70px 0 45px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.article-title-main {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.35;
  color: var(--text-main);
  margin: 18px 0;
}

.article-body {
  max-width: 880px;
  margin: 45px auto;
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.article-body h2 {
  font-size: 1.65rem;
  color: var(--text-main);
  margin: 40px 0 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.article-body h2::before {
  content: "🐾";
  font-size: 1.2rem;
}

.article-body h3 {
  font-size: 1.35rem;
  color: var(--text-main);
  margin: 28px 0 14px;
  font-weight: 800;
}

.article-body p {
  margin-bottom: 22px;
}

.article-body ul, .article-body ol {
  margin: 0 0 26px 26px;
}

.article-body li {
  margin-bottom: 10px;
}

.article-body blockquote {
  border-left: 4px solid #be185d;
  padding: 18px 24px;
  background: #fce7f3;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 26px 0;
  font-style: italic;
  color: #831843;
}

.cta-box {
  background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
  border: 1px solid #e9d5ff;
  border-radius: var(--radius-md);
  padding: 36px;
  text-align: center;
  margin: 45px 0;
  box-shadow: 0 10px 30px rgba(126, 34, 206, 0.08);
}

.cta-box h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-weight: 900;
  color: var(--text-main);
}

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

/* Footer Section */
footer.site-footer {
  background: #f3ece0;
  border-top: 1px solid var(--border-color);
  padding: 45px 0 28px;
  margin-top: 90px;
  color: var(--text-dim);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}

.footer-links-pbn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--text-dim);
}

.footer-links-pbn span.link-label {
  color: var(--text-dim);
}

.footer-links-pbn a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: var(--transition);
}

.footer-links-pbn a:hover {
  color: #7e22ce;
  text-decoration: underline;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .nav-menu {
    display: none;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .features-grid, .pricing-grid, .articles-grid, .reviews-grid {
    grid-template-columns: 1fr;
  }
}
