/* ==========================================================================
   FreeCatNet Official Design System & Stylesheet
   ========================================================================== */

/* 1. Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Noto+Sans+SC:wght@300;400;500;700;900&display=swap');

/* 2. Custom CSS Variables */
:root {
  --bg-primary: #0a0b0d;
  --bg-secondary: #12141c;
  --bg-tertiary: #1a1d28;
  --color-primary: #00f2fe; /* Neon Cyan */
  --color-primary-rgb: 0, 242, 254;
  --color-secondary: #ff7597; /* Cute Cat Pink */
  --color-secondary-rgb: 255, 117, 151;
  --color-accent: #4facfe; /* Royal Blue */
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-dark: #1f2937;
  --card-glass-bg: rgba(26, 29, 40, 0.65);
  --card-glass-border: rgba(255, 255, 255, 0.08);
  --font-family: 'Outfit', 'Noto Sans SC', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-neon: 0 0 15px rgba(0, 242, 254, 0.25);
  --shadow-pink: 0 0 15px rgba(255, 117, 151, 0.25);
}

/* 3. Base & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-main);
  overflow-x: hidden;
}

body {
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

/* 4. Canvas & Interactive elements */
#trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

/* 5. Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 6. Layout Helpers */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  position: relative;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px auto;
  font-size: 1.1rem;
}

/* 7. Header/Navbar */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 13, 0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-glass-border);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 12px 0;
  background: rgba(10, 11, 13, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  transition: var(--transition-smooth);
}

.logo:hover svg {
  fill: var(--color-secondary);
  transform: rotate(-10deg) scale(1.1);
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  width: 100%;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  outline: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: var(--bg-primary);
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid var(--card-glass-border);
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: var(--transition-smooth);
}

/* 8. Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  background: radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(255, 117, 151, 0.05) 0%, transparent 40%);
}

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

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 48px;
}

.hero-features {
  display: flex;
  gap: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-item span {
  font-weight: 600;
  font-size: 1.1rem;
}

.hero-feature-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

/* Interactive Cat Element in Hero */
.hero-cat-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.interactive-cat {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, rgba(0, 242, 254, 0.03), rgba(255, 117, 151, 0.03)), var(--card-glass-bg);
  border: 2px solid rgba(0, 242, 254, 0.2);
  border-radius: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), inset 0 0 25px rgba(0, 242, 254, 0.05);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.interactive-cat:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 45px rgba(255, 117, 151, 0.2), inset 0 0 35px rgba(255, 117, 151, 0.08);
  border-color: rgba(255, 117, 151, 0.4);
}

.cat-svg {
  width: 200px;
  height: 200px;
}

.cat-eye {
  transform-origin: center;
  transition: transform 0.05s ease;
}

.cat-tail {
  transform-origin: bottom right;
  animation: tailWag 3s ease-in-out infinite;
}

@keyframes tailWag {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(15deg); }
}

/* Walking Cat Animations inside Pricing Cards */
@keyframes swingLegLeft {
  0% { transform: rotate(-22deg); }
  100% { transform: rotate(22deg); }
}
@keyframes swingLegRight {
  0% { transform: rotate(22deg); }
  100% { transform: rotate(-22deg); }
}
@keyframes bodyBob {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}
@keyframes catTailWag {
  0% { transform: rotate(-10deg); }
  100% { transform: rotate(15deg); }
}

.walking-cat {
  width: 90px;
  height: 60px;
  margin-bottom: 20px;
  display: block;
  overflow: visible;
}

.walking-cat .cat-leg-back-left,
.walking-cat .cat-leg-front-left {
  transform-origin: 50% 0%;
  animation: swingLegLeft 0.4s infinite alternate ease-in-out;
}

.walking-cat .cat-leg-back-right,
.walking-cat .cat-leg-front-right {
  transform-origin: 50% 0%;
  animation: swingLegRight 0.4s infinite alternate ease-in-out;
}

.walking-cat .cat-body-group {
  animation: bodyBob 0.2s infinite alternate ease-in-out;
}

.walking-cat .cat-tail-anim {
  transform-origin: 15px 30px;
  animation: catTailWag 0.4s infinite alternate ease-in-out;
}

/* Feature Image Container styling */
.feature-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.cat-speech-bubble {
  position: absolute;
  top: 10px;
  right: -20px;
  background: #fff;
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: var(--transition-smooth);
  pointer-events: none;
}

.cat-speech-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #fff transparent;
  display: block;
  width: 0;
}

