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

:root {
  
  
  
  
  --color-bg-dark-primary: #0c1929;
  --color-bg-dark-secondary: #162d50;
  --color-bg-dark-tertiary: #1e3a5f;
  
  
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(59, 130, 246, 0.1);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #bfdbfe;
  --color-text-dark-muted: #60a5fa;
  
  
  --color-text-light-primary: #0c1929;
  --color-text-light-secondary: #475569;
  --color-text-light-muted: #64748b;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #60a5fa;
  --color-secondary: #06b6d4;
  
  
  --font-primary: 'Inter', 'Noto Sans JP', sans-serif;
  --font-heading: 'Inter', 'Noto Sans JP', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  
  --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.15);
  --shadow-dark: 0 20px 25px rgba(0, 0, 0, 0.3);
}

* {
  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;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  font-family: var(--font-heading);
}

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

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

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

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

.btn-secondary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(6, 182, 212, 0.3);
}

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.dark-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: var(--color-text-dark-primary);
}

.dark-section p,
.dark-section li,
.dark-section span {
  color: var(--color-text-dark-secondary);
}

.dark-section a:not(.btn) {
  color: var(--color-primary);
}

.dark-section a:not(.btn):hover {
  color: var(--color-primary-hover);
}

.dark-section-card {
  background: var(--color-bg-card-dark);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all 0.3s ease;
}

