/* 
  网猫 (FlyCat) Accelerator - Pure Native CSS 
  Style: Fresh White Theme with Crimson-Red & Sunburst-Yellow Gradient + Staggered Cat Paw Background
  Ultra-fast, zero-dependency, mobile-first responsive stylesheet
*/

:root {
  --bg-primary: #ffffff;
  --bg-secondary: #fffcf9;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --border-color: #ffe4e6;
  --border-highlight: rgba(244, 63, 94, 0.4);
  
  --text-primary: #1c1917;
  --text-secondary: #44403c;
  --text-muted: #78716c;
  
  --accent-red: #f43f5e;
  --accent-orange: #ff6b00;
  --accent-yellow: #f59e0b;
  --accent-green: #10b981;
  --accent-gradient: linear-gradient(135deg, #f43f5e 0%, #ff6b00 50%, #f59e0b 100%);
  --btn-gradient: linear-gradient(135deg, #f43f5e 0%, #ff5232 50%, #f59e0b 100%);
  --btn-gradient-hover: linear-gradient(135deg, #e11d48 0%, #d97706 100%);
  --btn-accent-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  
  --font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  background-color: var(--bg-primary);
  /* Playful & Clean Staggered Paw Print Overlay Pattern on White */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none'%3E%3Cg transform='rotate(15 30 35)' opacity='0.045' fill='%23f43f5e'%3E%3Cellipse cx='30' cy='42' rx='8.5' ry='6.5'/%3E%3Ccircle cx='19' cy='28' r='3.2'/%3E%3Ccircle cx='26' cy='23' r='3.2'/%3E%3Ccircle cx='34' cy='23' r='3.2'/%3E%3Ccircle cx='41' cy='28' r='3.2'/%3E%3C/g%3E%3Cg transform='rotate(-20 90 85)' opacity='0.035' fill='%23f59e0b'%3E%3Cellipse cx='90' cy='92' rx='8.5' ry='6.5'/%3E%3Ccircle cx='79' cy='78' r='3.2'/%3E%3Ccircle cx='86' cy='73' r='3.2'/%3E%3Ccircle cx='94' cy='73' r='3.2'/%3E%3Ccircle cx='101' cy='78' r='3.2'/%3E%3C/g%3E%3C/svg%3E");
}

/* Ambient Radiant Warm Glows */
body::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 30%;
  transform: translateX(-50%);
  width: 850px;
  height: 550px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.07) 0%, rgba(245, 158, 11, 0.04) 50%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: absolute;
  top: 100px;
  right: -100px;
  width: 650px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

a:hover {
  color: var(--accent-yellow);
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

/* Typography Helpers */
.text-center { text-align: center; }

/* Dynamic Red to Yellow Gradient Text */
.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: var(--accent-red);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(244, 63, 94, 0.08);
}

.section-title {
  font-size: 2.15rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.25;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 3rem auto;
}

/* Buttons (Vibrant Red & Gold Gradient Theme) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.85rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(244, 63, 94, 0.2);
}

.btn-primary {
  background: var(--btn-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(244, 63, 94, 0.35);
}

.btn-primary:hover {
  background: var(--btn-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(244, 63, 94, 0.45);
  color: #ffffff;
}

.btn-accent {
  background: var(--btn-accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.45);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--text-primary);
  border: 1px solid #fca5a5;
}

.btn-outline:hover {
  border-color: var(--accent-red);
  color: var(--accent-red);
  background: #fff1f2;
  transform: translateY(-2px);
}

.btn-block { width: 100%; }

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.1rem;
  border-radius: 12px;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #ffe4e6;
  padding: 0.85rem 0;
  box-shadow: 0 2px 12px rgba(244, 63, 94, 0.04);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-red);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.nav-links a:hover {
  color: var(--accent-red);
}

/* Hero Section (Left-Right Split Layout) */
.hero-section {
  padding: 4rem 0 3.5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-headline {
  font-size: 2.65rem;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.hero-subtitle {
  font-size: 1.12rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 0.5rem;
  border-top: 1px dashed #fecdd3;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.badge-item svg {
  width: 17px;
  height: 17px;
  fill: var(--accent-green);
}

/* Hero Dynamic Visual Card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-window {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  border: 1px solid #fecdd3;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(244, 63, 94, 0.1), 0 2px 6px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* Window Header Bar */
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ffe4e6;
  margin-bottom: 1.25rem;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #10b981; }

.window-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent-green);
  background: #ecfdf5;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  border: 1px solid #a7f3d0;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Live Ping & Nodes Grid Animation */
.nodes-monitor {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.node-row {
  background: #fffcf9;
  border: 1px solid #fef3c7;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.node-row:hover {
  border-color: var(--accent-yellow);
  background: #fff8f0;
}

.node-info {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.flag {
  font-size: 1.1rem;
}

.node-ping {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ping-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  font-family: monospace;
}

.speed-bar {
  width: 70px;
  height: 6px;
  background: #fef3c7;
  border-radius: 3px;
  overflow: hidden;
}

.speed-progress {
  height: 100%;
  background: var(--accent-gradient);
  border-radius: 3px;
  animation: shimmer 2.5s infinite ease-in-out;
}

.speed-progress.fast { width: 92%; }
.speed-progress.ultra { width: 98%; }
.speed-progress.medium { width: 85%; }

@keyframes shimmer {
  0% { opacity: 0.75; }
  50% { opacity: 1; filter: brightness(1.1); }
  100% { opacity: 0.75; }
}

.live-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #ffe4e6;
}

.stat-box {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.85rem;
  text-align: center;
}

.stat-box-title {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-box-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--accent-red);
}

/* Core Advantages (3 Cards) */
.section {
  padding: 4.5rem 0;
  border-bottom: 1px solid #ffe4e6;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid #ffe4e6;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.04);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(244, 63, 94, 0.12);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.card-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-red);
}

.card-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Media & AI Support Grid */
.support-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.support-box {
  background: var(--bg-card);
  border: 1px solid #ffe4e6;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.04);
}

.support-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ffe4e6;
}

.support-header svg {
  width: 26px;
  height: 26px;
  fill: var(--accent-yellow);
}

.support-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tag-item {
  background: #fffcf9;
  border: 1px solid #fef3c7;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.tag-item span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-red);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid #ffe4e6;
  border-radius: var(--radius-md);
  padding: 2.25rem 1.6rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.04);
}

.pricing-card.featured {
  background: #ffffff;
  border-color: var(--accent-red);
  box-shadow: 0 12px 35px rgba(244, 63, 94, 0.16);
}

.featured-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--btn-gradient);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-plan-name {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
}