.interactive-cat.meow .cat-speech-bubble {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* 9. Feature Cards Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-glass-bg);
  border: 1px solid var(--card-glass-border);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(0, 242, 254, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-card:nth-child(2n) .feature-icon-wrapper {
  background: rgba(255, 117, 151, 0.08);
  color: var(--color-secondary);
}

.feature-card:nth-child(2n)::before {
  background: linear-gradient(90deg, var(--color-secondary), #ff9eb5);
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

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

/* 10. Pricing Section */
.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.pricing-toggle-label {
  font-weight: 600;
  font-size: 1.05rem;
}

.pricing-toggle-label.active {
  color: var(--color-primary);
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 32px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-tertiary);
  transition: .4s;
  border-radius: 34px;
  border: 1px solid var(--card-glass-border);
}

.slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: var(--color-primary);
  transition: .4s;
  border-radius: 50%;
  box-shadow: var(--shadow-neon);
}

input:checked + .slider {
  background-color: var(--bg-tertiary);
}

input:checked + .slider:before {
  transform: translateX(28px);
  background-color: var(--color-secondary);
  box-shadow: var(--shadow-pink);
}

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

.pricing-card {
  background: var(--card-glass-bg);
  border: 1px solid var(--card-glass-border);
  border-radius: 24px;
  padding: 40px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.pricing-card.popular {
  border-color: rgba(255, 117, 151, 0.4);
  background: radial-gradient(circle at 100% 0%, rgba(255, 117, 151, 0.08) 0%, transparent 60%), var(--card-glass-bg);
  box-shadow: 0 10px 30px rgba(255, 117, 151, 0.1);
  transform: scale(1.03);
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
}

.pricing-card.popular:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: var(--color-secondary);
  box-shadow: 0 15px 35px rgba(255, 117, 151, 0.2);
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 25px;
  background: linear-gradient(135deg, var(--color-secondary), #ff9eb5);
  color: var(--bg-primary);
  padding: 4px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-header h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #fff;
}

.pricing-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
  display: block;
}

.price-box {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
}

.currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-right: 4px;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.period {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-features {
  margin-top: 30px;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  flex-grow: 1;
}

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

.pricing-features li.included {
  color: var(--text-main);
}

.pricing-features svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.pricing-card.popular .pricing-features svg {
  color: var(--color-secondary);
}

.pricing-action {
  width: 100%;
  text-align: center;
}

/* 11. Client Download Section */
.download-card {
  background: linear-gradient(135deg, rgba(26, 29, 40, 0.8), rgba(18, 20, 28, 0.9));
  border: 1px solid var(--card-glass-border);
  border-radius: 28px;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.download-info h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.download-info p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.download-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 30px;
  background: var(--bg-tertiary);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid var(--card-glass-border);
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-weight: 600;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.9rem;
}

.tab-btn.active {
  background: var(--color-primary);
  color: var(--bg-primary);
  box-shadow: var(--shadow-neon);
}

.download-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.download-content.active {
  display: block;
}

.download-client-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.client-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--card-glass-border);
  padding: 16px 20px;
  border-radius: 14px;
  transition: var(--transition-smooth);
}

.client-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--color-secondary);
}

.client-name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.client-name svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
}

.client-dl-btn {
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(0, 242, 254, 0.1);
  color: var(--color-primary);
  font-weight: 600;
  border: 1px solid rgba(0, 242, 254, 0.2);
}

.client-dl-btn:hover {
  background: var(--color-primary);
  color: var(--bg-primary);
}

.dl-illustration {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dl-illustration svg {
  width: 80%;
  max-width: 320px;
  filter: drop-shadow(0 15px 30px rgba(0,242,254,0.15));
  animation: float 4s ease-in-out infinite;
}

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

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 12. Reviews Section */
.reviews-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.reviews-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.review-card {
  background: var(--card-glass-bg);
  border: 1px solid var(--card-glass-border);
  padding: 40px;
  border-radius: 24px;
  text-align: center;
  position: relative;
}

.review-rating {
  color: #ffb703;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.review-text {
  font-size: 1.15rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 30px;
  line-height: 1.7;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  border: 2px solid var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-secondary);
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--color-secondary);
  width: 24px;
  border-radius: 4px;
}

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

.faq-item {
  background: var(--card-glass-bg);
  border: 1px solid var(--card-glass-border);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(0, 0, 0, 0.15);
}