.dark-section-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.light-section {
  background: var(--color-bg-light-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.light-section-alt {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6,
.light-section-alt h1,
.light-section-alt h2,
.light-section-alt h3,
.light-section-alt h4,
.light-section-alt h5,
.light-section-alt h6 {
  color: var(--color-text-light-primary);
}

.light-section p,
.light-section li,
.light-section span,
.light-section-alt p,
.light-section-alt li,
.light-section-alt span {
  color: var(--color-text-light-secondary);
}

.light-section a:not(.btn),
.light-section-alt a:not(.btn) {
  color: var(--color-primary);
}

.light-section a:not(.btn):hover,
.light-section-alt a:not(.btn):hover {
  color: var(--color-primary-hover);
}

.light-section-card,
.light-section-alt-card {
  background: var(--color-bg-card-light);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.light-section-card:hover,
.light-section-alt-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.grid {
  display: grid;
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

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

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

.flex {
  display: flex;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.flex-column {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

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

.form-label {
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

.form-input,
.form-textarea,
.form-select {
  padding: clamp(0.625rem, 1.5vw, 0.875rem) var(--space-md);
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  background: #ffffff;
  color: #000000;
}

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

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

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

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
  margin: var(--space-md) 0;
}

.accent-dot {
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  display: inline-block;
  margin: 0 var(--space-sm);
}

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .flex-between {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hide-mobile {
    display: none;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none;
  }
}

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

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-slide-up {
  animation: slide-up 0.6s ease-out;
}

.animate-slide-in-left {
  animation: slide-in-left 0.6s ease-out;
}

.animate-slide-in-right {
  animation: slide-in-right 0.6s ease-out;
}

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

.hero-section-subtitle {
  color: var(--color-text-dark-secondary);
}

.hero-section-description {
  color: var(--color-text-dark-secondary);
}

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

.features-section-subtitle {
  color: var(--color-text-light-secondary);
}

.features-section-description {
  color: var(--color-text-light-secondary);
}

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

.features-card-text {
  color: var(--color-text-light-secondary);
}

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

.about-section-text {
  color: var(--color-text-dark-secondary);
}

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

.benefits-section-subtitle {
  color: var(--color-text-light-secondary);
}

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

.benefits-item-text {
  color: var(--color-text-light-secondary);
}

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

.testimonials-quote {
  color: var(--color-text-dark-secondary);
}

.testimonials-author {
  color: var(--color-text-dark-primary);
}

.testimonials-role {
  color: var(--color-text-dark-muted);
}

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

.resources-section-subtitle {
  color: var(--color-text-light-secondary);
}

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

.resources-item-description {
  color: var(--color-text-light-secondary);
}

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

.contact-section-text {
  color: var(--color-text-dark-secondary);
}

.contact-info-label {
  color: var(--color-text-dark-muted);
}

.contact-info-value {
  color: var(--color-text-dark-primary);
}

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

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

.faq-answer {
  color: var(--color-text-light-secondary);
}

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

.cta-section-description {
  color: var(--color-text-dark-secondary);
}
.creator-hub {
  width: 100%;
}

.creator-hub section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

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

.hero-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-ambient-glow {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-field {
  position: absolute;
  bottom: -200px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-left {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-right {
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-top {
  position: absolute;
  top: 10%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-bottom {
  position: absolute;
  bottom: 5%;
  left: 20%;
  width: 150px;
  height: 150px;
  background: rgba(250, 204, 21, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-accent {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-section-title {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(1rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-section-subtitle {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hero-stat-number {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
}

.hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-section .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

.hero-section .btn-primary {
  background: var(--color-primary);
  color: #0f172a;
  border: none;
}

.hero-section .btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

.hero-section .btn-secondary {
  background: transparent;
  border: 2px solid var(--color-text-dark-secondary);
  color: var(--color-text-dark-secondary);
}

.hero-section .btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.features-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.features-color-field-left {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-color-field-right {
  position: absolute;
  bottom: -100px;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-accent-top {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-shape-accent-bottom {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 40% 60% 60% 40% / 60% 50% 50% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  position: relative;
  z-index: 10;
}

.features-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.features-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.features-section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.features-section-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.features-section-card {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-light-secondary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-section-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.12);
}

.features-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.features-card-title {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.features-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
  flex-grow: 1;
}

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

.about-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.about-organic-shape-left {
  position: absolute;
  top: 5%;
  left: -50px;
  width: 350px;
  height: 350px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.about-organic-shape-right {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-glow-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
  pointer-events: none;
}

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

.about-text-block {
  flex: 1 1 350px;
  min-width: 300px;
}

.about-section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
}

.about-section-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-section-link {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 300ms ease;
  position: relative;
  padding-bottom: 2px;
}

.about-section-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms ease;
}

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

.about-image-block {
  flex: 1 1 350px;
  min-width: 300px;
}

.about-section-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
  
  .about-text-block,
  .about-image-block {
    flex: 1 1 100%;
  }
}

.process-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.process-glow-accent-top {
  position: absolute;
  top: -100px;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-floating-panel-left {
  position: absolute;
  top: 25%;
  left: -30px;
  width: 200px;
  height: 150px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.process-floating-panel-right {
  position: absolute;
  bottom: 15%;
  right: -40px;
  width: 220px;
  height: 160px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: 12px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.process-content {
  position: relative;
  z-index: 10;
}

.process-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.process-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.process-section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.process-section-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.process-section-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
}

.process-section-step:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.12);
  transform: translateY(-3px);
}

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

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

.process-section-step-title {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.process-section-step-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

@media (max-width: 768px) {
  .process-section-step {
    flex-direction: column;
  }
  
  .process-section-step-number {
    min-width: auto;
  }
}

.featured-posts-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.featured-posts-glow-top {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-shape-bottom {
  position: absolute;
  bottom: -100px;
  left: 10%;
  width: 320px;
  height: 320px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50% 60% 40% 70% / 60% 50% 30% 40%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.featured-posts-content {
  position: relative;
  z-index: 10;
}

.featured-posts-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.featured-posts-tag {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.12);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.featured-posts-section-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
}

.featured-posts-section-subtitle {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.featured-posts-cards {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.featured-posts-card {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-posts-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-6px);
}

.featured-posts-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.featured-posts-card-content {
  padding: clamp(1rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.featured-posts-card-title {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  line-height: 1.3;
}

.featured-posts-card-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: var(--color-text-dark-secondary);
  flex-grow: 1;
}

.featured-posts-card-link {
  color: var(--color-primary);
  font-weight: 600;
  transition: all 300ms ease;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

.featured-posts-card-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 300ms ease;
}

.featured-posts-card-link:hover::after {
  width: 100%;
}

.featured-posts-cta {
  display: flex;
  justify-content: center;
}

.featured-posts-cta .btn {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
}

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

.inspiration-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.inspiration-gradient-mesh {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-accent-shape-left {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-accent-shape-right {
  position: absolute;
  bottom: 5%;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-glow-bottom {
  position: absolute;
  bottom: -100px;
  right: 20%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.inspiration-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.inspiration-quote {
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-secondary);
  margin-bottom: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
}

.inspiration-quote-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.inspiration-quote-author {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
}

.inspiration-benefits-title {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

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

.inspiration-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-md);
  transition: all 300ms ease;
}

.inspiration-benefit-item:hover {
  background: var(--color-bg-light-tertiary);
  transform: translateX(4px);
}

.inspiration-benefit-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.inspiration-benefit-text {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
}

.contact-section {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
}

.contact-glow-accent-top {
  position: absolute;
  top: -100px;
  left: 15%;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent-left {
  position: absolute;
  top: 30%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent-right {
  position: absolute;
  bottom: 10%;
  right: -60px;
  width: 250px;
  height: 250px;
  background: rgba(250, 204, 21, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.contact-section-title {
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.75rem;
}

.contact-section-description {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-section-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.contact-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-section-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-dark-secondary);
}

.contact-section-input,
.contact-section-textarea {
  width: 100%;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) 1rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-text-dark-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 300ms ease;
}

.contact-section-input:focus,
.contact-section-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.contact-section-input::placeholder,
.contact-section-textarea::placeholder {
  color: rgba(191, 219, 254, 0.6);
}

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

.contact-section-submit {
  width: 100%;
  padding: clamp(0.75rem, 1.5vw, 1rem) 2rem;
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-section-submit:hover {
  background: var(--color-primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.35);
}

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

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

.contact-info-title {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.contact-faq-item {
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.contact-faq-question {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: color 300ms ease;
}

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

.contact-faq-answer {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1e293b;
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideUp 400ms ease-out;
}

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

.cookie-banner-text {
  color: #cbd5e1;
  margin: 0;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-align: center;
  flex: 1 1 auto;
  min-width: 250px;
  line-height: 1.5;
}

.cookie-banner-link {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color 300ms ease;
}

.cookie-banner-link:hover {
  color: var(--color-primary-hover);
}

.cookie-banner-buttons {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  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-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.75rem, 0.9vw + 0.5rem, 0.95rem);
  cursor: pointer;
  transition: all 300ms ease;
  border: none;
  white-space: nowrap;
}

.cookie-btn-accept {
  background: var(--color-primary);
  color: #0f172a;
}

.cookie-btn-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(59, 130, 246, 0.3);
}

.cookie-btn-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .hero-section .btn-primary,
  .hero-section .btn-secondary {
    flex: 1 1 auto;
    min-width: 150px;
  }
  
  .hero-stats {
    justify-content: flex-start;
  }
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

    
.footer {
  position: relative;
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  color: var(--color-text-dark-secondary);
  overflow: hidden;
}

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

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.footer-about {
  flex: 1 1 280px;
  min-width: 260px;
}

.footer-about-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.footer-about-text {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-dark-secondary);
  margin: 0;
}

.footer-nav-section {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-nav-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0 0 1.25rem 0;
  font-family: var(--font-heading);
}

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

.footer-nav-link {
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

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

.footer-nav-link:hover {
  color: var(--color-text-dark-primary);
}

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

.footer-contact-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-contact-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0 0 1.25rem 0;
  font-family: var(--font-heading);
}

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

.footer-contact-item {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  line-height: 1.5;
  color: var(--color-text-dark-secondary);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-label {
  font-weight: 600;
  color: var(--color-text-dark-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
}

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

.footer-legal-section {
  flex: 1 1 180px;
  min-width: 160px;
}

.footer-legal-title {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0 0 1.25rem 0;
  font-family: var(--font-heading);
}

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

.footer-legal-link {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  position: relative;
}

.footer-legal-link::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-secondary);
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-legal-link:hover {
  color: var(--color-text-dark-primary);
}

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

.footer-copyright {
  border-top: 1px solid rgba(96, 165, 250, 0.1);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  position: relative;
  z-index: 10;
}

.footer-copyright-text {
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  letter-spacing: 0.3px;
}

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

.footer-glow-accent-2 {
  position: absolute;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  bottom: 15%;
  left: -80px;
  z-index: 1;
  pointer-events: none;
}

.footer-line-element {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.15), transparent);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .footer {
    padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2.5rem);
  }

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

  .footer-about,
  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 1 1 100%;
  }

  .footer-contact-item {
    flex-direction: row;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .footer-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .footer-about-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .footer-contact-item {
    font-size: 0.8125rem;
  }

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

  .footer-copyright-text {
    font-size: 0.75rem;
  }

  .footer-glow-accent-1 {
    width: 200px;
    height: 200px;
    filter: blur(50px);
  }

  .footer-glow-accent-2 {
    width: 150px;
    height: 150px;
    filter: blur(40px);
  }
}

.footer a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .footer a,
  .footer a::after {
    transition: none;
  }
}
    

.main.category-page-creator-inspiration {
  width: 100%;
}

.hero-section-creator-inspiration {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.hero-deco-mesh-creator {
  position: absolute;
  bottom: 5%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.08) 0%, transparent 65%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-accent-creator {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-creator {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-light-creator {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-content-creator-inspiration {
  position: relative;
  z-index: 10;
}

.hero-title-creator-inspiration {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-creator-inspiration {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-stats-creator-inspiration {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.stat-item-creator-inspiration {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-creator-inspiration {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
}

.stat-label-creator-inspiration {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-section-creator-inspiration {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-creator-inspiration {
    padding: 6rem 0 8rem;
  }
}

.posts-section-creator-inspiration {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.posts-header-creator-inspiration {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.posts-tag-creator-inspiration {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.posts-title-creator-inspiration {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.posts-subtitle-creator-inspiration {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.card-creator-inspiration {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-md);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-creator-inspiration:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
}

.card-creator-inspiration img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-creator-inspiration {
  color: var(--color-text-light-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.card-description-creator-inspiration {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta-creator-inspiration {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.meta-badge-creator-inspiration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.875rem;
  background: rgba(59, 130, 246, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
}

.meta-badge-creator-inspiration i {
  font-size: 0.875rem;
}

.card-link-creator-inspiration {
  display: inline-block;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.card-link-creator-inspiration:hover {
  color: var(--color-primary-hover);
}

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

@media (min-width: 768px) {
  .posts-section-creator-inspiration {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

.learning-path-section-creator-inspiration {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.learning-path-deco-1-creator {
  position: absolute;
  top: 15%;
  left: -120px;
  width: 280px;
  height: 280px;
  background: rgba(96, 165, 250, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-deco-2-creator {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-deco-3-creator {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 180px;
  height: 180px;
  background: rgba(96, 165, 250, 0.04);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.learning-path-header-creator-inspiration {
  position: relative;
  z-index: 10;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.learning-path-tag-creator-inspiration {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(96, 165, 250, 0.15);
  color: var(--color-primary-hover);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.learning-path-title-creator-inspiration {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.learning-path-steps-creator-inspiration {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 10;
}

.learning-path-step-creator-inspiration {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.learning-path-step-creator-inspiration:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateX(8px);
}

.learning-path-step-number-creator-inspiration {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.learning-path-step-content-creator-inspiration {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.learning-path-step-title-creator-inspiration {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.learning-path-step-text-creator-inspiration {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .learning-path-section-creator-inspiration {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (max-width: 768px) {
  .learning-path-step-creator-inspiration {
    flex-direction: column;
    align-items: flex-start;
  }

  .learning-path-step-number-creator-inspiration {
    min-width: auto;
  }
}

.essential-tools-section-creator-inspiration {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.essential-tools-header-creator-inspiration {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.essential-tools-tag-creator-inspiration {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.essential-tools-title-creator-inspiration {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.essential-tools-subtitle-creator-inspiration {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  max-width: 650px;
  margin: 0 auto;
}

.essential-tools-content-creator-inspiration {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(2rem, 4vw, 2.5rem);
}

.essential-tools-category-creator-inspiration {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.essential-tools-category-creator-inspiration:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.tools-category-title-creator-inspiration {
  color: var(--color-text-light-primary);
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tools-category-title-creator-inspiration::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--color-primary);
  border-radius: 2px;
}

.tools-category-description-creator-inspiration {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .essential-tools-section-creator-inspiration {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (max-width: 768px) {
  .essential-tools-content-creator-inspiration {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-stats-creator-inspiration {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .stat-item-creator-inspiration {
    flex: 1 1 calc(50% - 0.75rem);
  }
}

@media (min-width: 1024px) {
  .stat-item-creator-inspiration {
    flex: 0 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .card-creator-inspiration,
  .learning-path-step-creator-inspiration,
  .essential-tools-category-creator-inspiration,
  .card-link-creator-inspiration {
    transition: none;
  }

  .card-creator-inspiration:hover,
  .learning-path-step-creator-inspiration:hover,
  .essential-tools-category-creator-inspiration:hover {
    transform: none;
  }
}

.card-link-creator-inspiration:focus-visible,
.meta-badge-creator-inspiration:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-md);
}

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

.main-digital-drawing-fundamentals {
  width: 100%;
  font-family: var(--font-primary);
}

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

.breadcrumbs-digital-drawing-fundamentals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
}

.breadcrumb-link-digital-drawing-fundamentals {
  color: var(--color-primary-hover);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-digital-drawing-fundamentals:hover {
  color: var(--color-primary);
  text-decoration: underline;
}

.breadcrumb-separator-digital-drawing-fundamentals {
  color: var(--color-text-dark-muted);
  margin: 0 0.25rem;
}

.breadcrumb-current-digital-drawing-fundamentals {
  color: var(--color-text-dark-secondary);
}

.hero-section-digital-drawing-fundamentals {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-digital-drawing-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-digital-drawing-fundamentals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-digital-drawing-fundamentals {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-digital-drawing-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-digital-drawing-fundamentals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-hover);
  border-radius: var(--radius-lg);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  font-weight: 500;
}

.meta-badge-digital-drawing-fundamentals i {
  color: var(--color-primary);
}

.hero-stats-digital-drawing-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-digital-drawing-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-digital-drawing-fundamentals {
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  color: var(--color-text-dark-secondary);
}

.hero-image-wrapper-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-digital-drawing-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.introduction-section-digital-drawing-fundamentals {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.introduction-content-digital-drawing-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.introduction-description-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-image-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-img-digital-drawing-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.foundations-section-digital-drawing-fundamentals {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-digital-drawing-fundamentals {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-digital-drawing-fundamentals {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: clamp(0.75rem, 1vw + 0.4rem, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.foundations-title-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundations-subtitle-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.foundations-steps-digital-drawing-fundamentals {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.foundation-step-digital-drawing-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
}

.step-number-digital-drawing-fundamentals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-digital-drawing-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.step-title-digital-drawing-fundamentals {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.step-text-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.techniques-section-digital-drawing-fundamentals {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.techniques-wrapper-digital-drawing-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.techniques-text-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-title-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.techniques-description-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.techniques-highlight-digital-drawing-fundamentals {
  margin-top: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.quote-digital-drawing-fundamentals {
  font-style: italic;
  margin: 0;
}

.quote-text-digital-drawing-fundamentals {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
  display: block;
}

.techniques-image-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-img-digital-drawing-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tools-section-digital-drawing-fundamentals {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-title-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-subtitle-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-digital-drawing-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.tool-card-digital-drawing-fundamentals {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.tool-card-digital-drawing-fundamentals:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.tool-icon-digital-drawing-fundamentals {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.tool-name-digital-drawing-fundamentals {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.tool-description-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.practice-section-digital-drawing-fundamentals {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practice-wrapper-digital-drawing-fundamentals {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.practice-image-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-img-digital-drawing-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.practice-text-digital-drawing-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.practice-title-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.practice-description-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practice-checklist-digital-drawing-fundamentals {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: var(--radius-lg);
}

.checklist-title-digital-drawing-fundamentals {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
}

.checklist-items-digital-drawing-fundamentals {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-item-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-light-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.checklist-item-digital-drawing-fundamentals::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.conclusion-section-digital-drawing-fundamentals {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-digital-drawing-fundamentals {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-section-digital-drawing-fundamentals {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-title-digital-drawing-fundamentals {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 0.75rem;
}

.cta-description-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: 1.5rem;
}

.btn-primary-digital-drawing-fundamentals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  background: var(--color-primary);
  color: #0f172a;
  border: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-digital-drawing-fundamentals:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-digital-drawing-fundamentals {
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 4px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
}

.disclaimer-title-digital-drawing-fundamentals {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-digital-drawing-fundamentals:last-child {
  margin-bottom: 0;
}

.related-section-digital-drawing-fundamentals {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-digital-drawing-fundamentals {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-digital-drawing-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-digital-drawing-fundamentals {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.related-card-digital-drawing-fundamentals:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.related-card-image-digital-drawing-fundamentals {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-digital-drawing-fundamentals {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-digital-drawing-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-digital-drawing-fundamentals {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.related-card-description-digital-drawing-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-digital-drawing-fundamentals {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  transition: all 0.2s ease;
  align-self: flex-start;
}

.related-card-link-digital-drawing-fundamentals:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-digital-drawing-fundamentals,
  .introduction-content-digital-drawing-fundamentals,
  .techniques-wrapper-digital-drawing-fundamentals,
  .practice-wrapper-digital-drawing-fundamentals {
    flex-direction: column;
  }

  .hero-text-wrapper-digital-drawing-fundamentals,
  .hero-image-wrapper-digital-drawing-fundamentals,
  .introduction-text-digital-drawing-fundamentals,
  .introduction-image-digital-drawing-fundamentals,
  .techniques-text-digital-drawing-fundamentals,
  .techniques-image-digital-drawing-fundamentals,
  .practice-image-digital-drawing-fundamentals,
  .practice-text-digital-drawing-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-digital-drawing-fundamentals {
    flex-direction: column;
    gap: 1rem;
  }

  .foundation-step-digital-drawing-fundamentals {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-digital-drawing-fundamentals {
    margin-bottom: 0.5rem;
  }

  .related-card-digital-drawing-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }

  .tools-grid-digital-drawing-fundamentals {
    justify-content: center;
  }

  .tool-card-digital-drawing-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-meta-digital-drawing-fundamentals {
    flex-direction: column;
    gap: 0.75rem;
  }

  .meta-badge-digital-drawing-fundamentals {
    width: 100%;
    justify-content: flex-start;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tool-card-digital-drawing-fundamentals {
  animation: fade-in 0.6s ease-out;
}

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

.main-video-production-complete-guide {
  width: 100%;
  display: block;
}

.breadcrumbs-video-production-complete-guide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-video-production-complete-guide {
  color: var(--color-primary);
  transition: color 0.2s ease;
}

.breadcrumb-link-video-production-complete-guide:hover {
  color: var(--color-primary-hover);
}

.breadcrumb-separator-video-production-complete-guide {
  color: #60a5fa;
  opacity: 0.6;
}

.breadcrumb-current-video-production-complete-guide {
  color: #cbd5e1;
  opacity: 0.8;
}

.hero-section-video-production-complete-guide {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-video-production-complete-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-block-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-video-production-complete-guide {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-video-production-complete-guide {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--color-text-dark-secondary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-description-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-image-video-production-complete-guide {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 100%;
}

.hero-stats-video-production-complete-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-video-production-complete-guide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-video-production-complete-guide {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-muted);
  font-weight: 500;
}

.hero-meta-video-production-complete-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-video-production-complete-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-video-production-complete-guide i {
  font-size: 0.875rem;
}

.intro-section-video-production-complete-guide {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-video-production-complete-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-paragraph-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-img-video-production-complete-guide {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

.content-section-one-video-production-complete-guide {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-video-production-complete-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-one-video-production-complete-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-one-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-img-one-video-production-complete-guide {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  display: block;
  max-width: 100%;
}

.highlight-box-one-video-production-complete-guide {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.highlight-title-one-video-production-complete-guide {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
}

.highlight-list-one-video-production-complete-guide {
  list-style: none;
  padding: 0;
}

.highlight-item-one-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.highlight-item-one-video-production-complete-guide::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.content-section-two-video-production-complete-guide {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-video-production-complete-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-image-two-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-text-two-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-two-video-production-complete-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-two-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-img-two-video-production-complete-guide {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

.quote-section-video-production-complete-guide {
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  margin-top: 2rem;
}

.quote-text-video-production-complete-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-light-primary);
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.quote-author-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-light-secondary);
  font-style: normal;
  display: block;
}

.production-steps-section-video-production-complete-guide {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.steps-header-video-production-complete-guide {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.steps-title-video-production-complete-guide {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.steps-subtitle-video-production-complete-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.steps-container-video-production-complete-guide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-video-production-complete-guide {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.step-item-video-production-complete-guide:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateX(10px);
}

.step-number-video-production-complete-guide {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content-video-production-complete-guide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-video-production-complete-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.step-text-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.content-section-three-video-production-complete-guide {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-video-production-complete-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-three-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-video-production-complete-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-heading-three-video-production-complete-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-paragraph-three-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.content-img-three-video-production-complete-guide {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  max-width: 100%;
}

.best-practices-section-video-production-complete-guide {
  background: var(--color-bg-dark-tertiary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-header-video-production-complete-guide {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.practices-title-video-production-complete-guide {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
}

.practices-grid-video-production-complete-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.practice-card-video-production-complete-guide {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.practice-card-video-production-complete-guide:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.practice-icon-video-production-complete-guide {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.75rem;
}

.practice-card-title-video-production-complete-guide {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
}

.practice-card-text-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
}

.conclusion-section-video-production-complete-guide {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-video-production-complete-guide {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-video-production-complete-guide {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-section-video-production-complete-guide {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 2rem;
}

.cta-title-video-production-complete-guide {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-description-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-section-video-production-complete-guide .btn-primary {
  background: #ffffff;
  color: var(--color-primary);
}

.cta-section-video-production-complete-guide .btn-primary:hover {
  background: #f0f0f0;
}

.disclaimer-section-video-production-complete-guide {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-content-video-production-complete-guide {
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-video-production-complete-guide {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
}

.related-posts-section-video-production-complete-guide {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-title-video-production-complete-guide {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-light-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.related-subtitle-video-production-complete-guide {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-light-secondary);
}

.related-cards-video-production-complete-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-video-production-complete-guide {
  flex: 1 1 300px;
  max-width: 400px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.related-card-video-production-complete-guide:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  border-color: var(--color-primary);
}

.related-card-image-video-production-complete-guide {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f0f0f0;
}

.related-image-video-production-complete-guide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.related-card-video-production-complete-guide:hover .related-image-video-production-complete-guide {
  transform: scale(1.05);
}

.related-card-content-video-production-complete-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-video-production-complete-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
  line-height: 1.3;
}

.related-card-description-video-production-complete-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  color: var(--color-text-light-secondary);
  line-height: 1.6;
  flex-grow: 1;
}

.related-link-video-production-complete-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.2s ease;
  text-decoration: none;
  align-self: flex-start;
}

.related-link-video-production-complete-guide:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.related-link-video-production-complete-guide::after {
  content: "";
  transition: transform 0.2s ease;
}

.related-link-video-production-complete-guide:hover::after {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-content-video-production-complete-guide,
  .intro-content-wrapper-video-production-complete-guide,
  .content-wrapper-one-video-production-complete-guide,
  .content-wrapper-two-video-production-complete-guide,
  .content-wrapper-three-video-production-complete-guide {
    flex-direction: column;
  }

  .hero-text-block-video-production-complete-guide,
  .hero-image-block-video-production-complete-guide,
  .intro-text-video-production-complete-guide,
  .intro-image-video-production-complete-guide,
  .content-text-one-video-production-complete-guide,
  .content-image-one-video-production-complete-guide,
  .content-image-two-video-production-complete-guide,
  .content-text-two-video-production-complete-guide,
  .content-text-three-video-production-complete-guide,
  .content-image-three-video-production-complete-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .content-wrapper-two-video-production-complete-guide {
    flex-direction: column;
  }

  .content-image-two-video-production-complete-guide {
    order: 0;
  }

  .hero-stats-video-production-complete-guide {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .stat-item-video-production-complete-guide {
    align-items: center;
  }

  .breadcrumbs-video-production-complete-guide {
    font-size: 0.75rem;
  }

  .step-item-video-production-complete-guide {
    flex-direction: column;
    align-items: flex-start;
  }

  .step-number-video-production-complete-guide {
    min-width: auto;
  }

  .practices-grid-video-production-complete-guide {
    flex-direction: column;
  }

  .practice-card-video-production-complete-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-video-production-complete-guide {
    flex-direction: column;
  }

  .related-card-video-production-complete-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .conclusion-content-video-production-complete-guide {
    padding: 0 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-stats-video-production-complete-guide {
    gap: 3rem;
  }
}

.main-visual-branding-strategy {
  width: 100%;
}

.breadcrumbs-visual-branding-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumb-link-visual-branding-strategy {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-visual-branding-strategy:hover {
  color: #bfdbfe;
}

.breadcrumb-separator-visual-branding-strategy {
  color: #94a3b8;
  margin: 0 0.25rem;
}

.breadcrumb-current-visual-branding-strategy {
  color: #cbd5e1;
}

.hero-section-visual-branding-strategy {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-visual-branding-strategy {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-visual-branding-strategy {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.hero-subtitle-visual-branding-strategy {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.article-meta-visual-branding-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.meta-badge-visual-branding-strategy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-visual-branding-strategy i {
  font-size: 0.875rem;
}

.hero-image-block-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-visual-branding-strategy {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .hero-content-visual-branding-strategy {
    flex-direction: column;
  }

  .hero-text-block-visual-branding-strategy,
  .hero-image-block-visual-branding-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-visual-branding-strategy {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.intro-text-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-paragraph-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-visual-branding-strategy {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-visual-branding-strategy {
    flex-direction: column;
  }

  .intro-text-visual-branding-strategy,
  .intro-image-visual-branding-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.colors-section-visual-branding-strategy {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.colors-content-visual-branding-strategy {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.colors-text-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.colors-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.colors-paragraph-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.colors-list-visual-branding-strategy {
  list-style: none;
  padding: 0;
  margin: clamp(1rem, 2vw, 1.5rem) 0;
}

.colors-list-item-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  padding: clamp(0.5rem, 1vw, 0.75rem) 0 clamp(0.5rem, 1vw, 0.75rem) 1.5rem;
  position: relative;
}

.colors-list-item-visual-branding-strategy:before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.colors-image-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.colors-image-img-visual-branding-strategy {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .colors-content-visual-branding-strategy {
    flex-direction: column;
  }

  .colors-text-visual-branding-strategy,
  .colors-image-visual-branding-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.typography-section-visual-branding-strategy {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.typography-content-visual-branding-strategy {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.typography-image-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.typography-image-img-visual-branding-strategy {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.typography-text-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.typography-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.typography-paragraph-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

@media (max-width: 768px) {
  .typography-content-visual-branding-strategy {
    flex-direction: column;
  }

  .typography-image-visual-branding-strategy,
  .typography-text-visual-branding-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.identity-section-visual-branding-strategy {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.identity-content-visual-branding-strategy {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.identity-text-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.identity-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.identity-paragraph-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.identity-image-visual-branding-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.identity-image-img-visual-branding-strategy {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .identity-content-visual-branding-strategy {
    flex-direction: column;
  }

  .identity-text-visual-branding-strategy,
  .identity-image-visual-branding-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-visual-branding-strategy {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.implementation-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.steps-container-visual-branding-strategy {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.step-item-visual-branding-strategy {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

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

.step-content-visual-branding-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-visual-branding-strategy {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
}

.step-text-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-visual-branding-strategy {
    flex-direction: column;
  }

  .step-number-visual-branding-strategy {
    min-width: auto;
  }
}

.tools-section-visual-branding-strategy {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tools-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.tools-grid-visual-branding-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-visual-branding-strategy {
  flex: 1 1 250px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tool-card-visual-branding-strategy:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.tool-icon-visual-branding-strategy {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.5rem;
}

.tool-name-visual-branding-strategy {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.tool-description-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

.conclusion-section-visual-branding-strategy {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-wrapper-visual-branding-strategy {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-text-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: left;
}

.conclusion-quote-visual-branding-strategy {
  margin: clamp(2rem, 4vw, 3rem) 0;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) clamp(1.5rem, 3vw, 2.5rem) 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.08);
}

.quote-text-visual-branding-strategy {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0c1929;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.quote-cite-visual-branding-strategy {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.disclaimer-section-visual-branding-strategy {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-content-visual-branding-strategy {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-visual-branding-strategy {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.disclaimer-text-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.related-section-visual-branding-strategy {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-heading-visual-branding-strategy {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
  text-align: center;
}

.related-subtitle-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

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

.related-card-visual-branding-strategy {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.related-card-visual-branding-strategy:hover {
  border-color: #3b82f6;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-card-image-visual-branding-strategy {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-visual-branding-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.related-card-title-visual-branding-strategy {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0c1929;
  line-height: 1.4;
}

.related-card-description-visual-branding-strategy {
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-visual-branding-strategy {
  display: inline-block;
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-visual-branding-strategy:hover {
  color: #1e40af;
}

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

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

@media (max-width: 768px) {
  .hero-content-visual-branding-strategy,
  .intro-content-visual-branding-strategy,
  .colors-content-visual-branding-strategy,
  .typography-content-visual-branding-strategy,
  .identity-content-visual-branding-strategy {
    flex-direction: column;
  }

  .hero-text-block-visual-branding-strategy,
  .hero-image-block-visual-branding-strategy,
  .intro-text-visual-branding-strategy,
  .intro-image-visual-branding-strategy,
  .colors-text-visual-branding-strategy,
  .colors-image-visual-branding-strategy,
  .typography-image-visual-branding-strategy,
  .typography-text-visual-branding-strategy,
  .identity-text-visual-branding-strategy,
  .identity-image-visual-branding-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 1024px) {
  .hero-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .colors-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .typography-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .identity-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .implementation-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .tools-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .conclusion-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .related-section-visual-branding-strategy {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.main-podcast-audio-production-guide {
  width: 100%;
}

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

.hero-section-podcast-audio-production-guide {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.breadcrumbs-podcast-audio-production-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-podcast-audio-production-guide a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-podcast-audio-production-guide a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-podcast-audio-production-guide span {
  color: #94a3b8;
}

.hero-content-podcast-audio-production-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-podcast-audio-production-guide {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-podcast-audio-production-guide {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1.5rem;
}

.hero-description-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-meta-podcast-audio-production-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-podcast-audio-production-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-podcast-audio-production-guide i {
  font-size: 0.875rem;
}

.hero-stats-podcast-audio-production-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
}

.stat-item-podcast-audio-production-guide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-podcast-audio-production-guide {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #60a5fa;
  line-height: 1;
}

.stat-label-podcast-audio-production-guide {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-podcast-audio-production-guide {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .hero-content-podcast-audio-production-guide {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-block-podcast-audio-production-guide,
  .hero-image-block-podcast-audio-production-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-podcast-audio-production-guide {
    gap: 1rem;
  }
}

.intro-section-podcast-audio-production-guide {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-podcast-audio-production-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-podcast-audio-production-guide {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-podcast-audio-production-guide {
    flex-direction: column;
    gap: 2rem;
  }

  .intro-text-block-podcast-audio-production-guide,
  .intro-image-block-podcast-audio-production-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.equipment-section-podcast-audio-production-guide {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.equipment-header-podcast-audio-production-guide {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-podcast-audio-production-guide {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.equipment-title-podcast-audio-production-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.equipment-subtitle-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.equipment-content-podcast-audio-production-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.equipment-text-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.equipment-subheading-podcast-audio-production-guide {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.equipment-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.equipment-highlight-podcast-audio-production-guide {
  padding: 1.5rem;
  background: rgba(96, 165, 250, 0.1);
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.highlight-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
}

.equipment-image-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.equipment-image-podcast-audio-production-guide {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .equipment-content-podcast-audio-production-guide {
    flex-direction: column;
    gap: 2rem;
  }

  .equipment-text-block-podcast-audio-production-guide,
  .equipment-image-block-podcast-audio-production-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.recording-section-podcast-audio-production-guide {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.recording-header-podcast-audio-production-guide {
  text-align: center;
  margin-bottom: 3rem;
}

.recording-title-podcast-audio-production-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.recording-subtitle-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.recording-content-podcast-audio-production-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.recording-image-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.recording-image-podcast-audio-production-guide {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.recording-text-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.recording-subheading-podcast-audio-production-guide {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 1rem;
}

.recording-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.recording-steps-podcast-audio-production-guide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.recording-step-podcast-audio-production-guide {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.recording-step-number-podcast-audio-production-guide {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.recording-step-content-podcast-audio-production-guide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recording-step-title-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0c1929;
}

.recording-step-text-podcast-audio-production-guide {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .recording-content-podcast-audio-production-guide {
    flex-direction: column;
    gap: 2rem;
  }

  .recording-image-block-podcast-audio-production-guide,
  .recording-text-block-podcast-audio-production-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.editing-section-podcast-audio-production-guide {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.editing-header-podcast-audio-production-guide {
  text-align: center;
  margin-bottom: 3rem;
}

.editing-title-podcast-audio-production-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.editing-subtitle-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.editing-content-podcast-audio-production-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.editing-text-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.editing-subheading-podcast-audio-production-guide {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.editing-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.editing-features-podcast-audio-production-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.5rem);
  margin-top: 2rem;
}

.editing-feature-card-podcast-audio-production-guide {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.editing-feature-card-podcast-audio-production-guide:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
  transform: translateY(-4px);
}

.editing-feature-icon-podcast-audio-production-guide {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  border-radius: 10px;
  font-size: 1.5rem;
}

.editing-feature-title-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
}

.editing-feature-text-podcast-audio-production-guide {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.editing-image-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.editing-image-podcast-audio-production-guide {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .editing-content-podcast-audio-production-guide {
    flex-direction: column;
    gap: 2rem;
  }

  .editing-text-block-podcast-audio-production-guide,
  .editing-image-block-podcast-audio-production-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .editing-feature-card-podcast-audio-production-guide {
    flex: 1 1 100%;
  }
}

.best-practices-section-podcast-audio-production-guide {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-header-podcast-audio-production-guide {
  text-align: center;
  margin-bottom: 3rem;
}

.best-practices-title-podcast-audio-production-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.best-practices-subtitle-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.best-practices-content-podcast-audio-production-guide {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.best-practices-image-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-image-podcast-audio-production-guide {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.best-practices-text-block-podcast-audio-production-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.best-practices-subheading-podcast-audio-production-guide {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 1rem;
}

.best-practices-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.best-practices-quote-podcast-audio-production-guide {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #0c1929;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-podcast-audio-production-guide {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

@media (max-width: 768px) {
  .best-practices-content-podcast-audio-production-guide {
    flex-direction: column;
    gap: 2rem;
  }

  .best-practices-image-block-podcast-audio-production-guide,
  .best-practices-text-block-podcast-audio-production-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-podcast-audio-production-guide {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-podcast-audio-production-guide {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-podcast-audio-production-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-box-podcast-audio-production-guide {
  margin-top: 2.5rem;
  padding: 2.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(96, 165, 250, 0.3);
  border-radius: 16px;
}

.cta-title-podcast-audio-production-guide {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1.5rem;
}

.conclusion-cta-box-podcast-audio-production-guide .btn {
  margin-top: 1rem;
}

.disclaimer-section-podcast-audio-production-guide {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-podcast-audio-production-guide {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #fbbf24;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-podcast-audio-production-guide {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.disclaimer-text-podcast-audio-production-guide {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.related-section-podcast-audio-production-guide {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-podcast-audio-production-guide {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-podcast-audio-production-guide {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-podcast-audio-production-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-podcast-audio-production-guide {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(22, 45, 80, 0.5);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-podcast-audio-production-guide:hover {
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  transform: translateY(-4px);
}

.related-card-image-podcast-audio-production-guide {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-card-content-podcast-audio-production-guide {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-podcast-audio-production-guide {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-podcast-audio-production-guide {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.related-card-link-podcast-audio-production-guide {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-link-podcast-audio-production-guide:hover {
  color: #93c5fd;
  gap: 0.75rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border: 2px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: #3b82f6;
  color: #0c1929;
}

.btn-primary:hover {
  background: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

@media (min-width: 768px) {
  .hero-section-podcast-audio-production-guide,
  .intro-section-podcast-audio-production-guide,
  .equipment-section-podcast-audio-production-guide,
  .recording-section-podcast-audio-production-guide,
  .editing-section-podcast-audio-production-guide,
  .best-practices-section-podcast-audio-production-guide,
  .conclusion-section-podcast-audio-production-guide,
  .disclaimer-section-podcast-audio-production-guide,
  .related-section-podcast-audio-production-guide {
    padding-top: clamp(4rem, 10vw, 8rem);
    padding-bottom: clamp(4rem, 10vw, 8rem);
  }
}

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

.main-social-media-growth-strategy {
  width: 100%;
  overflow-x: hidden;
}

.breadcrumbs-social-media-growth-strategy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumb-link-social-media-growth-strategy {
  color: var(--color-primary-hover);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-social-media-growth-strategy:hover {
  color: #ffffff;
}

.breadcrumb-separator-social-media-growth-strategy {
  color: #60a5fa;
  margin: 0 0.25rem;
}

.breadcrumb-current-social-media-growth-strategy {
  color: #bfdbfe;
}

.hero-section-social-media-growth-strategy {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-content-social-media-growth-strategy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-text-wrapper-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.hero-meta-social-media-growth-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-social-media-growth-strategy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-hover);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.meta-badge-social-media-growth-strategy i {
  color: var(--color-primary);
  font-size: 0.875rem;
}

.hero-stats-social-media-growth-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat-item-social-media-growth-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-social-media-growth-strategy {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.stat-label-social-media-growth-strategy {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
}

.hero-image-wrapper-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-social-media-growth-strategy {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .hero-content-social-media-growth-strategy {
    flex-direction: column;
  }

  .hero-text-wrapper-social-media-growth-strategy,
  .hero-image-wrapper-social-media-growth-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-social-media-growth-strategy {
    gap: 1.5rem;
  }
}

.intro-section-social-media-growth-strategy {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.intro-content-social-media-growth-strategy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.intro-text-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-social-media-growth-strategy {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-description-social-media-growth-strategy {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-social-media-growth-strategy {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .intro-content-social-media-growth-strategy {
    flex-direction: column;
  }

  .intro-text-social-media-growth-strategy,
  .intro-image-social-media-growth-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategy-section-social-media-growth-strategy {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-header-social-media-growth-strategy {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-social-media-growth-strategy {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.strategy-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.strategy-subtitle-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.strategy-wrapper-social-media-growth-strategy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.strategy-text-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-content-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.strategy-content-text-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.strategy-steps-social-media-growth-strategy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.strategy-step-social-media-growth-strategy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.step-number-social-media-growth-strategy {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.step-content-social-media-growth-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
}

.step-text-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.strategy-image-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-img-social-media-growth-strategy {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .strategy-wrapper-social-media-growth-strategy {
    flex-direction: column;
  }

  .strategy-text-social-media-growth-strategy,
  .strategy-image-social-media-growth-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.engagement-section-social-media-growth-strategy {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.engagement-wrapper-social-media-growth-strategy {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.engagement-image-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.engagement-img-social-media-growth-strategy {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: var(--shadow-lg);
}

.engagement-text-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.engagement-title-social-media-growth-strategy {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.engagement-content-title-social-media-growth-strategy {
  color: var(--color-text-light-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.engagement-content-text-social-media-growth-strategy {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.engagement-features-social-media-growth-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-card-social-media-growth-strategy {
  flex: 1 1 calc(50% - 0.75rem);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-card-social-media-growth-strategy:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon-social-media-growth-strategy {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.feature-title-social-media-growth-strategy {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.feature-text-social-media-growth-strategy {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .engagement-wrapper-social-media-growth-strategy {
    flex-direction: column;
  }

  .engagement-image-social-media-growth-strategy,
  .engagement-text-social-media-growth-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .feature-card-social-media-growth-strategy {
    flex: 1 1 100%;
  }
}

.growth-section-social-media-growth-strategy {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.growth-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-quote-social-media-growth-strategy {
  padding: 2rem 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
}

.quote-text-social-media-growth-strategy {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: var(--color-text-dark-primary);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-social-media-growth-strategy {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  font-style: normal;
}

.growth-wrapper-social-media-growth-strategy {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
  margin-top: 2rem;
}

.growth-text-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.growth-content-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.growth-content-text-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.growth-list-social-media-growth-strategy {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.growth-list-item-social-media-growth-strategy {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.list-number-social-media-growth-strategy {
  color: var(--color-primary);
  font-weight: bold;
  flex-shrink: 0;
}

.list-text-social-media-growth-strategy {
  flex: 1;
}

.growth-image-social-media-growth-strategy {
  flex: 1 1 50%;
  max-width: 50%;
}

.growth-img-social-media-growth-strategy {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .growth-wrapper-social-media-growth-strategy {
    flex-direction: column;
  }

  .growth-text-social-media-growth-strategy,
  .growth-image-social-media-growth-strategy {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-social-media-growth-strategy {
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.tools-title-social-media-growth-strategy {
  color: var(--color-text-light-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.tools-subtitle-social-media-growth-strategy {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-social-media-growth-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.tools-card-social-media-growth-strategy {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tools-card-social-media-growth-strategy:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tools-card-icon-social-media-growth-strategy {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-lg);
  font-size: 1.75rem;
}

.tools-card-title-social-media-growth-strategy {
  color: var(--color-text-light-primary);
  font-size: 1.125rem;
  font-weight: 600;
}

.tools-card-text-social-media-growth-strategy {
  color: var(--color-text-light-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

.conclusion-section-social-media-growth-strategy {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-social-media-growth-strategy {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.conclusion-text-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta-box-social-media-growth-strategy {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  margin-top: 3rem;
}

.cta-title-social-media-growth-strategy {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cta-text-social-media-growth-strategy {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  margin-bottom: 1.5rem;
}

.cta-box-social-media-growth-strategy .btn {
  background: #ffffff;
  color: var(--color-primary);
}

.cta-box-social-media-growth-strategy .btn:hover {
  background: #f1f5f9;
}

.disclaimer-section-social-media-growth-strategy {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.disclaimer-content-social-media-growth-strategy {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-social-media-growth-strategy {
  color: var(--color-text-light-primary);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.disclaimer-text-social-media-growth-strategy {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.related-section-social-media-growth-strategy {
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.related-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.related-subtitle-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.related-cards-social-media-growth-strategy {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.related-card-social-media-growth-strategy {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-social-media-growth-strategy:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.related-card-image-social-media-growth-strategy {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-social-media-growth-strategy {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-social-media-growth-strategy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.related-card-title-social-media-growth-strategy {
  color: var(--color-text-dark-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

.related-card-text-social-media-growth-strategy {
  color: var(--color-text-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .section-header-social-media-growth-strategy {
    margin-bottom: 2rem;
  }

  .engagement-features-social-media-growth-strategy {
    gap: 1rem;
  }

  .feature-card-social-media-growth-strategy {
    flex: 1 1 100%;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.creator-inspiration-about {
    font-family: var(--font-primary);
    color: var(--color-text-light-primary);
  }

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

  .hero-section-about {
    background: var(--color-bg-light-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .hero-title-about {
    font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-text-light-primary);
  }

  .hero-subtitle-about {
    font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
    color: var(--color-text-light-secondary);
    max-width: 700px;
    line-height: 1.6;
  }

  .hero-stats-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 4vw, 3rem);
    margin-top: clamp(2rem, 4vw, 3rem);
  }

  .stat-item-about {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .stat-number-about {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
  }

  .stat-label-about {
    font-size: 0.875rem;
    color: var(--color-text-light-muted);
    font-weight: 500;
  }

  .hero-visual-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
    margin-top: clamp(1.5rem, 3vw, 2.5rem);
  }

  .vision-section-about {
    background: var(--color-bg-light-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .section-header-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .section-tag-about {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    width: fit-content;
  }

  .section-title-about {
    font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    color: var(--color-text-light-primary);
    line-height: 1.2;
  }

  .section-description-about {
    font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
    color: var(--color-text-light-secondary);
    line-height: 1.7;
    max-width: 800px;
  }

  .approach-blocks-about {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .approach-block-about {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    background: var(--color-bg-light-primary);
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
  }

  .block-number-about {
    font-size: clamp(2rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
  }

  .block-title-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--color-text-light-primary);
  }

  .block-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-light-secondary);
    line-height: 1.6;
  }

  .tools-section-about {
    background: var(--color-bg-light-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .tools-grid-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 3vw, 2rem);
  }

  .tool-card-about {
    flex: 1 1 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .tool-card-about:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .tool-icon-about {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
  }

  .tool-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light-primary);
  }

  .tool-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-light-secondary);
    line-height: 1.6;
  }

  .community-section-about {
    background: var(--color-bg-light-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .community-visual-about {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    object-fit: cover;
  }

  .featured-quote-about {
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-left: 4px solid var(--color-primary);
    background: var(--color-bg-light-primary);
    border-radius: var(--radius-md);
    margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  }

  .quote-text-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-style: italic;
    color: var(--color-text-light-primary);
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .quote-author-about {
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
    font-style: normal;
  }

  .commitment-section-about {
    background: var(--color-bg-light-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    position: relative;
    overflow: hidden;
  }

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

  .commitment-cards-about {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .commitment-card-about {
    flex: 1 1 250px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.5rem, 3vw, 2rem);
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid #e5e7eb;
  }

  .commitment-icon-about {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    font-size: 1.375rem;
  }

  .commitment-title-about {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light-primary);
  }

  .commitment-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-light-secondary);
    line-height: 1.6;
  }

  .disclaimer-section-about {
    background: var(--color-bg-light-secondary);
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    border-top: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
  }

  .disclaimer-content-about {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .disclaimer-header-about {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .disclaimer-icon-about {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  .disclaimer-title-about {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 600;
    color: var(--color-text-light-primary);
  }

  .disclaimer-text-about {
    font-size: 0.9375rem;
    color: var(--color-text-light-secondary);
    line-height: 1.7;
  }

  @media (max-width: 768px) {
    .hero-stats-about {
      flex-direction: column;
      gap: 1.5rem;
    }

    .stat-item-about {
      flex: 1 1 100%;
    }

    .tool-card-about,
    .commitment-card-about {
      flex: 1 1 100%;
      max-width: none;
    }

    .approach-block-about {
      padding: 1.25rem;
    }
  }

  @media (min-width: 768px) {
    .hero-section-about {
      padding: 5rem 0;
    }

    .vision-section-about {
      padding: 5rem 0;
    }

    .tools-section-about {
      padding: 5rem 0;
    }

    .community-section-about {
      padding: 5rem 0;
    }

    .commitment-section-about {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .hero-section-about {
      padding: 6rem 0;
    }

    .vision-section-about {
      padding: 6rem 0;
    }

    .tools-section-about {
      padding: 6rem 0;
    }

    .community-section-about {
      padding: 6rem 0;
    }

    .commitment-section-about {
      padding: 6rem 0;
    }
  }

.creator-docs {
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
  color: var(--color-text-light-primary);
  width: 100%;
  overflow: hidden;
}

.creator-docs section {
  width: 100%;
  overflow: hidden;
}

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

.privacy-hero-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.privacy-hero-section h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-section .updated-date {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-secondary);
  font-weight: 500;
}

.privacy-content-section {
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.privacy-intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.privacy-intro-text {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
}

.privacy-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-light-primary);
  padding-bottom: clamp(0.5rem, 1vw, 1rem);
  border-bottom: 2px solid var(--color-bg-light-tertiary);
}

.privacy-section p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-light-secondary);
  margin-bottom: 0.75rem;
}

.privacy-section ul {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.privacy-section li {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
  list-style-type: disc;
}

.privacy-section li strong {
  color: var(--color-text-light-primary);
  font-weight: 600;
}

.privacy-contact-section {
  background: var(--color-bg-light-secondary);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-bg-light-tertiary);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.privacy-contact-section h2 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-light-primary);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--color-bg-light-tertiary);
  padding-bottom: 1rem;
}

.privacy-contact-intro {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: var(--color-text-light-secondary);
  margin-bottom: 1.5rem;
}

.privacy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.privacy-contact-item strong {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-light-primary);
}

.privacy-contact-item p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-light-secondary);
  margin: 0;
}

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: 5rem 0;
  }

  .privacy-content-section {
    padding: 5rem 0;
  }

  .privacy-section h2 {
    padding-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .privacy-hero-section {
    padding: 6rem 0;
  }

  .privacy-content-section {
    padding: 6rem 0;
  }

  .privacy-contact-section {
    padding: 3rem;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-dark-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  max-width: 600px;
  margin: 0 auto;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text-dark-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
}

.thank-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  line-height: 1.5;
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-weight: 500;
}

.thank-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 1.7;
  color: var(--color-text-dark-muted);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

@media (min-width: 768px) {
  .thank-section {
    min-height: 100vh;
    padding: 4rem 0;
  }
  
  .thank-content {
    gap: 2rem;
  }
  
  .thank-icon {
    margin-bottom: 1rem;
  }
}

@media (min-width: 1024px) {
  .thank-section {
    min-height: 100vh;
    padding: 6rem 0;
  }
  
  .thank-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }
}

.main.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
}

.error-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  padding: clamp(2rem, 8vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 40vw, 300px);
  height: clamp(180px, 40vw, 300px);
}

.error-code {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  letter-spacing: -0.05em;
  line-height: 1;
  text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
  z-index: 2;
}

.error-decoration {
  position: absolute;
  width: clamp(200px, 45vw, 320px);
  height: clamp(200px, 45vw, 320px);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}

.error-decoration i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
  opacity: 0.2;
}

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

.error-title {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  line-height: 1.2;
  margin-top: clamp(1rem, 3vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-description {
  font-size: clamp(0.875rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-muted);
  line-height: 1.8;
  max-width: 650px;
  margin: 0 auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  white-space: nowrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
}

.error-suggestions {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.15);
  max-width: 550px;
  width: 100%;
}

.suggestions-label {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-secondary);
  font-weight: 600;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.suggestions-list i {
  color: var(--color-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(1.5rem, 3vw, 2rem);
  height: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-sm);
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
    min-height: 100vh;
  }

  .error-code {
    font-size: clamp(5rem, 12vw, 7rem);
  }

  .error-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-top: 2rem;
  }

  .error-subtitle {
    font-size: 1.125rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .error-actions {
    margin-top: 2.5rem;
  }

  .error-suggestions {
    margin-top: 3rem;
    padding: 2rem;
  }

  .suggestions-list {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .suggestions-list li {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
    min-height: 100vh;
  }

  .error-code {
    font-size: clamp(6rem, 10vw, 8rem);
  }

  .error-code-wrapper {
    width: 280px;
    height: 280px;
  }

  .error-decoration {
    width: 320px;
    height: 320px;
  }

  .error-title {
    font-size: 2.75rem;
    margin-top: 2.5rem;
  }

  .error-subtitle {
    font-size: 1.25rem;
  }

  .error-description {
    font-size: 1.0625rem;
  }

  .error-suggestions {
    margin-top: 3.5rem;
    padding: 2.5rem;
  }

  .suggestions-list li {
    font-size: 1rem;
  }

  .suggestions-list i {
    font-size: 1.25rem;
  }
}

@media (min-width: 1440px) {
  .error-code {
    font-size: 8rem;
  }

  .error-code-wrapper {
    width: 300px;
    height: 300px;
  }

  .error-decoration {
    width: 340px;
    height: 340px;
  }

  .error-title {
    font-size: 2.75rem;
  }

  .error-subtitle {
    font-size: 1.25rem;
  }

  .error-content {
    gap: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

   .header-creator-forge {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-bg-dark-primary);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .header-creator-forge-container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(1rem, 3vw, 2rem);
  }
  
  
  .header-creator-forge-brand {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 1.5vw, 1rem);
    text-decoration: none;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
  }
  
  .header-creator-forge-brand:hover {
    opacity: 0.8;
  }
  
  .header-creator-forge-logo-img {
    width: clamp(32px, 5vw, 48px);
    height: clamp(32px, 5vw, 48px);
    display: block;
    object-fit: contain;
  }
  
  .header-creator-forge-logo-text {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 700;
    color: var(--color-text-dark-primary);
    white-space: nowrap;
  }
  
  
  .header-creator-forge-desktop-nav {
    display: none;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    flex: 1;
    justify-content: center;
  }
  
  .header-creator-forge-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 500;
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
  }
  
  .header-creator-forge-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
  }
  
  .header-creator-forge-nav-link:hover {
    color: var(--color-text-dark-primary);
  }
  
  .header-creator-forge-nav-link:hover::after {
    width: 100%;
  }
  
  
  .header-creator-forge-cta-button {
    display: none;
    padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
    background: var(--color-primary);
    color: #0f172a;
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }
  
  .header-creator-forge-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  
  .header-creator-forge-mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
    border-radius: var(--radius-sm);
  }
  
  .header-creator-forge-mobile-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
  }
  
  .header-creator-forge-mobile-toggle-line {
    width: 24px;
    height: 2px;
    background: var(--color-text-dark-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .header-creator-forge-mobile-toggle[aria-expanded="true"] .header-creator-forge-mobile-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .header-creator-forge-mobile-toggle[aria-expanded="true"] .header-creator-forge-mobile-toggle-line:nth-child(2) {
    opacity: 0;
  }
  
  .header-creator-forge-mobile-toggle[aria-expanded="true"] .header-creator-forge-mobile-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  
  .header-creator-forge-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--color-bg-dark-secondary);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    transition: right 0.3s ease;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
  }
  
  .header-creator-forge-mobile-menu.active {
    right: 0;
  }
  
  .header-creator-forge-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }
  
  .header-creator-forge-mobile-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark-primary);
  }
  
  .header-creator-forge-mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-dark-primary);
    font-size: 1.25rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
  }
  
  .header-creator-forge-mobile-close:hover {
    background: rgba(59, 130, 246, 0.1);
  }
  
  .header-creator-forge-mobile-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
  }
  
  .header-creator-forge-mobile-link {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-dark-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
  }
  
  .header-creator-forge-mobile-link:hover {
    color: var(--color-text-dark-primary);
    background: rgba(59, 130, 246, 0.08);
    border-left-color: var(--color-primary);
  }
  
  .header-creator-forge-mobile-cta {
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--color-primary);
    color: #0f172a;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .header-creator-forge-mobile-cta:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  
  .header-creator-forge-mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
  }
  
  .header-creator-forge-mobile-menu.active::before {
    opacity: 1;
    pointer-events: auto;
  }
  
  
  @media (min-width: 1024px) {
    .header-creator-forge-desktop-nav {
      display: flex;
    }
  
    .header-creator-forge-cta-button {
      display: inline-block;
    }
  
    .header-creator-forge-mobile-toggle {
      display: none;
    }
  
    .header-creator-forge-logo-text {
      display: inline;
    }
  }
  
  
  @media (min-width: 768px) and (max-width: 1023px) {
    .header-creator-forge-logo-text {
      display: inline;
    }
  }
  
  
  @media (max-width: 767px) {
    .header-creator-forge-logo-text {
      display: none;
    }
  }
  
  
  @media (prefers-reduced-motion: reduce) {
    .header-creator-forge-mobile-menu,
    .header-creator-forge-mobile-toggle-line,
    .header-creator-forge-nav-link::after {
      transition: none;
    }
  }