
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  /* HYBRID THEME - Dark Hero + Light Content Sections */
  /* COLOR PALETTE: Dark Navy + Gold (D1 variant) */
  
  /* Primary backgrounds */
  --color-bg-dark: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.03);
  --color-bg-card-light: rgba(255, 255, 255, 0.95);
  
  /* Text colors for dark sections */
  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #94a3b8;
  --color-text-light-muted: #64748b;
  
  /* Text colors for light sections */
  --color-text-dark-primary: #0a0f1e;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  
  /* Accent colors */
  --color-primary: #f59e0b;
  --color-primary-light: #fbbf24;
  --color-primary-dark: #d97706;
  --color-secondary: #3b82f6;
  --color-secondary-light: #60a5fa;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* BASE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  font-weight: 600;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  line-height: 1.25;
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  line-height: 1.3;
}

p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* CONTAINER */
.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

/* BUTTON STYLES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: var(--color-secondary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-outline-dark {
  border-color: var(--color-text-dark-primary);
  color: var(--color-text-dark-primary);
  background: transparent;
}

.btn-outline-dark:hover {
  background: var(--color-text-dark-primary);
  color: #ffffff;
}

/* RESPONSIVE GRID */
.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (max-width: 768px) {
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

/* FLEXBOX UTILITIES */
.flex {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

.flex-column {
  display: flex;
  flex-direction: column;
}

/* HYBRID SECTION PATTERN - DARK HERO + LIGHT CONTENT */

/* ====== HERO SECTION (DARK) ====== */
.hero-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-dark-secondary) 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: var(--space-lg);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  color: var(--color-text-light-primary);
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  max-width: 600px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-md);
  width: 100%;
  max-width: 400px;
}

.hero-cta a {
  width: 100%;
}

@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta a {
    width: 100%;
  }
}

/* ====== FEATURES SECTION (LIGHT) ====== */
.features-section {
  background: var(--color-bg-light);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.features-title {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
}

.features-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 3vw, 2.5rem);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.feature-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
}

.feature-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== BENEFITS SECTION (DARK) ====== */
.benefits-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.benefits-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.benefits-title {
  color: var(--color-text-light-primary);
}

.benefits-description {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  color: var(--color-text-light-primary);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border-radius: 50%;
  color: #000000;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.benefit-title {
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.benefit-description {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
}

.benefits-image {
  position: relative;
  height: 400px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.15);
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .benefits-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .benefits-image {
    height: 300px;
  }
}

/* ====== COURSES SECTION (LIGHT) ====== */
.courses-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.courses-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

.courses-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.courses-title {
  color: var(--color-text-dark-primary);
  margin-bottom: var(--space-md);
}

.courses-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 3vw, 2.5rem);
}

.course-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(245, 158, 11, 0.1);
}

.course-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary);
}

.course-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--color-primary);
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  flex-grow: 1;
}

.course-level {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  width: fit-content;
  padding: var(--space-xs) var(--space-md);
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-title {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  margin-top: var(--space-xs);
}

.course-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.course-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.course-duration {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
}

.course-cta {
  width: 100%;
}

/* ====== TESTIMONIALS SECTION (DARK) ====== */
.testimonials-section {
  background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-dark-tertiary) 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.testimonials-title {
  color: var(--color-text-light-primary);
  margin-bottom: var(--space-md);
}

.testimonials-subtitle {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(2rem, 3vw, 2.5rem);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  background: rgba(245, 158, 11, 0.05);
}

.testimonial-quote {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 3rem;
  color: var(--color-primary);
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.testimonial-name {
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-size: 1rem;
}

.testimonial-role {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
}

/* ====== CTA SECTION (LIGHT) ====== */
.cta-section {
  background: var(--color-bg-light);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  color: var(--color-text-dark-primary);
}

.cta-description {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* ====== FAQ SECTION (DARK) ====== */
.faq-section {
  background: var(--color-bg-dark);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.faq-title {
  color: var(--color-text-light-primary);
}

.faq-description {
  color: var(--color-text-light-secondary);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding-bottom: var(--space-lg);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: var(--space-md);
  color: var(--color-text-light-primary);
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  transition: color 0.3s ease;
  padding: var(--space-md) 0;
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
  background: var(--color-primary);
  color: #000000;
}

.faq-answer {
  display: none;
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 0 var(--space-lg) 0;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease;
}

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

@media (max-width: 768px) {
  .faq-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
}

/* ====== STATS SECTION (LIGHT) ====== */
.stats-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 6vw, 6rem) 0;
}

.stats-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(2rem, 3vw, 3rem);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 2vw, 2rem);
}

.stat-number {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  font-weight: 600;
}