.faq-answer-inner {
  padding: 0 30px 24px 30px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.faq-icon {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.faq-item.active {
  border-color: rgba(0, 242, 254, 0.2);
}

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

.article-card {
  background: var(--card-glass-bg);
  border: 1px solid var(--card-glass-border);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
}

.article-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  position: relative;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 117, 151, 0.25);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-body {
  padding: 30px;
}

.article-meta {
  font-size: 0.8rem;
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  display: block;
}

.article-card:nth-child(2n) .article-meta {
  color: var(--color-secondary);
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 14px;
  color: #fff;
  line-height: 1.4;
}

.article-excerpt {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.article-footer {
  padding: 0 30px 30px 30px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.article-card:hover .read-more {
  color: #fff;
  gap: 12px;
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: var(--transition-smooth);
}

/* 15. Footer */
footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--card-glass-border);
  padding: 60px 0 30px 0;
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 36px;
  height: 36px;
  fill: var(--color-secondary);
}

.footer-desc {
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 30px auto;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

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

.footer-link:hover {
  color: #fff;
}

.friendship-links-container {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.friendship-links-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.pbn-links-area {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.pbn-link {
  font-size: 0.9rem;
  color: var(--color-primary) !important;
  opacity: 0.75;
  transition: var(--transition-smooth);
  font-weight: 500;
}

.pbn-link:hover {
  opacity: 1;
  color: var(--color-secondary) !important;
  text-shadow: 0 0 8px rgba(255, 117, 151, 0.3);
}

.pbn-link:hover {
  color: var(--color-primary) !important;
  text-decoration: underline;
}

.copyright {
  margin-top: 30px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

/* 16. Article Page Specifics */
.article-header {
  padding: 160px 0 60px 0;
  background: radial-gradient(circle at top, rgba(0,242,254,0.06), transparent 50%);
  text-align: center;
  border-bottom: 1px solid var(--card-glass-border);
}

.article-header h1 {
  font-size: 2.8rem;
  font-weight: 800;
  max-width: 900px;
  margin: 20px auto;
  line-height: 1.25;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.breadcrumb a:hover {
  color: var(--color-primary);
}

.article-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.rich-content {
  color: #d1d5db;
  font-size: 1.1rem;
  line-height: 1.8;
}

.rich-content p {
  margin-bottom: 24px;
}

.rich-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px 0;
  color: #fff;
}

.rich-content h3 {
  font-size: 1.4rem;
  margin: 30px 0 16px 0;
  color: #fff;
}

.rich-content ul, .rich-content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.rich-content li {
  margin-bottom: 10px;
}

.rich-content strong {
  color: #fff;
}

.rich-content a {
  color: var(--color-primary);
  border-bottom: 1px dashed var(--color-primary);
}

.rich-content a:hover {
  color: var(--color-secondary);
  border-bottom-style: solid;
  border-color: var(--color-secondary);
}

/* 17. Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .download-card {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 24px;
  }
  .dl-illustration {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-description {
    margin: 0 auto 30px auto;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-features {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .interactive-cat {
    width: 260px;
    height: 260px;
  }
  .cat-svg {
    width: 160px;
    height: 160px;
  }
  .nav-menu {
    display: none; /* Mobile menu toggled via JS */
  }
  .menu-toggle {
    display: flex;
  }
  .pricing-card.popular {
    transform: scale(1);
  }
  
  /* Mobile Navigation active state */
  .nav-menu.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--card-glass-border);
    padding: 30px 24px;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
}

/* 18. Airport Recommendations Section */
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.recommend-card {
  background: var(--card-glass-bg);
  border: 1px solid var(--card-glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.recommend-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 242, 254, 0.35);
  box-shadow: 0 15px 35px rgba(0, 242, 254, 0.15);
}

.recommend-card.featured {
  border-color: rgba(255, 117, 151, 0.4);
  background: radial-gradient(circle at 100% 0%, rgba(255, 117, 151, 0.05) 0%, transparent 60%), var(--card-glass-bg);
  box-shadow: 0 10px 30px rgba(255, 117, 151, 0.05);
}

.recommend-card.featured:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 15px 35px rgba(255, 117, 151, 0.2);
}

.recommend-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-secondary), #ff9eb5);
  color: var(--bg-primary);
  padding: 4px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

.recommend-image-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.recommend-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.recommend-card:hover .recommend-image-wrapper img {
  transform: scale(1.05);
}

.recommend-body {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.recommend-rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.recommend-stars {
  color: #ffb703;
  font-weight: 700;
  font-size: 1.1rem;
}

.recommend-score {
  font-size: 0.9rem;
  color: var(--color-primary);
  font-weight: 700;
  background: rgba(0, 242, 254, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
}

.recommend-card.featured .recommend-score {
  color: var(--color-secondary);
  background: rgba(255, 117, 151, 0.1);
}

.recommend-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.recommend-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.recommend-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 20px;
}

.recommend-spec-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.recommend-spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.recommend-spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.recommend-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recommend-price-box {
  display: flex;
  flex-direction: column;
}

.recommend-price-val {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.recommend-price-val span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* 19. Real Cat Photo Styling in Hero */
.real-cat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
  transition: var(--transition-smooth);
}

.interactive-cat:hover .real-cat-img {
  transform: scale(1.04);
}
