/* ==========================================================================
   影子云 (Yingzi Cloud) Warm Cream & Smiling Cloud Design System
   Domain: yingzi.homes
   Theme: Warm Beige / Cream with Asymmetric Typography & Floating Smiling Clouds
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Noto+Sans+SC:wght@400;500;700;900&family=ZCOOL+XiaoWei&display=swap');

:root {
  /* Warm Beige Palette */
  --bg-cream: #FAF6F0;
  --bg-cream-soft: #F4ECE1;
  --bg-cream-dark: #EBE1D3;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFDF9;
  
  /* Text Colors */
  --text-primary: #2D2723;
  --text-secondary: #5F564D;
  --text-muted: #8E8377;
  
  /* Accent Palette */
  --primary: #4F46E5;          /* Deep Indigo */
  --primary-hover: #4338CA;
  --primary-soft: rgba(79, 70, 229, 0.1);
  
  --accent-orange: #FF6B4A;    /* Warm Coral Orange */
  --accent-yellow: #F59E0B;    /* Sunset Yellow */
  --accent-teal: #0D9488;      /* Warm Teal */
  --accent-pink: #EC4899;      /* Cheerful Pink */

  /* Borders & Shadows */
  --border-light: rgba(142, 131, 119, 0.18);
  --border-medium: rgba(142, 131, 119, 0.32);
  --border-accent: rgba(79, 70, 229, 0.35);
  
  --shadow-soft: 0 12px 36px rgba(100, 85, 65, 0.08);
  --shadow-hover: 0 20px 45px rgba(100, 85, 65, 0.14);
  --shadow-glow: 0 10px 30px rgba(79, 70, 229, 0.2);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  --font-sans: 'Noto Sans SC', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Noto Sans SC', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: radial-gradient(circle at 10% 20%, #FFFDF9 0%, #FAF6F0 50%, #F4ECE1 100%);
}

/* Side Floating Smiling Clouds Container */
.side-cloud {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 8px 18px rgba(120, 100, 70, 0.12));
  animation: cloudFloat 6s ease-in-out infinite alternate;
}

.cloud-left-top {
  top: 130px;
  left: 2%;
  width: 90px;
}

.cloud-right-top {
  top: 160px;
  right: 2%;
  width: 110px;
  animation-delay: -2s;
}

.cloud-mid-left {
  top: 850px;
  left: 1.5%;
  width: 85px;
  animation-delay: -3.5s;
}

.cloud-mid-right {
  top: 1400px;
  right: 2%;
  width: 100px;
  animation-delay: -1.5s;
}

.cloud-bottom-left {
  bottom: 600px;
  left: 2%;
  width: 95px;
  animation-delay: -4s;
}

@keyframes cloudFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
  100% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(250, 246, 240, 0.88);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
  transition: all 0.3s ease;
}

.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-primary);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.5px;
}

.brand-logo img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.2);
  transition: transform 0.3s ease;
}

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

.brand-badge {
  font-size: 0.72rem;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-yellow));
  color: #ffffff;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 4px;
}

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

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #3730A3 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(79, 70, 229, 0.35);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--text-primary);
  border-color: var(--border-medium);
  box-shadow: 0 4px 12px rgba(100, 85, 65, 0.05);
}

.btn-secondary:hover {
  background: #FFFDF9;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-orange) 0%, #EA580C 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 107, 74, 0.3);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 74, 0.45);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Distinct Asymmetric Hero Section */
.hero {
  padding: 70px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

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

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  box-shadow: 0 4px 15px rgba(100, 85, 65, 0.06);
  margin-bottom: 24px;
}

.hero-pill .dot {
  width: 10px;
  height: 10px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
}

/* Unique Asymmetric Typography Layout */
.hero-title-asymmetric {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -1px;
  color: var(--text-primary);
}

.hero-title-asymmetric .line-1 {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0px;
  margin-bottom: 6px;
}

.hero-title-asymmetric .line-highlight {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-title-asymmetric .line-badge-text {
  display: inline-block;
  background: rgba(255, 107, 74, 0.12);
  color: var(--accent-orange);
  padding: 2px 14px;
  border-radius: 14px;
  font-size: 1.8rem;
  font-weight: 800;
  vertical-align: middle;
  margin-left: 8px;
  transform: rotate(-2deg);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 620px;
}

.hero-desc strong {
  color: var(--text-primary);
  background: rgba(79, 70, 229, 0.08);
  padding: 0 6px;
  border-radius: 4px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero Right Side Display Card with Smiling Cloud Illustration */
.hero-right-illustration {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.hero-cloud-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.smiling-cloud-hero-svg {
  width: 140px;
  height: 140px;
  filter: drop-shadow(0 10px 20px rgba(79, 70, 229, 0.15));
  animation: cloudBounce 4s ease-in-out infinite alternate;
}

@keyframes cloudBounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-10px) scale(1.03); }
}

.hero-cloud-badge {
  background: var(--bg-cream-soft);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 30px;
}

/* Quick Stats Bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-medium);
}

.stat-item-mini h4 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-item-mini p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Section Header (Distinct Typography Alignment) */
.section-header {
  text-align: left;
  max-width: 720px;
  margin: 0 0 45px;
  position: relative;
}

.section-header::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--primary));
  border-radius: 4px;
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

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