.pricing-price span {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-features li svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-green);
  flex-shrink: 0;
}

/* SEO Articles Card Grid */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.article-card {
  background: var(--bg-card);
  border: 1px solid #ffe4e6;
  border-radius: var(--radius-md);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.04);
}

.article-card:hover {
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(244, 63, 94, 0.12);
}

.article-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-red);
  background: #fff1f2;
  border: 1px solid #fecdd3;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.85rem;
}

.article-title {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.article-title a {
  color: var(--text-primary);
}

.article-title a:hover {
  color: var(--accent-red);
}

.article-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

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

.read-link {
  font-weight: 700;
  color: var(--accent-red);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.read-link:hover {
  color: var(--accent-yellow);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid #ffe4e6;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.04);
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.avatar-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
}

.user-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
}

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

.testimonial-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid #ffe4e6;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.02);
}

.faq-item[open] {
  border-color: var(--border-highlight);
  background: #fffcf9;
}

.faq-summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: var(--text-primary);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--accent-red);
  transition: var(--transition);
}

.faq-item[open] .faq-summary::after {
  content: "−";
  color: var(--accent-yellow);
}

.faq-content {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  border-top: 1px dashed #ffe4e6;
  margin-top: 0.5rem;
  padding-top: 1rem;
}

/* Subpages Content Layout */
.subpage-container {
  padding: 4rem 0 6rem 0;
  max-width: 900px;
  margin: 0 auto;
}

.subpage-header {
  margin-bottom: 3rem;
  text-align: center;
}

.subpage-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.subpage-intro {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.content-block {
  background: var(--bg-card);
  border: 1px solid #ffe4e6;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin-bottom: 2rem;
  box-shadow: 0 6px 20px rgba(244, 63, 94, 0.04);
}

.content-block h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--accent-red);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.content-block p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block ul {
  margin-left: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.content-block li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.highlight-box {
  background: #fff1f2;
  border-left: 4px solid var(--accent-red);
  padding: 1.25rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.25rem 0;
}

.highlight-box p {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0;
}

/* Footer & PBN Links Styling (Warm White Theme) */
.footer {
  margin-top: auto;
  background: #fffcf9;
  border-top: 1px solid #ffe4e6;
  padding: 3rem 0 2rem 0;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  list-style: none;
  margin-bottom: 1.5rem;
}

.footer-nav a {
  color: var(--text-secondary);
  font-size: 1.05rem;
  font-weight: 600;
  transition: var(--transition);
  padding: 0.5rem 0;
}

.footer-nav a:hover {
  color: var(--accent-red);
}

/* PBN Friend Links Bar in Footer */
.footer-pbn-section {
  text-align: center;
  margin: 1.5rem 0 1.25rem 0;
  padding-top: 1.25rem;
  border-top: 1px dashed #fecdd3;
}

.pbn-title {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.footer-pbn-links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.pbn-link {
  color: var(--accent-red) !important;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  border-radius: 8px;
  transition: var(--transition);
}

.pbn-link:hover {
  color: var(--accent-yellow) !important;
  border-color: #fde68a;
  background: #fffbeb;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.18);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid #ffe4e6;
  padding-top: 1.5rem;
}

/* Mobile Responsive Breakpoints */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-content {
    text-align: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-badges {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-headline {
    font-size: 2.1rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.65rem;
  }
  .nav-links {
    display: none; /* Keep clean mobile header focused on CTA */
  }
  .footer-nav {
    flex-direction: column;
    gap: 1.25rem;
  }
  .footer-pbn-links {
    flex-direction: column;
    gap: 0.75rem;
  }
  .content-block {
    padding: 1.5rem;
  }
}