.stat-description {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

/* ====== FORM STYLES ====== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-input,
.form-textarea,
.form-select {
  padding: clamp(0.75rem, 1.5vw, 1rem);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--color-bg-light);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit-btn {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit-btn:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 768px) {
  .hero-content {
    padding: 0 var(--space-lg);
  }
  
  .benefits-image {
    height: 250px;
  }
  
  .course-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
  }
  
  .flex {
    flex-direction: column;
  }
  
  .grid {
    grid-template-columns: 1fr;
  }
}

/* ====== ACCESSIBILITY ====== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease forwards;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

  .header-business-hub {
    position: static;
    background: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    z-index: 100;
  }

  .header-business-hub-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 5vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: clamp(60px, 12vw, 80px);
  }

  .header-business-hub-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .header-business-hub-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
  }

  .header-business-hub-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    letter-spacing: -0.5px;
  }

  .header-business-hub-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 1;
    margin-left: 3rem;
  }

  .header-business-hub-nav-link {
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .header-business-hub-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-business-hub-nav-link:hover {
    color: var(--color-text-light-primary);
  }

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

  .header-business-hub-cta-button {
    display: none;
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: var(--color-text-dark-primary);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }

  .header-business-hub-cta-button:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
  }

  .header-business-hub-cta-button:active {
    transform: translateY(0);
  }

  .header-business-hub-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
  }

  .header-business-hub-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-light-primary);
    border-radius: 1px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-business-hub-mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }

  .header-business-hub-mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .header-business-hub-mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }

  .header-business-hub-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-dark);
    padding-top: clamp(60px, 12vw, 80px);
    padding-bottom: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
  }

  .header-business-hub-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-business-hub-mobile-header {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: clamp(60px, 12vw, 80px);
    background: var(--color-bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 clamp(1rem, 5vw, 2rem);
    z-index: 101;
  }

  .header-business-hub-mobile-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text-light-primary);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease;
  }

  .header-business-hub-mobile-close:hover {
    color: var(--color-primary);
  }

  .header-business-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: clamp(2rem, 6vw, 3rem) clamp(1rem, 5vw, 2rem);
    padding-top: 1rem;
  }

  .header-business-hub-mobile-link {
    font-family: var(--font-primary);
    font-size: clamp(1rem, 2vw, 1.125rem);
    font-weight: 500;
    color: var(--color-text-light-secondary);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
  }

  .header-business-hub-mobile-link:hover {
    color: var(--color-primary);
  }

  .header-business-hub-mobile-cta {
    display: block;
    margin: clamp(2rem, 6vw, 3rem) clamp(1rem, 5vw, 2rem);
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2rem);
    background: var(--color-primary);
    color: var(--color-text-dark-primary);
    font-family: var(--font-primary);
    font-size: clamp(0.875rem, 2vw, 1rem);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    text-decoration: none;
    cursor: pointer;
    text-align: center;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-business-hub-mobile-cta:hover {
    background: var(--color-primary-light);
  }

  @media (min-width: 768px) {
    .header-business-hub-mobile-toggle {
      display: none;
    }

    .header-business-hub-mobile-menu {
      display: none;
    }

    .header-business-hub-desktop-nav {
      display: flex;
    }

    .header-business-hub-cta-button {
      display: inline-block;
    }
  }

  @media (max-width: 1024px) {
    .header-business-hub-desktop-nav {
      gap: 1.5rem;
      margin-left: 2rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-business-hub-nav-link,
    .header-business-hub-cta-button,
    .header-business-hub-mobile-menu,
    .header-business-hub-mobile-toggle span {
      transition: none;
    }
  }

    .business-hub {
  width: 100%;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

section, [class*="-section"] {
  width: 100%;
  overflow: hidden;
}

/* HERO SECTION - DARK THEME */
.hero-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.hero-gradient-blur {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-orb-primary {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-accent-2 {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-divider {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-corner-shape {
  position: absolute;
  top: 5%;
  right: 8%;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.hero-ambient-mist {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.02) 0%, transparent 50%, rgba(59, 130, 246, 0.02) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero-subtitle {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  align-items: center;
}

.hero-stat-number {
  display: block;
  color: #f59e0b;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.hero-stat-label {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  text-align: center;
  max-width: 120px;
}

.hero-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: clamp(1rem, 2vw, 2rem);
  width: 100%;
  max-width: 400px;
}

.hero-cta-buttons a {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .hero-cta-buttons a {
    width: auto;
  }
}

/* FEATURES SECTION - LIGHT THEME */
.features-section {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.features-accent-glow-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-glow-2 {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-blob-1 {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.features-shape-blob-2 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 140px;
  height: 140px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.features-line-accent {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-corner-element {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
}

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

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.features-title {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.features-description {
  color: #475569;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.features-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: #f59e0b;
}

.features-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  color: #f59e0b;
  font-size: 1.5rem;
}

.features-card-title {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
}

.features-card-text {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .features-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ABOUT SECTION - DARK THEME */
.about-section {
  background: linear-gradient(135deg, #0d1526 0%, #0a0f1e 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.about-glow-accent {
  position: absolute;
  top: 20%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-element {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.about-line-decoration {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.about-text-block {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.about-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.about-description {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.about-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  list-style: none;
}

.about-benefit-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.about-benefit-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  border-radius: 50%;
  color: #000000;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-benefit-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-benefit-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.about-benefit-description {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-image-block {
  flex: 1 1 350px;
  position: relative;
  min-height: 400px;
}

.about-image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    gap: var(--space-2xl);
  }
  
  .about-text-block,
  .about-image-block {
    flex: 1 1 100%;
  }
  
  .about-image-block {
    min-height: 300px;
  }
}

/* PROCESS SECTION - LIGHT THEME */
.process-section {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.process-glow-1 {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.process-glow-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 160px;
  height: 160px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.process-line-element {
  position: absolute;
  bottom: 20%;
  left: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
}

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

.process-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.process-title {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 300ms ease;
}

.process-step:hover {
  border-color: #f59e0b;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.1);
}

.process-step-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.process-step-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.process-step-title {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.process-step-text {
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* FEATURED POSTS SECTION - DARK THEME */
.featured-posts-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.posts-glow-accent-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-glow-accent-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.posts-shape-blob {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.posts-line-decoration {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.posts-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
}

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

.posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.posts-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.posts-description {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.posts-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-card:hover {
  transform: translateY(-10px);
  border-color: #f59e0b;
  box-shadow: 0 25px 50px rgba(245, 158, 11, 0.15);
}

.posts-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.posts-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.posts-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: clamp(1.25rem, 3vw, 2rem);
  flex-grow: 1;
}

.posts-card-level {
  display: inline-block;
  width: fit-content;
  padding: 0.375rem 0.875rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.posts-card-title {
  color: #ffffff;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  margin-top: var(--space-xs);
}

.posts-card-text {
  color: #94a3b8;
  font-size: 0.9375rem;
  line-height: 1.7;
  flex-grow: 1;
}

.posts-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.posts-card-duration {
  color: #64748b;
  font-size: 0.875rem;
}

.posts-card-footer a {
  padding: 0.5rem 1rem;
  background: #f59e0b;
  color: #000000;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 300ms ease;
}

.posts-card-footer a:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.posts-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .posts-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* TESTIMONIALS SECTION - DARK THEME */
.testimonials-section {
  background: linear-gradient(135deg, #0d1526 0%, #0a0f1e 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.testimonials-glow-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-accent-shape {
  position: absolute;
  top: 50%;
  left: 12%;
  width: 160px;
  height: 160px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.testimonials-line-accent {
  position: absolute;
  top: 25%;
  right: 15%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonials-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 4rem);
}

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

.testimonials-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-md);
}

.testimonials-title {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.testimonials-description {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.testimonials-card {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  transition: all 300ms ease;
}

.testimonials-card:hover {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.05);
}

.testimonials-quote {
  color: #cbd5e1;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
}

.testimonials-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -15px;
  font-size: 2.5rem;
  color: #f59e0b;
  opacity: 0.3;
  line-height: 1;
}

.testimonials-author {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  padding-top: var(--space-md);
  border-top: 1px solid rgba(245, 158, 11, 0.15);
}

.testimonials-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonials-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.testimonials-name {
  color: #ffffff;
  font-weight: 600;
  font-size: 1rem;
}

.testimonials-role {
  color: #94a3b8;
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .testimonials-card {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* CONTACT SECTION - DARK THEME */
.contact-section {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.contact-glow-primary {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-secondary {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.contact-line-element {
  position: absolute;
  bottom: 25%;
  left: 12%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
}

.contact-form-wrapper {
  flex: 1 1 400px;
  min-width: 300px;
}

.contact-form-header {
  margin-bottom: var(--space-lg);
}

.contact-form-title {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.contact-form-subtitle {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  width: 100%;
}

.contact-form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-label {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 300ms ease;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: #64748b;
}

.contact-input:focus,
.contact-textarea:focus {
  outline: none;
  border-color: #f59e0b;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

.contact-textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-submit {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #f59e0b;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-submit:hover {
  background: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.contact-submit:active {
  transform: translateY(-1px);
}

.contact-info-block {
  flex: 1 1 400px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
}

.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-title {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
}

.contact-faq-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(245, 158, 11, 0.15);
}

.contact-faq-item:last-child {
  border-bottom: none;
}

.contact-faq-question {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
}

.contact-faq-answer {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.contact-benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  list-style: none;
  padding: 0;
}

.contact-benefit {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: var(--space-md);
  position: relative;
}

.contact-benefit::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #f59e0b;
  font-weight: 700;
}

@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }
  
  .contact-form-wrapper,
  .contact-info-block {
    flex: 1 1 100%;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 2rem);
  border-top: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner-text {
  color: #e2e8f0;
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  flex: 1 1 200px;
  line-height: 1.5;
}

.cookie-link {
  color: #f59e0b;
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-link:hover {
  color: #fbbf24;
}

.cookie-banner-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  cursor: pointer;
  transition: all 300ms ease;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: #f59e0b;
  color: #000000;
}

.cookie-btn-accept:hover {
  background: #fbbf24;
  transform: translateY(-2px);
}

.cookie-btn-decline {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.cookie-btn-decline:hover {
  border-color: #f59e0b;
  color: #ffffff;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
  .hero-cta-buttons {
    width: 100%;
  }
  
  .contact-form,
  .contact-info-block {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .process-step {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .posts-card-footer {
    flex-direction: column;
    align-items: stretch;
  }
  
  .posts-card-footer a {
    width: 100%;
    text-align: center;
  }
  
  .cookie-banner {
    flex-direction: column;
  }
  
  .cookie-banner-buttons {
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 100%;
    min-width: 120px;
  }
}

/* BUTTON STYLES */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: #f59e0b;
  color: #000000;
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ACCESSIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

    /* Footer Component Styles */
.footer {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 6vw, 3rem) 0;
  color: var(--color-text-light-secondary);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
  position: relative;
  z-index: 10;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4vw, 3rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  grid-auto-flow: row;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

/* About Section */
.footer-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-about-title {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  letter-spacing: -0.5px;
  font-family: var(--font-heading);
}

.footer-about-text {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

/* Navigation Section */
.footer-nav-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-nav-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  letter-spacing: -0.3px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-link {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-nav-link:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-nav-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Contact Section */
.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-contact-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  letter-spacing: -0.3px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-text-light-secondary);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-light-primary);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-value {
  color: var(--color-text-light-secondary);
  word-break: break-word;
}

/* Legal Section */
.footer-legal-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-legal-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  letter-spacing: -0.3px;
}

.footer-legal-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-legal-link {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.footer-legal-link:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.footer-legal-link:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* Copyright Section */
.footer-copyright {
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  text-align: center;
}

.footer-copyright-text {
  font-size: clamp(0.8125rem, 1.5vw, 0.875rem);
  color: var(--color-text-light-muted);
  letter-spacing: 0.3px;
}

/* Decorative Elements */
.footer-deco-glow-1 {
  position: absolute;
  top: 10%;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.footer-deco-glow-2 {
  position: absolute;
  bottom: 15%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
}

.footer-deco-accent {
  position: absolute;
  bottom: 20%;
  right: 5%;
  width: 120px;
  height: 120px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 35% 65% 42% 58% / 58% 35% 65% 42%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

/* Tablet Responsive */
@media (min-width: 768px) {
  .footer {
    padding: clamp(3.5rem, 10vw, 5.5rem) 0 clamp(2.5rem, 6vw, 3.5rem) 0;
  }

  .footer-nav,
  .footer-legal-nav {
    gap: 0.875rem;
  }

  .footer-contact-info {
    gap: 1rem;
  }
}

/* Desktop Responsive */
@media (min-width: 1024px) {
  .footer {
    padding: clamp(4rem, 12vw, 6rem) 0 clamp(3rem, 8vw, 4rem) 0;
  }

  .footer-about-title {
    font-size: 1.375rem;
  }

  .footer-about-text {
    font-size: 0.9375rem;
    max-width: 320px;
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 1.125rem;
  }

  .footer-deco-glow-1 {
    width: 320px;
    height: 320px;
  }

  .footer-deco-glow-2 {
    width: 280px;
    height: 280px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .footer-nav-link,
  .footer-legal-link {
    transition: none;
  }

  .footer-nav-link:hover,
  .footer-legal-link:hover {
    transform: none;
  }

  .footer-deco-glow-1,
  .footer-deco-glow-2,
  .footer-deco-accent {
    animation: none;
  }
}
    

/* Category Page Styles */
/* CATEGORY PAGE: BUSINESS BASICS - COMPLETE CSS */

/* ====== PAGE WRAPPER ====== */
.category-page-business-basics {
  width: 100%;
}

/* ====== HERO SECTION (DARK THEME) ====== */
.hero-section-business-basics {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-deco-glow-business-basics {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-mesh-business-basics {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-business-basics {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-business-basics {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-business-basics {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-business-basics {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  max-width: 600px;
}

.hero-stats-business-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 2rem);
}

.stat-item-business-basics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.stat-number-business-basics {
  color: #f59e0b;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.stat-label-business-basics {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
}

.hero-cta-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 2rem);
  width: 100%;
  max-width: 400px;
}

.hero-cta-business-basics a {
  width: 100%;
}

@media (min-width: 768px) {
  .hero-cta-business-basics {
    flex-direction: row;
  }
  
  .hero-cta-business-basics a {
    width: auto;
    flex: 1;
  }
}

/* ====== POSTS SECTION (LIGHT THEME) ====== */
.posts-section-business-basics {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.posts-content-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

.posts-header-business-basics {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.posts-tag-business-basics {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.posts-title-business-basics {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.posts-subtitle-business-basics {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.posts-grid-business-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.card-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex: 1 1 300px;
  max-width: 400px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-business-basics:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #f59e0b;
}

.card-business-basics img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.card-title-business-basics {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.card-description-business-basics {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-business-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.meta-badge-business-basics {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.meta-badge-business-basics i {
  font-size: 0.75rem;
}

.card-link-business-basics {
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.card-link-business-basics:hover {
  color: #d97706;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .card-business-basics {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ====== LEARNING PATH SECTION (DARK THEME) ====== */
.learning-path-section-business-basics {
  background: linear-gradient(135deg, #0d1526 0%, #111d2f 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-content-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 5rem);
}

.learning-path-header-business-basics {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.learning-path-tag-business-basics {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.learning-path-title-business-basics {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.learning-path-subtitle-business-basics {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.learning-path-steps-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.learning-path-step-business-basics {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.learning-path-step-business-basics:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: #f59e0b;
}

.learning-path-step-number-business-basics {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  font-family: 'Playfair Display', serif;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-path-step-content-business-basics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.learning-path-step-title-business-basics {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.learning-path-step-text-business-basics {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== BENEFITS SECTION (LIGHT THEME) ====== */
.benefits-section-business-basics {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.benefits-content-business-basics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.benefits-text-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.benefits-title-business-basics {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.benefits-description-business-basics {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.benefits-list-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  list-style: none;
}

.benefit-item-business-basics {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.benefit-icon-business-basics {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  color: #0a0f1e;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1rem;
}

.benefit-text-business-basics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.benefit-title-business-basics {
  color: #0a0f1e;
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
}

.benefit-description-business-basics {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.benefits-image-business-basics {
  position: relative;
  height: 400px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(59, 130, 246, 0.08));
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245, 158, 11, 0.15);
}

.benefits-image-business-basics img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .benefits-content-business-basics {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .benefits-image-business-basics {
    height: 300px;
  }
}

/* ====== FAQ SECTION (DARK THEME) ====== */
.faq-section-business-basics {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.faq-content-business-basics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: start;
}

.faq-header-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.faq-title-business-basics {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.faq-description-business-basics {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.faq-list-business-basics {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.faq-item-business-basics {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-bottom: 1px solid rgba(245, 158, 11, 0.2);
  padding-bottom: clamp(1.25rem, 2vw, 1.5rem);
}

.faq-item-business-basics:last-child {
  border-bottom: none;
}

.faq-question-business-basics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
  color: #ffffff;
  font-weight: 600;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  transition: color 0.3s ease;
  padding: clamp(1rem, 2vw, 1.25rem) 0;
  user-select: none;
}

.faq-question-business-basics:hover {
  color: #f59e0b;
}

.faq-icon-business-basics {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  color: #f59e0b;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
  font-weight: 300;
  line-height: 1;
}

.faq-item-business-basics.active .faq-icon-business-basics {
  background: #f59e0b;
  color: #0a0f1e;
  transform: rotate(45deg);
}

.faq-answer-business-basics {
  display: none;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  padding: 0 0 clamp(0.5rem, 1vw, 1rem) 0;
  animation: slideDown 0.3s ease;
}

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

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

@media (max-width: 768px) {
  .faq-content-business-basics {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

/* ====== CTA SECTION (LIGHT THEME) ====== */
.cta-section-business-basics {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.cta-content-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-business-basics {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

.cta-description-business-basics {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.cta-buttons-business-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

@media (min-width: 768px) {
  .cta-buttons-business-basics {
    flex-direction: row;
  }
}

/* ====== BUTTON STYLES ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw, 1.125rem);
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: #f59e0b;
  color: #0a0f1e;
}

.btn-primary:hover {
  background: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-outline-light {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-outline-dark {
  border-color: #0a0f1e;
  color: #0a0f1e;
  background: transparent;
}

.btn-outline-dark:hover {
  background: #0a0f1e;
  color: #ffffff;
  border-color: #0a0f1e;
}

/* ====== CONTAINER ====== */
.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ====== ACCESSIBILITY ====== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .hero-cta-business-basics {
    gap: 1rem;
  }
  
  .learning-path-step-business-basics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .learning-path-step-number-business-basics {
    min-width: 50px;
  }
}

@media (max-width: 480px) {
  .stat-item-business-basics {
    flex: 1 1 45%;
  }
}

/* Post Page 1 Styles */
.main-startup-basics {
  width: 100%;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.hero-section-startup-basics {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-startup-basics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-startup-basics {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.breadcrumbs-startup-basics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}

.breadcrumbs-startup-basics a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-startup-basics a:hover {
  color: #f59e0b;
}

.breadcrumbs-startup-basics span {
  color: #64748b;
}

.hero-title-startup-basics {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-startup-basics {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  max-width: 650px;
  line-height: 1.6;
}

.hero-meta-startup-basics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin: 1rem 0;
}

.meta-badge-startup-basics {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border-radius: 20px;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 500;
}

.meta-badge-startup-basics i {
  font-size: 0.9rem;
}

.hero-image-container-startup-basics {
  width: 100%;
  max-width: 700px;
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-image-startup-basics {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

.intro-section-startup-basics {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.intro-content-startup-basics {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.intro-text-startup-basics {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-startup-basics {
  color: #374151;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
}

.intro-image-startup-basics {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-img-startup-basics {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .intro-content-startup-basics {
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .intro-text-startup-basics {
    flex: 1 1 100%;
  }
  
  .intro-image-startup-basics {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-startup-basics,
.content-section-two-startup-basics,
.content-section-three-startup-basics {
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.content-section-one-startup-basics,
.content-section-three-startup-basics {
  background: #f8fafc;
}

.content-section-two-startup-basics {
  background: #ffffff;
}

.content-wrapper-startup-basics,
.content-wrapper-reversed-startup-basics {
  display: flex;
  flex-direction: row;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.content-wrapper-reversed-startup-basics {
  flex-direction: row-reverse;
}

.content-text-startup-basics {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-image-startup-basics {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
}

.content-description-startup-basics {
  color: #4b5563;
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  line-height: 1.8;
}

.content-img-startup-basics {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
}

.content-highlight-startup-basics {
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(245, 158, 11, 0.08);
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  margin-top: 1rem;
}

.highlight-text-startup-basics {
  color: #374151;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .content-wrapper-startup-basics,
  .content-wrapper-reversed-startup-basics {
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }
  
  .content-text-startup-basics {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-image-startup-basics {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-startup-basics {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.process-header-startup-basics {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.process-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-startup-basics {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.process-steps-startup-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step-startup-basics {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.process-step-startup-basics:hover {
  border-color: #f59e0b;
  background: #fffbf0;
}

.process-step-number-startup-basics {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 60px;
  font-family: 'Playfair Display', serif;
}

.process-step-content-startup-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.process-step-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.8vw, 1.375rem);
  font-weight: 600;
  line-height: 1.25;
}

.process-step-text-startup-basics {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.features-section-startup-basics {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.features-header-startup-basics {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.features-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-startup-basics {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.features-grid-startup-basics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.feature-card-startup-basics {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-card-startup-basics:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #f59e0b;
}

.feature-icon-startup-basics {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  color: #f59e0b;
  font-size: 1.5rem;
}

.feature-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

.feature-text-startup-basics {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  margin: 0;
}

.featured-quote-startup-basics {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2rem);
  border-left: 4px solid #f59e0b;
  background: #f8fafc;
  border-radius: 8px;
  margin: clamp(1.5rem, 2vw, 2rem) 0;
}

.quote-text-startup-basics {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-style: italic;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.quote-text-startup-basics::before {
  content: '"';
  position: absolute;
  left: -5px;
  top: -15px;
  font-size: 3rem;
  color: #f59e0b;
  opacity: 0.3;
}

.quote-cite-startup-basics {
  display: block;
  color: #64748b;
  font-size: 0.9rem;
  font-style: normal;
  margin: 0;
}

.stats-section-startup-basics {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.stats-content-startup-basics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.stat-item-startup-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
  text-align: center;
  flex: 0 1 auto;
}

.stat-number-startup-basics {
  color: #f59e0b;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.stat-label-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-weight: 600;
  margin: 0;
}

.stat-description-startup-basics {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
  margin: 0;
}

.cta-section-startup-basics {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-content-startup-basics {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-description-startup-basics {
  color: #4b5563;
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.8;
}

.cta-buttons-startup-basics {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-primary-startup-basics,
.btn-secondary-startup-basics {
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary-startup-basics {
  background: #f59e0b;
  color: #000000;
}

.btn-primary-startup-basics:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary-startup-basics {
  background: transparent;
  color: #0a0f1e;
  border-color: #0a0f1e;
}

.btn-secondary-startup-basics:hover {
  background: #0a0f1e;
  color: #ffffff;
  transform: translateY(-2px);
}

.disclaimer-section-startup-basics {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-startup-basics {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #64748b;
  border-radius: 8px;
}

.disclaimer-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-startup-basics {
  color: #4b5563;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
  margin: 0;
}

.related-section-startup-basics {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-startup-basics {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
}

.related-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-startup-basics {
  color: #64748b;
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
}

.related-grid-startup-basics {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.related-card-startup-basics {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.related-card-startup-basics:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-color: #f59e0b;
}

.related-image-startup-basics {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-image-startup-basics img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-body-startup-basics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2rem);
  flex-grow: 1;
}

.related-meta-startup-basics {
  display: flex;
  gap: 0.75rem;
}

.related-level-startup-basics {
  display: inline-flex;
  padding: 0.375rem 0.875rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-card-title-startup-basics {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-text-startup-basics {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.related-link-startup-basics {
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-startup-basics:hover {
  color: #fbbf24;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-startup-basics {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .cta-buttons-startup-basics {
    flex-direction: column;
  }
  
  .btn-primary-startup-basics,
  .btn-secondary-startup-basics {
    width: 100%;
  }
  
  .process-step-startup-basics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-step-number-startup-basics {
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .hero-content-startup-basics {
    padding: 0 1rem;
  }
  
  .breadcrumbs-startup-basics {
    font-size: 0.75rem;
    gap: 0.25rem;
  }
  
  .meta-badge-startup-basics {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

/* Post Page 2 Styles */
.main-business-planning-guide {
  width: 100%;
}

/* ====== HERO SECTION (DARK) ====== */
.hero-section-business-planning-guide {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-business-planning-guide::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.breadcrumbs-business-planning-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: 0.875rem;
  position: relative;
  z-index: 2;
}

.breadcrumbs-business-planning-guide a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-business-planning-guide a:hover {
  color: #f59e0b;
}

.breadcrumbs-business-planning-guide span {
  color: #64748b;
}

.breadcrumbs-business-planning-guide span:last-child {
  color: #ffffff;
}

.hero-content-business-planning-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-business-planning-guide {
  color: #cbd5e1;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  max-width: 700px;
  line-height: 1.7;
}

.hero-meta-business-planning-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  justify-content: center;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-badge-business-planning-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-business-planning-guide i {
  font-size: 0.9rem;
}

.hero-image-business-planning-guide {
  width: 100%;
  max-width: 600px;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
  z-index: 2;
}

.hero-image-business-planning-guide img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  display: block;
  max-width: 100%;
}

/* ====== INTRO SECTION (LIGHT) ====== */
.intro-section-business-planning-guide {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.intro-content-business-planning-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-business-planning-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-business-planning-guide {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.intro-description-business-planning-guide {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
}

.intro-image-business-planning-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-business-planning-guide img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .intro-content-business-planning-guide {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .intro-text-business-planning-guide,
  .intro-image-business-planning-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ====== STRUCTURE SECTION (DARK) ====== */
.structure-section-business-planning-guide {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.structure-header-business-planning-guide {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.structure-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.structure-subtitle-business-planning-guide {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.structure-steps-business-planning-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.structure-step-business-planning-guide {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: clamp(8px, 2vw, 12px);
  transition: all 0.3s ease;
}

.structure-step-business-planning-guide:hover {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.structure-step-number-business-planning-guide {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 60px;
}

.structure-step-content-business-planning-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.structure-step-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
}

.structure-step-text-business-planning-guide {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

/* ====== KEY ELEMENTS SECTION (LIGHT) ====== */
.key-elements-section-business-planning-guide {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.key-elements-content-business-planning-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.key-elements-text-business-planning-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.key-elements-title-business-planning-guide {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.key-elements-description-business-planning-guide {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
}

.key-elements-list-business-planning-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  list-style: none;
}

.key-elements-item-business-planning-guide {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: flex-start;
}

.key-elements-icon-business-planning-guide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #f59e0b;
  border-radius: 50%;
  color: #0f172a;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.875rem;
}

.key-elements-text-item-business-planning-guide {
  color: #334155;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  line-height: 1.6;
}

.key-elements-image-business-planning-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.key-elements-image-business-planning-guide img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .key-elements-content-business-planning-guide {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .key-elements-text-business-planning-guide,
  .key-elements-image-business-planning-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ====== PRACTICAL STEPS SECTION (DARK) ====== */
.practical-steps-section-business-planning-guide {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.practical-steps-header-business-planning-guide {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.practical-steps-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.practical-steps-subtitle-business-planning-guide {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.practical-steps-cards-business-planning-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practical-steps-card-business-planning-guide {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: clamp(8px, 2vw, 12px);
  transition: all 0.3s ease;
}

.practical-steps-card-business-planning-guide:hover {
  transform: translateY(-8px);
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.practical-steps-card-icon-business-planning-guide {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: clamp(6px, 1.5vw, 10px);
  color: #f59e0b;
  font-size: 1.5rem;
}

.practical-steps-card-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

.practical-steps-card-text-business-planning-guide {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .practical-steps-card-business-planning-guide {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ====== PLANNING FEATURES SECTION (LIGHT) ====== */
.planning-features-section-business-planning-guide {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.planning-features-content-business-planning-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.planning-features-image-business-planning-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.planning-features-image-business-planning-guide img {
  width: 100%;
  height: auto;
  border-radius: clamp(8px, 2vw, 16px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

.planning-features-text-business-planning-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.planning-features-title-business-planning-guide {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.planning-features-description-business-planning-guide {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
}

.planning-features-quote-business-planning-guide {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: #f8fafc;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: clamp(4px, 1vw, 8px);
}

.planning-features-quote-text-business-planning-guide {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #334155;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: 1.8;
  font-style: italic;
  font-weight: 500;
}

.planning-features-quote-author-business-planning-guide {
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  color: #64748b;
  font-style: normal;
  font-weight: 400;
}

@media (max-width: 768px) {
  .planning-features-content-business-planning-guide {
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .planning-features-image-business-planning-guide,
  .planning-features-text-business-planning-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ====== MISTAKES SECTION (DARK) ====== */
.mistakes-section-business-planning-guide {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.mistakes-header-business-planning-guide {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.mistakes-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.mistakes-subtitle-business-planning-guide {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.mistakes-grid-business-planning-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.mistakes-card-business-planning-guide {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: clamp(8px, 2vw, 12px);
  transition: all 0.3s ease;
}

.mistakes-card-business-planning-guide:hover {
  transform: translateY(-8px);
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.mistakes-card-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
}

.mistakes-card-text-business-planning-guide {
  color: #cbd5e1;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .mistakes-card-business-planning-guide {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ====== CTA SECTION (LIGHT) ====== */
.cta-section-business-planning-guide {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.cta-content-business-planning-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-business-planning-guide {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.cta-description-business-planning-guide {
  color: #475569;
  font-size: clamp(0.9rem, 1.5vw, 1.0625rem);
  line-height: 1.7;
}

.cta-buttons-business-planning-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-business-planning-guide {
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: clamp(8px, 1.5vw, 12px);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}

.cta-btn-primary-business-planning-guide {
  background: #f59e0b;
  color: #0f172a;
  border: 2px solid #f59e0b;
}

.cta-btn-primary-business-planning-guide:hover {
  background: #fbbf24;
  border-color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.cta-btn-secondary-business-planning-guide {
  background: transparent;
  color: #0f172a;
  border: 2px solid #0f172a;
}

.cta-btn-secondary-business-planning-guide:hover {
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}

@media (max-width: 768px) {
  .cta-buttons-business-planning-guide {
    flex-direction: column;
  }

  .cta-btn-business-planning-guide {
    width: 100%;
  }
}

/* ====== DISCLAIMER SECTION (LIGHT) ====== */
.disclaimer-section-business-planning-guide {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
}

.disclaimer-content-business-planning-guide {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f1f5f9;
  border-radius: clamp(8px, 2vw, 12px);
  border-left: 4px solid #3b82f6;
}

.disclaimer-title-business-planning-guide {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-text-business-planning-guide {
  color: #475569;
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.8;
}

/* ====== RELATED POSTS SECTION (DARK) ====== */
.related-section-business-planning-guide {
  background: #0a0f1e;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-business-planning-guide {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.related-subtitle-business-planning-guide {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-business-planning-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-business-planning-guide {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: clamp(8px, 2vw, 12px);
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-business-planning-guide:hover {
  transform: translateY(-8px);
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.related-card-image-business-planning-guide {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.related-card-image-business-planning-guide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card-body-business-planning-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex-grow: 1;
}

.related-card-title-business-planning-guide {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-business-planning-guide {
  color: #cbd5e1;
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-business-planning-guide {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.8rem, 0.95vw, 0.95rem);
  transition: color 0.3s ease;
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.related-card-link-business-planning-guide:hover {
  color: #fbbf24;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-business-planning-guide {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ====== RESPONSIVE ADJUSTMENTS ====== */
@media (max-width: 768px) {
  .hero-image-business-planning-guide {
    max-width: 100%;
  }

  .cta-buttons-business-planning-guide {
    flex-direction: column;
  }

  .cta-btn-business-planning-guide {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumbs-business-planning-guide {
    font-size: 0.75rem;
  }

  .structure-step-business-planning-guide,
  .practical-steps-card-business-planning-guide {
    flex-direction: column;
  }

  .structure-step-number-business-planning-guide {
    min-width: 50px;
  }
}

/* ====== ACCESSIBILITY ====== */
.sr-only-business-planning-guide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp-business-planning-guide {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up-business-planning-guide {
  animation: fadeInUp-business-planning-guide 0.6s ease forwards;
}

/* Post Page 3 Styles */
.main-financial-management-sme {
  width: 100%;
}

.hero-section-financial-management-sme {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-financial-management-sme::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-financial-management-sme {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-financial-management-sme {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-financial-management-sme {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  max-width: 700px;
}

.hero-meta-financial-management-sme {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.meta-badge-financial-management-sme {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-financial-management-sme i {
  color: #f59e0b;
}

.hero-image-wrapper-financial-management-sme {
  width: 100%;
  max-width: 700px;
  margin-top: 1rem;
}

.hero-image-financial-management-sme {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.intro-section-financial-management-sme {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.intro-content-financial-management-sme {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-financial-management-sme {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.intro-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.intro-description-financial-management-sme {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

.intro-image-financial-management-sme {
  flex: 1 1 50%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(245, 158, 11, 0.08);
}

.intro-image-img-financial-management-sme {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-financial-management-sme {
    flex-direction: column;
  }
  
  .intro-text-financial-management-sme,
  .intro-image-financial-management-sme {
    flex: 1 1 100%;
  }
  
  .intro-image-financial-management-sme {
    height: 250px;
  }
}

.process-section-financial-management-sme {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
  overflow: hidden;
}

.process-header-financial-management-sme {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.process-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-subtitle-financial-management-sme {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.process-steps-financial-management-sme {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.process-step-financial-management-sme {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.process-step-financial-management-sme:hover {
  border-color: #f59e0b;
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.process-step-number-financial-management-sme {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 70px;
  line-height: 1;
}

.process-step-content-financial-management-sme {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.process-step-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
}

.process-step-text-financial-management-sme {
  color: #64748b;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-financial-management-sme {
    flex-direction: column;
    gap: 1rem;
  }
  
  .process-step-number-financial-management-sme {
    min-width: auto;
  }
}

.features-section-financial-management-sme {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.features-header-financial-management-sme {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.features-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-description-financial-management-sme {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.features-grid-financial-management-sme {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.feature-card-financial-management-sme {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-card-financial-management-sme:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
}

.feature-icon-financial-management-sme {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 12px;
  color: #f59e0b;
  font-size: 1.5rem;
}

.feature-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
}

.feature-description-financial-management-sme {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .feature-card-financial-management-sme {
    flex: 1 1 100%;
    max-width: none;
  }
}

.content-section-financial-management-sme {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.content-wrapper-financial-management-sme {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-financial-management-sme {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.content-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.content-description-financial-management-sme {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

.featured-quote-financial-management-sme {
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: #ffffff;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-financial-management-sme {
  color: #374151;
  font-size: clamp(1rem, 1.3vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.quote-author-financial-management-sme {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-style: normal;
}

.content-image-financial-management-sme {
  flex: 1 1 50%;
  max-width: 50%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(245, 158, 11, 0.08);
}

.content-image-img-financial-management-sme {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .content-wrapper-financial-management-sme {
    flex-direction: column;
  }
  
  .content-text-financial-management-sme,
  .content-image-financial-management-sme {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .content-image-financial-management-sme {
    height: 250px;
  }
}

.benefits-section-financial-management-sme {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.benefits-wrapper-financial-management-sme {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-image-financial-management-sme {
  flex: 1 1 50%;
  max-width: 50%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(245, 158, 11, 0.08);
}

.benefits-image-img-financial-management-sme {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefits-text-financial-management-sme {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.benefits-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.benefits-list-financial-management-sme {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.benefit-item-financial-management-sme {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-icon-financial-management-sme {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f59e0b;
  color: #000000;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.benefit-content-financial-management-sme {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefit-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
}

.benefit-text-financial-management-sme {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .benefits-wrapper-financial-management-sme {
    flex-direction: column;
  }
  
  .benefits-image-financial-management-sme,
  .benefits-text-financial-management-sme {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .benefits-image-financial-management-sme {
    height: 300px;
  }
}

.stats-section-financial-management-sme {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.stats-header-financial-management-sme {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.stats-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.stats-subtitle-financial-management-sme {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.stats-grid-financial-management-sme {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.stat-card-financial-management-sme {
  flex: 1 1 240px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-financial-management-sme:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
}

.stat-number-financial-management-sme {
  color: #f59e0b;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.stat-label-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 600;
}

.stat-description-financial-management-sme {
  color: #64748b;
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .stat-card-financial-management-sme {
    flex: 1 1 100%;
    max-width: none;
  }
}

.conclusion-section-financial-management-sme {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.conclusion-content-financial-management-sme {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.conclusion-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  text-align: center;
}

.conclusion-text-financial-management-sme {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  text-align: center;
}

.conclusion-cta-financial-management-sme {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.btn-primary-financial-management-sme,
.btn-secondary-financial-management-sme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary-financial-management-sme {
  background: #f59e0b;
  color: #000000;
}

.btn-primary-financial-management-sme:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.btn-secondary-financial-management-sme {
  background: transparent;
  border-color: #e2e8f0;
  color: #0a0f1e;
}

.btn-secondary-financial-management-sme:hover {
  background: #f8fafc;
  border-color: #f59e0b;
  color: #f59e0b;
}

.related-section-financial-management-sme {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.related-header-financial-management-sme {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.related-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-financial-management-sme {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.related-grid-financial-management-sme {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-financial-management-sme {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-financial-management-sme:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
}

.related-image-financial-management-sme {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(245, 158, 11, 0.08);
}

.related-image-financial-management-sme img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-financial-management-sme:hover .related-image-financial-management-sme img {
  transform: scale(1.05);
}

.related-content-financial-management-sme {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.related-card-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-financial-management-sme {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-financial-management-sme {
  color: #f59e0b;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.related-link-financial-management-sme:hover {
  color: #d97706;
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-card-financial-management-sme {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-financial-management-sme {
  background: #f8fafc;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-financial-management-sme {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-financial-management-sme {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
}

.disclaimer-text-financial-management-sme {
  color: #64748b;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}

.breadcrumbs-financial-management-sme {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.breadcrumbs-financial-management-sme a {
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-financial-management-sme a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.breadcrumbs-financial-management-sme span {
  color: #94a3b8;
}

.breadcrumbs-financial-management-sme span:last-child {
  color: #cbd5e1;
}

@media (max-width: 480px) {
  .btn-primary-financial-management-sme,
  .btn-secondary-financial-management-sme {
    width: 100%;
  }
  
  .conclusion-cta-financial-management-sme {
    flex-direction: column;
  }
}

/* Post Page 4 Styles */
.main-marketing-promotion-guide {
  width: 100%;
}

.hero-section-marketing-promotion-guide {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-marketing-promotion-guide::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-content-marketing-promotion-guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 2;
}

.hero-title-marketing-promotion-guide {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-marketing-promotion-guide {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  max-width: 600px;
}

.hero-meta-marketing-promotion-guide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-badge-marketing-promotion-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-marketing-promotion-guide i {
  font-size: 0.875rem;
}

.hero-image-marketing-promotion-guide {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.hero-img-marketing-promotion-guide {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.introduction-section-marketing-promotion-guide {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.introduction-content-marketing-promotion-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.introduction-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}

.introduction-description-marketing-promotion-guide {
  color: #374151;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.introduction-text-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.introduction-image-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-marketing-promotion-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-marketing-promotion-guide {
    flex-direction: column;
  }
  
  .introduction-text-marketing-promotion-guide,
  .introduction-image-marketing-promotion-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.understanding-section-marketing-promotion-guide {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.understanding-header-marketing-promotion-guide {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.understanding-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.understanding-subtitle-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.understanding-content-marketing-promotion-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.understanding-text-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.understanding-subheading-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}

.understanding-description-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.understanding-list-marketing-promotion-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.25rem);
  list-style: none;
}

.understanding-list-item-marketing-promotion-guide {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  align-items: flex-start;
  color: #374151;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.6;
}

.understanding-list-label-marketing-promotion-guide {
  color: #0a0f1e;
  font-weight: 600;
  flex-shrink: 0;
}

.understanding-image-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.understanding-image-marketing-promotion-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

@media (max-width: 768px) {
  .understanding-content-marketing-promotion-guide {
    flex-direction: column;
  }
  
  .understanding-text-marketing-promotion-guide,
  .understanding-image-marketing-promotion-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.channels-section-marketing-promotion-guide {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.channels-header-marketing-promotion-guide {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.channels-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.channels-subtitle-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.channels-content-marketing-promotion-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.channels-image-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.channels-image-marketing-promotion-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.channels-text-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.channels-subheading-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
}

.channels-description-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.channels-text-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .channels-content-marketing-promotion-guide {
    flex-direction: column;
  }
  
  .channels-image-marketing-promotion-guide,
  .channels-text-marketing-promotion-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.channels-grid-marketing-promotion-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.channel-card-marketing-promotion-guide {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.channel-card-marketing-promotion-guide:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #f59e0b;
}

.channel-icon-marketing-promotion-guide {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  color: #f59e0b;
  font-size: 1.5rem;
}

.channel-name-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.channel-description-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .channel-card-marketing-promotion-guide {
    flex: 1 1 100%;
    max-width: none;
  }
}

.strategy-section-marketing-promotion-guide {
  background: #0d1526;
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.strategy-content-marketing-promotion-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategy-text-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.strategy-title-marketing-promotion-guide {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}

.strategy-description-marketing-promotion-guide {
  color: #94a3b8;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.strategy-text-marketing-promotion-guide {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.strategy-quote-marketing-promotion-guide {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  margin: clamp(1rem, 2vw, 1.5rem) 0;
  border-radius: 8px;
}

.strategy-quote-text-marketing-promotion-guide {
  color: #e2e8f0;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
}

.strategy-quote-author-marketing-promotion-guide {
  color: #94a3b8;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-style: normal;
  display: block;
}

.strategy-image-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-image-marketing-promotion-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .strategy-content-marketing-promotion-guide {
    flex-direction: column;
  }
  
  .strategy-text-marketing-promotion-guide,
  .strategy-image-marketing-promotion-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-marketing-promotion-guide {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.implementation-header-marketing-promotion-guide {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.implementation-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.implementation-subtitle-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.implementation-steps-marketing-promotion-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.step-item-marketing-promotion-guide {
  display: flex;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.step-item-marketing-promotion-guide:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
}

.step-number-marketing-promotion-guide {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: #f59e0b;
  flex-shrink: 0;
  min-width: 70px;
  text-align: center;
}

.step-content-marketing-promotion-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.step-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
}

.step-description-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-marketing-promotion-guide {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-number-marketing-promotion-guide {
    min-width: auto;
  }
}

.measurement-section-marketing-promotion-guide {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.measurement-content-marketing-promotion-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.measurement-image-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.measurement-image-marketing-promotion-guide img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.measurement-text-marketing-promotion-guide {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.measurement-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  line-height: 1.2;
}

.measurement-description-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.measurement-text-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .measurement-content-marketing-promotion-guide {
    flex-direction: column;
  }
  
  .measurement-image-marketing-promotion-guide,
  .measurement-text-marketing-promotion-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-marketing-promotion-guide {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.conclusion-content-marketing-promotion-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  text-align: center;
}

.conclusion-text-marketing-promotion-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-description-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.conclusion-text-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  line-height: 1.7;
}

.conclusion-cta-marketing-promotion-guide {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
}

.conclusion-cta-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
}

.conclusion-cta-text-marketing-promotion-guide {
  color: #1a1a1a;
  font-size: clamp(0.95rem, 1vw, 1.0625rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.btn-primary-marketing-promotion-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #0a0f1e;
  color: #f59e0b;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.95rem, 1vw, 1rem);
}

.btn-primary-marketing-promotion-guide:hover {
  background: #111d2f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
}

.disclaimer-section-marketing-promotion-guide {
  background: #ffffff;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-marketing-promotion-guide {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  margin-bottom: clamp(1rem, 1.5vw, 1.25rem);
}

.disclaimer-text-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.7;
}

.related-section-marketing-promotion-guide {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.related-header-marketing-promotion-guide {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.related-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
}

.related-subtitle-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.related-cards-marketing-promotion-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-marketing-promotion-guide {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-card-marketing-promotion-guide:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  border-color: #f59e0b;
}

.related-image-marketing-promotion-guide {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
}

.related-img-marketing-promotion-guide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-body-marketing-promotion-guide {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding: clamp(1.25rem, 2vw, 1.75rem);
}

.related-card-title-marketing-promotion-guide {
  color: #0a0f1e;
  font-size: clamp(1.125rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-marketing-promotion-guide {
  color: #4b5563;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.6;
}

.related-link-marketing-promotion-guide {
  color: #f59e0b;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: clamp(0.75rem, 1vw, 1rem);
}

.related-link-marketing-promotion-guide:hover {
  color: #d97706;
  text-decoration: underline;
}

.breadcrumbs-marketing-promotion-guide {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  flex-wrap: wrap;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
}

.breadcrumbs-marketing-promotion-guide a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-marketing-promotion-guide a:hover {
  color: #f59e0b;
}

.breadcrumbs-marketing-promotion-guide span {
  color: #94a3b8;
}

.breadcrumbs-marketing-promotion-guide > span:last-child {
  color: #f59e0b;
  font-weight: 500;
}

@media (max-width: 768px) {
  .related-card-marketing-promotion-guide {
    flex: 1 1 100%;
    max-width: none;
  }
  
  .hero-image-marketing-promotion-guide {
    margin-top: clamp(2rem, 4vw, 3rem);
  }
}

@media (max-width: 480px) {
  .hero-content-marketing-promotion-guide {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }
  
  .meta-badge-marketing-promotion-guide {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

/* Post Page 5 Styles */
.main-team-management-leadership {
  width: 100%;
}

.main-team-management-leadership section {
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ====== HERO SECTION ====== */
.hero-section-team-management-leadership {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-team-management-leadership::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content-team-management-leadership {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.hero-title-team-management-leadership {
  color: #ffffff;
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-subtitle-team-management-leadership {
  color: #94a3b8;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 400;
  max-width: 700px;
}

.hero-meta-team-management-leadership {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.meta-badge-team-management-leadership {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-team-management-leadership i {
  font-size: 0.875rem;
}

.breadcrumbs-team-management-leadership {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-team-management-leadership a {
  color: #cbd5e1;
  transition: color 0.3s ease;
}

.breadcrumbs-team-management-leadership a:hover {
  color: #f59e0b;
}

.breadcrumbs-team-management-leadership span {
  color: #64748b;
}

.hero-image-container-team-management-leadership {
  position: relative;
  height: clamp(300px, 50vw, 500px);
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  border: 2px solid rgba(245, 158, 11, 0.2);
}

.hero-image-team-management-leadership {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====== INTRO SECTION ====== */
.intro-section-team-management-leadership {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.intro-content-team-management-leadership {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-team-management-leadership {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.intro-description-team-management-leadership {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

.intro-image-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  height: clamp(300px, 40vw, 400px);
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.intro-img-team-management-leadership {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-team-management-leadership {
    flex-direction: column;
  }

  .intro-text-team-management-leadership,
  .intro-image-team-management-leadership {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-team-management-leadership {
    height: 300px;
  }
}

/* ====== FOUNDATIONS SECTION ====== */
.foundations-section-team-management-leadership {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
  position: relative;
}

.foundations-content-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 4rem);
}

.foundations-header-team-management-leadership {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.foundations-title-team-management-leadership {
  color: #ffffff;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.foundations-subtitle-team-management-leadership {
  color: #94a3b8;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.foundations-steps-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2.5rem);
}

.foundations-step-team-management-leadership {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 2vw, 2rem);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: clamp(12px, 2vw, 16px);
  transition: all 0.3s ease;
}

.foundations-step-team-management-leadership:hover {
  background: rgba(245, 158, 11, 0.05);
  border-color: #f59e0b;
}

.foundations-step-number-team-management-leadership {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.foundations-step-content-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.foundations-step-title-team-management-leadership {
  color: #ffffff;
  font-size: clamp(1.125rem, 1.5vw, 1.375rem);
  font-weight: 600;
}

.foundations-step-text-team-management-leadership {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

/* ====== MOTIVATION SECTION ====== */
.motivation-section-team-management-leadership {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.motivation-wrapper-team-management-leadership {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.motivation-text-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.motivation-title-team-management-leadership {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.motivation-description-team-management-leadership {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

.motivation-points-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.motivation-point-team-management-leadership {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.motivation-point-title-team-management-leadership {
  color: #0a0f1e;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.motivation-point-text-team-management-leadership {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

.motivation-image-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  height: clamp(300px, 40vw, 400px);
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.motivation-img-team-management-leadership {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .motivation-wrapper-team-management-leadership {
    flex-direction: column;
  }

  .motivation-text-team-management-leadership,
  .motivation-image-team-management-leadership {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .motivation-image-team-management-leadership {
    height: 300px;
  }
}

/* ====== CULTURE SECTION ====== */
.culture-section-team-management-leadership {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.culture-header-team-management-leadership {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.culture-title-team-management-leadership {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.culture-subtitle-team-management-leadership {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.culture-grid-team-management-leadership {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.culture-card-team-management-leadership {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 2vw, 2.5rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.culture-card-team-management-leadership:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
}

.culture-card-icon-team-management-leadership {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 10px;
  color: #f59e0b;
  font-size: 1.5rem;
}

.culture-card-title-team-management-leadership {
  color: #0a0f1e;
  font-size: 1.125rem;
  font-weight: 600;
}

.culture-card-text-team-management-leadership {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .culture-card-team-management-leadership {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ====== CHALLENGES SECTION ====== */
.challenges-section-team-management-leadership {
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1526 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.challenges-wrapper-team-management-leadership {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.challenges-image-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  height: clamp(300px, 40vw, 400px);
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.challenges-img-team-management-leadership {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.challenges-text-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenges-title-team-management-leadership {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.challenges-description-team-management-leadership {
  color: #cbd5e1;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

.challenges-quote-team-management-leadership {
  padding: clamp(1.5rem, 2vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 8px;
  margin: 1rem 0;
}

.challenges-quote-text-team-management-leadership {
  color: #f1f5f9;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.8;
}

.challenges-list-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.challenge-item-team-management-leadership {
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.1);
  border-radius: 10px;
}

.challenge-item-title-team-management-leadership {
  color: #f59e0b;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.challenge-item-text-team-management-leadership {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .challenges-wrapper-team-management-leadership {
    flex-direction: column;
  }

  .challenges-image-team-management-leadership,
  .challenges-text-team-management-leadership {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .challenges-image-team-management-leadership {
    height: 300px;
  }
}

/* ====== DEVELOPMENT SECTION ====== */
.development-section-team-management-leadership {
  background: #f8fafc;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.development-wrapper-team-management-leadership {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.development-text-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.development-title-team-management-leadership {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
}

.development-description-team-management-leadership {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.7;
}

.development-features-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.development-feature-team-management-leadership {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: #ffffff;
  border-radius: 10px;
  border-left: 3px solid #f59e0b;
}

.development-feature-icon-team-management-leadership {
  color: #f59e0b;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.development-feature-text-team-management-leadership {
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.6;
}

.development-image-team-management-leadership {
  flex: 1 1 50%;
  max-width: 50%;
  height: clamp(300px, 40vw, 400px);
  border-radius: clamp(12px, 2vw, 20px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.development-img-team-management-leadership {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .development-wrapper-team-management-leadership {
    flex-direction: column;
  }

  .development-text-team-management-leadership,
  .development-image-team-management-leadership {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .development-image-team-management-leadership {
    height: 300px;
  }
}

/* ====== CTA SECTION ====== */
.cta-section-team-management-leadership {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.cta-content-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.cta-title-team-management-leadership {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

.cta-description-team-management-leadership {
  color: #374151;
  font-size: clamp(0.95rem, 1.2vw, 1.125rem);
  line-height: 1.8;
}

.cta-buttons-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .cta-buttons-team-management-leadership {
    flex-direction: row;
    justify-content: center;
  }
}

.btn-cta-primary-team-management-leadership,
.btn-cta-secondary-team-management-leadership {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.95rem, 1vw, 1.125rem);
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  width: 100%;
  max-width: 300px;
}

@media (min-width: 768px) {
  .btn-cta-primary-team-management-leadership,
  .btn-cta-secondary-team-management-leadership {
    width: auto;
  }
}

.btn-cta-primary-team-management-leadership {
  background: #f59e0b;
  color: #000000;
}

.btn-cta-primary-team-management-leadership:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(245, 158, 11, 0.2);
}

.btn-cta-secondary-team-management-leadership {
  background: transparent;
  border-color: #0a0f1e;
  color: #0a0f1e;
}

.btn-cta-secondary-team-management-leadership:hover {
  background: #0a0f1e;
  color: #ffffff;
}

/* ====== DISCLAIMER SECTION ====== */
.disclaimer-section-team-management-leadership {
  background: #f1f5f9;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.disclaimer-content-team-management-leadership {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-team-management-leadership {
  color: #0a0f1e;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-team-management-leadership {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ====== RELATED SECTION ====== */
.related-section-team-management-leadership {
  background: #ffffff;
  padding: clamp(4rem, 8vw, 8rem) 0;
}

.related-header-team-management-leadership {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.related-title-team-management-leadership {
  color: #0a0f1e;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-team-management-leadership {
  color: #64748b;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.related-grid-team-management-leadership {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-team-management-leadership {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.related-card-team-management-leadership:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: #f59e0b;
}

.related-card-image-team-management-leadership {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(59, 130, 246, 0.1));
  overflow: hidden;
}

.related-img-team-management-leadership {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-body-team-management-leadership {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  flex-grow: 1;
}

.related-card-title-team-management-leadership {
  color: #0a0f1e;
  font-size: clamp(1.1rem, 1.5vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-description-team-management-leadership {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-team-management-leadership {
  color: #f59e0b;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: auto;
}

.related-card-link-team-management-leadership:hover {
  color: #d97706;
}

@media (max-width: 768px) {
  .related-card-team-management-leadership {
    flex: 1 1 100%;
    max-width: none;
  }
}

/* ====== RESPONSIVE UTILITIES ====== */
@media (max-width: 480px) {
  .breadcrumbs-team-management-leadership {
    font-size: 0.75rem;
  }

  .hero-meta-team-management-leadership {
    flex-direction: column;
    align-items: center;
  }

  .meta-badge-team-management-leadership {
    width: 100%;
    justify-content: center;
  }

  .cta-buttons-team-management-leadership {
    width: 100%;
  }

  .btn-cta-primary-team-management-leadership,
  .btn-cta-secondary-team-management-leadership {
    width: 100%;
  }
}

/* ====== ANIMATIONS ====== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section-team-management-leadership {
  animation: fadeInUp 0.6s ease forwards;
}

/* About Page Styles */
.business-mastery-about {
  font-family: var(--font-primary);
  color: var(--color-text-dark-primary);
}

.business-mastery-about section {
  width: 100%;
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1rem, 5vw, 2rem);
  padding-right: clamp(1rem, 5vw, 2rem);
}

.hero-gateway-about {
  background: var(--color-bg-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.hero-gateway-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-gateway-title-about {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.15;
  word-wrap: break-word;
}

.hero-gateway-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  line-height: 1.5;
}

.hero-gateway-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  margin-top: 1rem;
}

.hero-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  justify-content: center;
  margin-top: 2rem;
}

.stat-item-about {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.stat-label-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  margin-top: 0.5rem;
}

.journey-section-about {
  background: var(--color-bg-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.journey-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.journey-intro-about {
  text-align: center;
  margin-bottom: 1rem;
}

.journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.journey-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.journey-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.journey-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem auto 0;
}

.methodology-section-about {
  background: var(--color-bg-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.methodology-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.methodology-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.methodology-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.methodology-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.methodology-steps-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.methodology-step-about {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-card-dark);
  border-radius: 12px;
  border-left: 3px solid var(--color-secondary);
}

.step-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-secondary);
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.step-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.approach-section-about {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.approach-header-about {
  text-align: center;
  margin-bottom: 1rem;
}

.approach-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.approach-description-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.values-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.value-card-about {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.value-card-icon-about {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.1);
  color: var(--color-primary);
  border-radius: 10px;
  font-size: 1.5rem;
}

.value-card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.value-card-text-about {
  font-size: 0.9375rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

.commitment-section-about {
  background: var(--color-bg-dark);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.commitment-content-about {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}

.commitment-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
  align-self: center;
}

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
}

.commitment-quote-about {
  padding: clamp(2rem, 4vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-card-dark);
  margin: 1.5rem auto;
  max-width: 700px;
  text-align: left;
}

.quote-text-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-light-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-about {
  font-size: 0.875rem;
  color: var(--color-text-light-secondary);
  font-style: normal;
}

.commitment-text-about {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.commitment-visual-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem auto 0;
}

.disclaimer-section-about {
  background: var(--color-bg-light-tertiary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-header-about {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.disclaimer-icon-about {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.disclaimer-title-about {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.disclaimer-text-about {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .hero-gateway-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .journey-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .methodology-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .approach-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .commitment-section-about {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .value-card-about {
    flex: 1 1 45%;
  }
}

@media (min-width: 1024px) {
  .hero-gateway-about {
    padding: 6rem 0;
  }

  .journey-section-about {
    padding: 6rem 0;
  }

  .methodology-section-about {
    padding: 6rem 0;
  }

  .approach-section-about {
    padding: 6rem 0;
  }

  .commitment-section-about {
    padding: 6rem 0;
  }

  .value-card-about {
    flex: 1 1 30%;
    max-width: 380px;
  }
}

/* Privacy Page Styles */
:root {
  --color-bg-dark: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.03);
  --color-bg-card-light: rgba(255, 255, 255, 0.95);
  --color-text-light-primary: #ffffff;
  --color-text-light-secondary: #94a3b8;
  --color-text-light-muted: #64748b;
  --color-text-dark-primary: #0a0f1e;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  --color-primary: #f59e0b;
  --color-primary-light: #fbbf24;
  --color-primary-dark: #d97706;
  --color-secondary: #3b82f6;
  --color-secondary-light: #60a5fa;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.legal-docs {
  width: 100%;
  background: var(--color-bg-light);
}

.legal-docs .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

section, [class*="-section"] {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background: var(--color-bg-light);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.hero-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-muted);
  line-height: 1.6;
  max-width: 800px;
}

.hero-meta {
  font-size: 0.875rem;
  color: var(--color-primary-dark);
  font-weight: 500;
}

/* Content Section */
.content-section {
  background: var(--color-bg-light);
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.content-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.content-block h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-block p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-block ul {
  list-style: none;
  padding-left: 0;
}

.content-block li {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.content-block li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.content-block ol {
  list-style: none;
  counter-reset: item;
  padding-left: 0;
}

.content-block ol li {
  counter-increment: item;
  padding-left: 1.75rem;
}

.content-block ol li:before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Contact Section */
.contact-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.contact-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.contact-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.contact-item strong {
  color: var(--color-text-dark-primary);
  font-weight: 600;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-section {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .content-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
  }

  .contact-section {
    padding: clamp(3rem, 6vw, 4rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 6rem 0;
  }

  .content-section {
    padding: 5rem 0;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .content-wrapper {
    gap: 3rem;
  }
}

/* Text overflow prevention */
h1, h2, h3, h4, h5, h6, p {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Link styling */
.legal-docs a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.legal-docs a:hover {
  color: var(--color-secondary-light);
}

/* Focus states for accessibility */
.legal-docs a:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* Thank You Page Styles */
/* Thank you page component */
  .thank-page {
    display: flex;
    flex-direction: column;
  }

  /* Thank you section */
  .thank-section {
    background: var(--color-bg-dark);
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3rem) 0;
    overflow: hidden;
  }

  .thank-section .container {
    width: 100%;
    max-width: 1440px;
    padding: 0 clamp(1rem, 4vw, 2rem);
    margin: 0 auto;
  }

  /* Thank you content wrapper */
  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    padding: clamp(2rem, 5vw, 3rem);
  }

  /* Success icon */
  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    background: rgba(245, 158, 11, 0.15);
    border-radius: 50%;
    animation: scale-in 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--color-primary);
  }

  @keyframes scale-in {
    from {
      transform: scale(0);
      opacity: 0;
    }
    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  /* Main heading */
  .thank-section h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
  }

  /* Subtitle */
  .thank-subtitle {
    font-size: clamp(1rem, 3vw, 1.375rem);
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
    letter-spacing: 0.5px;
  }

  /* Description text */
  .thank-description {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: var(--color-text-light-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Benefits section */
  .thank-benefits {
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
    width: 100%;
    max-width: 500px;
    margin: clamp(1rem, 3vw, 2rem) auto;
  }

  /* Individual benefit item */
  .benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
  }

  .benefit-item:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.4);
  }

  .benefit-item i {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: var(--color-primary);
  }

  .benefit-item span {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: var(--color-text-light-secondary);
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* Button styles */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.75rem, 4vw, 2.5rem);
    font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
  }

  .btn-primary {
    background: var(--color-primary);
    color: #000000;
  }

  .btn-primary:hover {
    background: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  /* Tablet and larger screens */
  @media (min-width: 768px) {
    .thank-section {
      min-height: 100vh;
      padding: 3rem 0;
    }

    .thank-content {
      gap: 2.5rem;
      padding: 3rem;
    }

    .benefit-item {
      flex-direction: row;
      justify-content: flex-start;
      gap: 1.5rem;
      text-align: left;
    }

    .benefit-item i {
      flex-shrink: 0;
      min-width: 1.75rem;
    }

    .thank-benefits {
      max-width: 600px;
    }
  }

  /* Large desktop screens */
  @media (min-width: 1024px) {
    .thank-section {
      min-height: 100vh;
      padding: 4rem 0;
    }

    .thank-content {
      gap: 3rem;
      padding: 4rem;
    }

    .benefit-item {
      padding: 1.5rem 2rem;
    }

    .benefit-item span {
      font-size: 1rem;
    }
  }

  /* Extra large screens */
  @media (min-width: 1440px) {
    .thank-section {
      padding: 6rem 0;
    }

    .thank-content {
      gap: 3rem;
      padding: 4rem;
    }
  }

/* 404 Page Styles */
/* Error Page Wrapper */
.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error Section */
.error-section {
  background: var(--color-bg-dark);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.error-section .container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
}

/* Error Code */
.error-code-wrapper {
  position: relative;
  margin-bottom: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
}

.error-accent {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(100px, 30vw, 200px);
  height: clamp(8px, 2vw, 12px);
  background: var(--color-primary);
  border-radius: var(--radius-xl);
  opacity: 0.6;
}

/* Error Inner Content */
.error-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin: clamp(2rem, 4vw, 3rem) 0 clamp(1rem, 3vw, 1.5rem);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-light-muted);
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.95rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-dark-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-large {
  padding: clamp(1rem, 2.5vw, 1.25rem) clamp(2rem, 5vw, 3rem);
}

/* Decorative Elements */
.error-decoration {
  position: absolute;
  opacity: 0.05;
  z-index: 1;
  pointer-events: none;
}

.error-decoration-top {
  top: 5%;
  left: 5%;
  font-size: clamp(4rem, 15vw, 200px);
  color: var(--color-primary);
  animation: float-slow 6s ease-in-out infinite;
}

.error-decoration-bottom {
  bottom: 5%;
  right: 5%;
  font-size: clamp(3rem, 12vw, 150px);
  color: var(--color-secondary);
  animation: float-slow-reverse 7s ease-in-out infinite;
}

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

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

/* Suggestion Cards */
.error-suggestions {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(3rem, 6vw, 4rem);
  position: relative;
  z-index: 2;
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(245, 158, 11, 0.1);
  transition: all 0.3s ease;
}

.suggestion-item:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-4px);
}

.suggestion-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.suggestion-item span {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-light-secondary);
  font-weight: 500;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Responsive Design */
@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 3rem;
  }

  .error-accent {
    width: 250px;
    height: 12px;
  }

  .error-suggestions {
    gap: 2rem;
    margin-top: 4rem;
  }

  .suggestion-item {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-code-wrapper {
    margin-bottom: 4rem;
  }

  .error-inner {
    max-width: 700px;
  }

  .error-title {
    margin-top: 3.5rem;
    margin-bottom: 1.75rem;
  }

  .error-description {
    margin-bottom: 1.5rem;
  }

  .error-subtitle {
    margin-bottom: 3rem;
  }

  .error-suggestions {
    gap: 2.5rem;
    margin-top: 5rem;
  }

  .suggestion-item {
    padding: 1.75rem;
    min-width: 150px;
  }

  .suggestion-item i {
    font-size: 2.5rem;
  }

  .suggestion-item span {
    font-size: 1rem;
  }
}

@media (min-width: 1440px) {
  .error-decoration-top {
    font-size: 200px;
    top: 10%;
    left: 8%;
  }

  .error-decoration-bottom {
    font-size: 150px;
    bottom: 10%;
    right: 8%;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .error-decoration,
  .suggestion-item {
    animation: none !important;
    transition: none !important;
  }
}

/* Print Styles */
@media print {
  .error-decoration {
    display: none;
  }

  .btn {
    border: 2px solid var(--color-primary);
  }
}