/* Features Section */
.features-section {
  padding: 70px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-hover);
}

.feature-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-cream-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
}

.card-smiling-cloud-icon {
  width: 36px;
  height: 36px;
  opacity: 0.8;
}

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

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

/* Pricing Section */
.pricing-section {
  padding: 70px 0;
  background: var(--bg-cream-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.pricing-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 15px 40px rgba(79, 70, 229, 0.15);
  transform: scale(1.02);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  right: 24px;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 14px;
}

.pricing-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

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

.pricing-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price .currency {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-orange);
}

.pricing-price .amount {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

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

.pricing-features li svg {
  color: #10B981;
  flex-shrink: 0;
}

/* Speed / Node Matrix */
.speed-section {
  padding: 70px 0;
}

.nodes-table-wrapper {
  background: #FFFFFF;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  box-shadow: var(--shadow-soft);
}

.nodes-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.nodes-table th, .nodes-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
}

.nodes-table th {
  background: var(--bg-cream-soft);
  color: var(--text-secondary);
  font-weight: 700;
}

.node-flag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text-primary);
}

.ping-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.ping-low {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.ping-mid {
  background: rgba(245, 158, 11, 0.12);
  color: #D97706;
}

/* Client Tutorial Section */
.tutorial-section {
  padding: 70px 0;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.client-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-soft);
}

.client-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.client-card h4 {
  font-size: 1.15rem;
  margin: 12px 0 6px;
  color: var(--text-primary);
}

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

/* User Reviews Section */
.reviews-section {
  padding: 70px 0;
  background: var(--bg-cream-soft);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

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

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
}

.review-stars {
  color: #F59E0B;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.98rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--primary));
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
}

.author-info h5 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}

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

/* FAQ Section */
.faq-section {
  padding: 70px 0;
}

.faq-list {
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s ease;
}

.faq-item.active {
  border-color: var(--primary);
}

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

.faq-answer {
  padding: 0 26px 22px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.75;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

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

/* Articles Section */
.articles-section {
  padding: 70px 0;
  background: var(--bg-cream-soft);
  border-top: 1px solid var(--border-light);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.article-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.article-tags-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.tag-pill-badge {
  background: rgba(6, 182, 212, 0.08);
  color: #0284c7;
  border: 1px solid rgba(6, 182, 212, 0.3);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 8px;
  letter-spacing: -0.2px;
}

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

.article-card h3 a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.article-card h3 a:hover {
  color: var(--primary);
}

.article-excerpt {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.68;
  margin-bottom: 24px;
}

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #0284c7;
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.read-more-btn:hover {
  color: var(--primary);
  transform: translateX(4px);
}


/* Article Detail Layout */
.article-layout {
  padding: 60px 0 100px;
}

.article-header {
  max-width: 860px;
  margin: 0 auto 40px;
}

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

.breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
}

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

.article-title-main {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.article-info-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 20px;
}

.article-body {
  max-width: 860px;
  margin: 0 auto;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.article-body h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 42px 0 20px;
  border-left: 5px solid var(--accent-orange);
  padding-left: 16px;
}

.article-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 30px 0 16px;
}

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

.cta-box {
  background: #FFFFFF;
  border: 2px dashed var(--primary-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--shadow-soft);
}

.cta-box h3 {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 14px;
}

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

/* Footer & PBN Section (Core Task 2 - Dofollow Links) */
footer {
  background: #F0E8DC;
  border-top: 1px solid var(--border-medium);
  padding: 45px 0 35px;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

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

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

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

/* Discrete, small font PBN Links Section */
.footer-pbn-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.82rem;
  color: #786C60;
  margin-top: 8px;
}

.footer-pbn-links span {
  color: #9E9082;
}

.footer-pbn-links a {
  color: #5F5448;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.copyright {
  font-size: 0.82rem;
  color: #786C60;
}

/* Responsive Breakdown */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .side-cloud {
    display: none; /* Hide side clouds on smaller screens to avoid overflow */
  }
  .hero-title-asymmetric {
    font-size: 2.7rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-title-asymmetric {
    font-size: 2.2rem;
  }
  .hero-title-asymmetric .line-1 {
    font-size: 1.5rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
}
