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

:root {
  /* COLOR STRATEGY: DARK - D7 DEEP BLUE + ELECTRIC */
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  
  /* Text colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  
  /* Accent colors */
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent: #06b6d4;
  
  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 12px 24px rgba(59, 130, 246, 0.2);
  --shadow-xl: 0 20px 40px rgba(12, 25, 41, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═════════════════════════════════════════════════════════════════
   BASE STYLES
   ═════════════════════════════════════════════════════════════════ */

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

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

/* ═════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ═════════════════════════════════════════════════════════════════ */

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

h1 {
  font-size: clamp(1.75rem, 6vw + 0.5rem, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

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

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

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

/* ═════════════════════════════════════════════════════════════════
   BUTTONS & LINKS
   ═════════════════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.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-accent);
  color: #ffffff;
}

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

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

.btn-outline:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: var(--color-primary-hover);
}

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

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

/* ═════════════════════════════════════════════════════════════════
   CARDS
   ═════════════════════════════════════════════════════════════════ */

.card {
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.card-title {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-primary);
}

.card-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* ═════════════════════════════════════════════════════════════════
   GRID LAYOUTS
   ═════════════════════════════════════════════════════════════════ */

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

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

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

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

@media (max-width: 768px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* ═════════════════════════════════════════════════════════════════
   FLEX UTILITIES
   ═════════════════════════════════════════════════════════════════ */

.flex {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

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

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

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

.flex-wrap {
  flex-wrap: wrap;
}

/* ═════════════════════════════════════════════════════════════════
   DECORATIVE ELEMENTS
   ═════════════════════════════════════════════════════════════════ */

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

.badge {
  display: inline-block;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  margin: var(--space-xl) 0;
}

/* ═════════════════════════════════════════════════════════════════
   FORMS
   ═════════════════════════════════════════════════════════════════ */

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

.form-label {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.9375rem;
}

.form-input,
.form-textarea {
  background: rgba(22, 45, 80, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1rem;
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-muted);
}

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

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

.form-submit-btn {
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 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);
}

/* ═════════════════════════════════════════════════════════════════
   LISTS
   ═════════════════════════════════════════════════════════════════ */

.list-unstyled {
  list-style: none;
}

.list-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.list-item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 0.875rem;
}

.list-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.list-item-title {
  color: var(--color-text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.list-item-description {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* ═════════════════════════════════════════════════════════════════
   STATS
   ═════════════════════════════════════════════════════════════════ */

.stat-box {
  text-align: center;
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

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

.stat-label {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════════
   TESTIMONIAL
   ═════════════════════════════════════════════════════════════════ */

.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.testimonial-text {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.testimonial-role {
  color: var(--color-text-muted);
  font-size: 0.8125rem;
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ═════════════════════════════════════════════════════════════════ */

.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }

  .hidden-desktop {
    display: none;
  }
}

/* ═════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═════════════════════════════════════════════════════════════════ */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

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

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

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

/* ═════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═════════════════════════════════════════════════════════════════ */

.text-center {
  text-align: center;
}

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

.text-right {
  text-align: right;
}

.mt-auto {
  margin-top: auto;
}

.mb-auto {
  margin-bottom: auto;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-60 {
  opacity: 0.6;
}

.no-wrap {
  white-space: nowrap;
}

.break-word {
  word-break: break-word;
}

/* ═════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═════════════════════════════════════════════════════════════════ */

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

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ═════════════════════════════════════════════════════════════════
   SECTION SPACING
   ═════════════════════════════════════════════════════════════════ */

.section-padding {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-padding-sm {
  padding: clamp(2rem, 5vw, 3rem) 0;
}

.section-padding-lg {
  padding: clamp(4rem, 10vw, 8rem) 0;
}
/* ===== Header Business Forge - Complete Styling ===== */

.header-business-forge {
  background: var(--color-bg-primary);
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  position: static;
  width: 100%;
  z-index: 100;
}

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

/* ===== Logo & Brand ===== */

.header-business-forge-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity 300ms ease;
}

.header-business-forge-brand:hover {
  opacity: 0.85;
}

.header-business-forge-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  margin-right: 0.25rem;
  flex-shrink: 0;
}

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

/* ===== Desktop Navigation ===== */

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

@media (min-width: 1024px) {
  .header-business-forge-desktop-nav {
    display: flex;
  }
}

.header-business-forge-nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--font-primary);
  transition: color 300ms ease;
  position: relative;
  white-wrap: balance;
}

.header-business-forge-nav-link:hover {
  color: var(--color-accent);
}

.header-business-forge-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 300ms ease;
}

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

/* ===== CTA Button (Desktop) ===== */

.header-business-forge-cta-button {
  background: var(--color-primary);
  color: #0c1929;
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 300ms ease;
  display: inline-block;
  margin-left: 1rem;
  white-wrap: balance;
}

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

.header-business-forge-cta-button:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-business-forge-cta-button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ===== Mobile Toggle Button ===== */

.header-business-forge-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 300ms ease;
  padding: 0;
  margin-left: 1rem;
  flex-shrink: 0;
}

.header-business-forge-mobile-toggle:hover {
  color: var(--color-accent);
}

.header-business-forge-mobile-toggle:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ===== Mobile Menu ===== */

.header-business-forge-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
  overflow-y: auto;
  padding-top: 70px;
}

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

@media (min-width: 1024px) {
  .header-business-forge-mobile-menu {
    display: none !important;
  }
}

.header-business-forge-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(96, 165, 250, 0.1);
  position: sticky;
  top: 0;
  background: var(--color-bg-secondary);
  z-index: 100;
}

.header-business-forge-mobile-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-heading);
}

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

.header-business-forge-mobile-close:hover {
  color: var(--color-accent);
}

.header-business-forge-mobile-close:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.header-business-forge-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.header-business-forge-mobile-link {
  display: block;
  padding: 1rem 1.5rem;
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-primary);
  border-radius: var(--radius-md);
  transition: all 300ms ease;
  border-left: 3px solid transparent;
}

.header-business-forge-mobile-link:hover {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-accent);
  border-left-color: var(--color-accent);
  padding-left: 1.75rem;
}

.header-business-forge-mobile-link:active {
  background: rgba(59, 130, 246, 0.15);
}

.header-business-forge-mobile-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ===== Mobile CTA Button ===== */

.header-business-forge-mobile-cta {
  background: var(--color-primary);
  color: #0c1929;
  padding: 1rem 1.5rem;
  margin: 1rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  display: block;
  text-align: center;
  transition: all 300ms ease;
}

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

.header-business-forge-mobile-cta:active {
  transform: translateY(0);
  transition-duration: 150ms;
}

.header-business-forge-mobile-cta:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ===== Responsive Adjustments ===== */

@media (max-width: 1023px) {
  .header-business-forge-container {
    height: 60px;
  }

  .header-business-forge-logo-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .header-business-forge-container {
    height: 56px;
    padding: 0 1rem;
  }

  .header-business-forge-logo-img {
    width: 36px;
    height: 36px;
  }

  .header-business-forge-logo-text {
    font-size: 1rem;
  }

  .header-business-forge-mobile-toggle {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }
}

/* ===== Accessibility ===== */

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

  .header-business-forge-nav-link::after {
    animation: none !important;
  }
}

/* ===== Focus Visible Fallback ===== */

.header-business-forge-nav-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.header-business-forge-mobile-link:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

    .entrepreneur-hub {
  width: 100%;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1 {
  font-size: clamp(1.75rem, 6vw + 0.5rem, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

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

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

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

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

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

.btn-secondary {
  background: #06b6d4;
  color: #ffffff;
}

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

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

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

/* HERO SECTION */
.hero-section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0c1929;
}

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

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

.hero-floating-accent-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

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

.hero-corner-orb {
  position: absolute;
  top: 10%;
  left: 15%;
  width: 120px;
  height: 120px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element {
  position: absolute;
  bottom: 30%;
  right: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(60, 165, 250, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-title-index {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-subtitle-index {
  color: #bfdbfe;
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

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

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

.hero-stat-number-index {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #3b82f6;
  font-family: 'Poppins', sans-serif;
}

.hero-stat-label-index {
  color: #93c5fd;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons-index .btn {
    width: 100%;
  }
}

/* FOUNDATIONS SECTION */
.foundations-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.foundations-shape-accent-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.foundations-shape-accent-2 {
  position: absolute;
  bottom: 5%;
  right: -50px;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 70% 30% 40% 60% / 40% 50% 50% 60%;
  z-index: 1;
  pointer-events: none;
}

.foundations-glow-element {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

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

.foundations-floating-panel {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 200px;
  height: 120px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.foundations-corner-accent {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 80px;
  height: 80px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

.foundations-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.foundations-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.foundations-title-index {
  color: #0f172a;
  margin-bottom: 1rem;
}

.foundations-subtitle-index {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.foundations-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundations-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.foundations-step-index:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.foundations-step-number-index {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
  min-width: 60px;
  line-height: 1;
}

.foundations-step-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foundations-step-title-index {
  color: #1e293b;
  font-weight: 600;
}

.foundations-step-text-index {
  color: #64748b;
  line-height: 1.6;
}

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

.features-mesh-gradient {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-source-1 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.features-glow-source-2 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-shape {
  position: absolute;
  top: 5%;
  left: 30%;
  width: 180px;
  height: 180px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
  z-index: 2;
  pointer-events: none;
}

.features-floating-card {
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 200px;
  height: 140px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(6deg);
  z-index: 1;
  pointer-events: none;
}

.features-line-divider {
  position: absolute;
  bottom: 25%;
  right: 25%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.features-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.features-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  color: #ffffff;
  margin-bottom: 1rem;
}

.features-subtitle-index {
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.features-card-index:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-5px);
}

.features-card-icon-index {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.15);
  border-radius: 12px;
  color: #60a5fa;
  font-size: 1.5rem;
}

.features-card-title-index {
  color: #ffffff;
  font-weight: 600;
}

.features-card-text-index {
  color: #bfdbfe;
  line-height: 1.6;
}

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

/* FEATURED SECTION */
.featured-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #f8fafc;
}

.featured-organic-shape {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-glow-1 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.featured-glow-2 {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-floating-element {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 150px;
  height: 100px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-5deg);
  z-index: 1;
  pointer-events: none;
}

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

.featured-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.featured-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.featured-title-index {
  color: #0f172a;
  margin-bottom: 1rem;
}

.featured-subtitle-index {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.featured-cards-wrapper-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 3rem;
  justify-content: center;
}

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

.featured-card-index:hover {
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
  transform: translateY(-5px);
}

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

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

.featured-card-title-index {
  color: #1e293b;
  font-weight: 600;
  line-height: 1.3;
}

.featured-card-description-index {
  color: #64748b;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.featured-card-link-index {
  color: #3b82f6;
  font-weight: 500;
  margin-top: auto;
  transition: all 0.3s ease;
}

.featured-card-link-index:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.featured-cta-index {
  text-align: center;
}

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

/* BENEFITS SECTION */
.benefits-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0c1929;
}

.benefits-glow-accent {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-1 {
  position: absolute;
  bottom: 10%;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-2 {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.benefits-floating-panel {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 200px;
  height: 140px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.benefits-line-element {
  position: absolute;
  bottom: 40%;
  left: 30%;
  width: 180px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

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

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

.benefits-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.benefits-title-index {
  color: #ffffff;
  margin-bottom: 1rem;
}

.benefits-intro-index {
  color: #bfdbfe;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.benefits-list-item-index {
  display: flex;
  gap: 1.5rem;
}

.benefits-item-icon-index {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.15);
  border-radius: 50%;
  color: #60a5fa;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1.125rem;
}

.benefits-item-content-index {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.benefits-item-title-index {
  color: #ffffff;
  font-weight: 600;
}

.benefits-item-text-index {
  color: #bfdbfe;
  line-height: 1.6;
  font-size: 0.9375rem;
}

.benefits-visual-block {
  flex: 1 1 350px;
  min-width: 300px;
}

.benefits-image-index {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

/* QUOTE SECTION */
.quote-section {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: #f8fafc;
}

.quote-glow-1 {
  position: absolute;
  top: -50px;
  left: 10%;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.quote-glow-2 {
  position: absolute;
  bottom: -50px;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.quote-accent-shape {
  position: absolute;
  left: 5%;
  top: 50%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50% 60% 40% 50% / 60% 50% 50% 40%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.quote-floating-accent {
  position: absolute;
  right: 8%;
  top: 30%;
  width: 120px;
  height: 80px;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(-5deg);
  z-index: 1;
  pointer-events: none;
}

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

.quote-block-index {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  max-width: 800px;
  margin: 0 auto;
}

.quote-text-index {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.quote-attribution-index {
  color: #64748b;
  font-size: 0.9375rem;
  font-style: normal;
}

/* CONTACT SECTION */
.contact-section {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0c1929;
}

.contact-glow-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-accent {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.contact-line-element {
  position: absolute;
  bottom: 30%;
  right: 30%;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.12), transparent);
  z-index: 2;
  pointer-events: none;
}

.contact-floating-panel {
  position: absolute;
  top: 15%;
  right: 15%;
  width: 200px;
  height: 140px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  transform: rotate(6deg);
  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;
}

.contact-form-title-index {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-form-subtitle-index {
  color: #bfdbfe;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.contact-form-index {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-form-label-index {
  color: #e2e8f0;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-form-input-index,
.contact-form-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(22, 45, 80, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form-input-index::placeholder,
.contact-form-textarea-index::placeholder {
  color: #93c5fd;
}

.contact-form-input-index:focus,
.contact-form-textarea-index:focus {
  outline: none;
  border-color: #3b82f6;
  background: rgba(22, 45, 80, 0.8);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

.contact-form-submit-index {
  width: 100%;
  padding: 0.875rem 2rem;
  background: #3b82f6;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-submit-index:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.contact-privacy-text-index {
  color: #93c5fd;
  font-size: 0.8125rem;
  margin-top: 1rem;
  text-align: center;
}

.contact-privacy-link-index {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.contact-privacy-link-index:hover {
  color: #93c5fd;
  text-decoration: underline;
}

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

.contact-info-title-index {
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-faq-item-index {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.contact-faq-item-index:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-faq-question-index {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-faq-answer-index {
  color: #bfdbfe;
  font-size: 0.9375rem;
  line-height: 1.6;
}

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

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 1.5rem;
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  font-size: 0.875rem;
  margin: 0;
  flex: 0 1 auto;
  max-width: 500px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex: 0 1 auto;
}

.cookie-btn-accept {
  padding: 0.625rem 1.25rem;
  background: #3b82f6;
  color: #000000;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.cookie-btn-accept:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .hero-section,
  .foundations-section,
  .features-section,
  .featured-section,
  .benefits-section,
  .quote-section,
  .contact-section {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
  }
  
  .cookie-banner {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-text {
    order: 1;
  }
  
  .cookie-banner-buttons {
    order: 2;
    width: 100%;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .hero-stat-item-index {
    flex: 1 1 auto;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-btn-accept,
  .cookie-btn-decline {
    width: 100%;
  }
}

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

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

.footer-content {
  display: block;
}

.footer-about {
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
  max-width: 500px;
}

.footer-about-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

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

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

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

.footer-column-title {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 1.25rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 1rem;
}

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

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

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

.footer-contact-item {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.6;
  margin: 0;
  color: var(--color-text-secondary);
}

.footer-contact-label {
  display: block;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.footer-contact-value {
  display: block;
  color: var(--color-text-secondary);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(191, 219, 254, 0.2),
    transparent
  );
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

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

  .footer-sections {
    gap: clamp(1.5rem, 4vw, 2.5rem);
  }

  .footer-column {
    flex: 1 1 100%;
    min-width: auto;
  }

  .footer-about {
    margin-bottom: clamp(2rem, 5vw, 2.5rem);
  }

  .footer-divider {
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
  }
}

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

  .footer-link:hover {
    transform: none;
  }
}
    

/* Category Page Styles */
/* ═════════════════════════════════════════════════════════════════
   CATEGORY PAGE: BUSINESS ENTREPRENEURSHIP
   ═════════════════════════════════════════════════════════════════ */

.category-page-business-entrepreneurship {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

/* ═════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.hero-decoration-glow-1 {
  position: absolute;
  top: 5%;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-mesh {
  position: absolute;
  top: 20%;
  left: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-accent-shape {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 250px;
  height: 250px;
  background: rgba(96, 165, 250, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.hero-decoration-float-element {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 180px;
  height: 140px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.hero-content-business-entrepreneurship {
  position: relative;
  z-index: 10;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-tag-business-entrepreneurship {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-secondary);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

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

.hero-description-business-entrepreneurship {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 650px;
}

.hero-stats-business-entrepreneurship {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 1rem 0;
}

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

.stat-number-business-entrepreneurship {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  font-family: var(--font-heading);
}

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

.hero-buttons-business-entrepreneurship {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

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

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

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

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

/* ═════════════════════════════════════════════════════════════════
   POSTS SECTION
   ═════════════════════════════════════════════════════════════════ */

.posts-section-business-entrepreneurship {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.posts-decoration-accent-1 {
  position: absolute;
  top: 10%;
  left: -80px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-decoration-glow-2 {
  position: absolute;
  bottom: 15%;
  right: -100px;
  width: 320px;
  height: 320px;
  background: rgba(59, 130, 246, 0.08);
  filter: blur(85px);
  z-index: 1;
  pointer-events: none;
}

.posts-header-business-entrepreneurship {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.posts-title-business-entrepreneurship {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.posts-subtitle-business-entrepreneurship {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.posts-grid-business-entrepreneurship {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  position: relative;
  z-index: 10;
}

.card-business-entrepreneurship {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.card-business-entrepreneurship:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
  transform: translateY(-6px);
}

.card-business-entrepreneurship img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-title-business-entrepreneurship {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.card-description-business-entrepreneurship {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

.card-meta-business-entrepreneurship {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.meta-badge-business-entrepreneurship {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.875rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-secondary);
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.card-link-business-entrepreneurship {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-secondary);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.card-link-business-entrepreneurship:hover {
  background: var(--color-primary);
  color: #0f172a;
}

/* ═════════════════════════════════════════════════════════════════
   LEARNING PATH SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.path-decoration-shape-1 {
  position: absolute;
  top: 15%;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.07);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.path-decoration-glow-3 {
  position: absolute;
  bottom: 20%;
  left: -100px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.09);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.path-header-business-entrepreneurship {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.path-title-business-entrepreneurship {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.path-subtitle-business-entrepreneurship {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.path-steps-business-entrepreneurship {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
}

.path-step-business-entrepreneurship {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  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;
}

.path-step-business-entrepreneurship:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
}

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

.path-step-content-business-entrepreneurship {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

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

.path-step-text-business-entrepreneurship {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .path-step-business-entrepreneurship {
    flex-direction: column;
    gap: 1rem;
  }

  .path-step-number-business-entrepreneurship {
    font-size: 2rem;
    min-width: auto;
  }
}

/* ═════════════════════════════════════════════════════════════════
   INSIGHTS SECTION
   ═════════════════════════════════════════════════════════════════ */

.insights-section-business-entrepreneurship {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.insights-decoration-accent-2 {
  position: absolute;
  top: 20%;
  left: -80px;
  width: 260px;
  height: 260px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.insights-content-business-entrepreneurship {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.featured-quote-business-entrepreneurship {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-text-business-entrepreneurship {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  line-height: 1.8;
  font-style: italic;
  font-weight: 500;
}

.quote-author-business-entrepreneurship {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  font-style: normal;
  font-weight: 600;
}

.insights-text-business-entrepreneurship {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insights-heading-business-entrepreneurship {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #ffffff;
}

.insights-paragraph-business-entrepreneurship {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 750px;
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .hero-stats-business-entrepreneurship {
    gap: clamp(3rem, 6vw, 5rem);
  }

  .posts-grid-business-entrepreneurship {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-business-entrepreneurship {
    flex: 1 1 300px;
    max-width: 420px;
  }
}

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

  .posts-section-business-entrepreneurship {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .learning-path-section-business-entrepreneurship {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .insights-section-business-entrepreneurship {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .card-business-entrepreneurship {
    flex: 1 1 320px;
    max-width: 450px;
  }
}

/* ═════════════════════════════════════════════════════════════════
   ANIMATIONS
   ═════════════════════════════════════════════════════════════════ */

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

/* ═════════════════════════════════════════════════════════════════
   UTILITIES
   ═════════════════════════════════════════════════════════════════ */

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

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

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

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Post Page 1 Styles */
/* ═════════════════════════════════════════════════════════════════
   MAIN COMPONENT STYLES
   ═════════════════════════════════════════════════════════════════ */

.main-business-startup-basics {
  width: 100%;
  background: #0c1929;
  color: #ffffff;
}

/* ═════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.hero-content-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-business-startup-basics {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.hero-title-business-startup-basics {
  font-size: clamp(1.75rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-business-startup-basics {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  font-weight: 500;
}

.article-meta-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
}

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

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

.hero-stats-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 1.5rem;
}

.stat-box-business-startup-basics {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-business-startup-basics {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-business-startup-basics {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-wrapper-business-startup-basics {
  flex: 1 1 350px;
  min-width: 300px;
}

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

.breadcrumbs-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-business-startup-basics a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-business-startup-basics a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-business-startup-basics span {
  color: #475569;
  margin: 0 0.25rem;
}

/* ═════════════════════════════════════════════════════════════════
   INTRO SECTION
   ═════════════════════════════════════════════════════════════════ */

.intro-section-business-startup-basics {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: flex-start;
}

.intro-text-business-startup-basics {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-title-business-startup-basics {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.intro-description-business-startup-basics,
.intro-secondary-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.intro-highlight-business-startup-basics {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
}

.highlight-box-business-startup-basics {
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 8px;
}

.highlight-text-business-startup-basics {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  font-weight: 500;
}

@media (max-width: 768px) {
  .intro-wrapper-business-startup-basics {
    flex-direction: column;
  }

  .intro-highlight-business-startup-basics {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   PROCESS SECTION (NUMBERED STEPS)
   ═════════════════════════════════════════════════════════════════ */

.process-section-business-startup-basics {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-business-startup-basics {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

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

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

.section-subtitle-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.process-step-business-startup-basics {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  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: 12px;
  backdrop-filter: blur(10px);
}

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

.process-step-content-business-startup-basics {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.process-step-title-business-startup-basics {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.process-step-text-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-business-startup-basics {
    flex-direction: column;
  }

  .process-step-number-business-startup-basics {
    min-width: auto;
  }
}

/* ═════════════════════════════════════════════════════════════════
   CONTENT SECTIONS
   ═════════════════════════════════════════════════════════════════ */

.content-section-one-business-startup-basics,
.content-section-two-business-startup-basics,
.content-section-three-business-startup-basics,
.content-section-four-business-startup-basics {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-business-startup-basics,
.content-section-three-business-startup-basics {
  background: #162d50;
}

.content-section-two-business-startup-basics,
.content-section-four-business-startup-basics {
  background: #1e3a5f;
}

.content-wrapper-one-business-startup-basics,
.content-wrapper-two-business-startup-basics,
.content-wrapper-three-business-startup-basics,
.content-wrapper-four-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.content-text-one-business-startup-basics,
.content-text-two-business-startup-basics,
.content-text-three-business-startup-basics,
.content-text-four-business-startup-basics {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.content-image-one-business-startup-basics,
.content-image-two-business-startup-basics,
.content-image-three-business-startup-basics,
.content-image-four-business-startup-basics {
  flex: 1 1 350px;
  min-width: 300px;
}

.content-heading-one-business-startup-basics,
.content-heading-two-business-startup-basics,
.content-heading-three-business-startup-basics,
.content-heading-four-business-startup-basics {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.content-paragraph-one-business-startup-basics,
.content-paragraph-two-business-startup-basics,
.content-paragraph-three-business-startup-basics,
.content-paragraph-four-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.content-img-one-business-startup-basics,
.content-img-two-business-startup-basics,
.content-img-three-business-startup-basics,
.content-img-four-business-startup-basics {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .content-wrapper-one-business-startup-basics,
  .content-wrapper-two-business-startup-basics,
  .content-wrapper-three-business-startup-basics,
  .content-wrapper-four-business-startup-basics {
    flex-direction: column;
  }

  .content-image-one-business-startup-basics,
  .content-image-two-business-startup-basics,
  .content-image-three-business-startup-basics,
  .content-image-four-business-startup-basics {
    flex: 1 1 100%;
    min-width: auto;
  }
}

/* ═════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═════════════════════════════════════════════════════════════════ */

.features-section-business-startup-basics {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.features-subtitle-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 600px;
  line-height: 1.6;
}

.features-cards-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.features-card-business-startup-basics {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.features-card-icon-business-startup-basics {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.75rem;
}

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

.features-card-text-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

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

/* ═════════════════════════════════════════════════════════════════
   CONCLUSION SECTION
   ═════════════════════════════════════════════════════════════════ */

.conclusion-section-business-startup-basics {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-business-startup-basics {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.cta-box-business-startup-basics {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.cta-title-business-startup-basics {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-text-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.6;
}

.btn-primary-business-startup-basics {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #3b82f6;
  border: none;
  border-radius: 12px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary-business-startup-basics:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* ═════════════════════════════════════════════════════════════════
   RELATED POSTS SECTION
   ═════════════════════════════════════════════════════════════════ */

.related-section-business-startup-basics {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.related-subtitle-business-startup-basics {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  max-width: 600px;
  line-height: 1.6;
}

.related-cards-business-startup-basics {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.related-card-link-business-startup-basics {
  flex: 1 1 300px;
  max-width: 380px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-business-startup-basics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

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

.related-card-image-business-startup-basics {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

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

.related-card-text-business-startup-basics {
  font-size: 0.9375rem;
  color: #93c5fd;
  line-height: 1.5;
}

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

/* ═════════════════════════════════════════════════════════════════
   DISCLAIMER SECTION
   ═════════════════════════════════════════════════════════════════ */

.disclaimer-section-business-startup-basics {
  background: #1e3a5f;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-business-startup-basics {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-business-startup-basics {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.disclaimer-text-business-startup-basics {
  font-size: clamp(0.8125rem, 1vw + 0.5rem, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.7;
  opacity: 0.95;
}

/* ═════════════════════════════════════════════════════════════════
   CONTAINER & RESPONSIVE
   ═════════════════════════════════════════════════════════════════ */

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-content-business-startup-basics {
    flex-direction: column;
  }

  .hero-image-wrapper-business-startup-basics {
    flex: 1 1 100%;
    min-width: auto;
  }

  .hero-stats-business-startup-basics {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .stat-box-business-startup-basics {
    flex: 1 1 auto;
  }
}

/* ═════════════════════════════════════════════════════════════════
   ACCESSIBILITY & UTILITIES
   ═════════════════════════════════════════════════════════════════ */

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Post Page 2 Styles */
/* ═════════════════════════════════════════════════════════════════
   MAIN COMPONENT
   ═════════════════════════════════════════════════════════════════ */

.main-financial-management-essentials {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ═════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════════════════ */

.hero-section-financial-management-essentials {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-financial-management-essentials {
  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-financial-management-essentials {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-link-financial-management-essentials:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.breadcrumb-separator-financial-management-essentials {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumb-current-financial-management-essentials {
  color: #bfdbfe;
}

.hero-content-financial-management-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

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

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

.hero-meta-financial-management-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.meta-badge-financial-management-essentials {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
}

.meta-badge-financial-management-essentials i {
  color: #60a5fa;
}

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

.stat-box-financial-management-essentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-financial-management-essentials {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  font-family: 'Poppins', sans-serif;
}

.stat-label-financial-management-essentials {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-block-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

.hero-image-financial-management-essentials {
  width: 100%;
  max-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-financial-management-essentials {
    flex-direction: column;
  }

  .hero-text-block-financial-management-essentials,
  .hero-image-block-financial-management-essentials {
    flex: 1 1 100%;
  }

  .hero-stats-financial-management-essentials {
    gap: 1.5rem;
  }
}

/* ═════════════════════════════════════════════════════════════════
   INTRODUCTION SECTION
   ═════════════════════════════════════════════════════════════════ */

.introduction-section-financial-management-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.introduction-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

.intro-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.intro-description-financial-management-essentials {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-text-financial-management-essentials p:last-child {
  margin-bottom: 0;
}

.intro-image-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

.intro-image-img-financial-management-essentials {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-financial-management-essentials {
    flex-direction: column;
  }

  .intro-text-financial-management-essentials,
  .intro-image-financial-management-essentials {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   FUNDAMENTALS SECTION
   ═════════════════════════════════════════════════════════════════ */

.fundamentals-section-financial-management-essentials {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.fundamentals-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.fundamentals-header-financial-management-essentials {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-financial-management-essentials {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.fundamentals-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.fundamentals-subtitle-financial-management-essentials {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-steps-financial-management-essentials {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.fundamentals-step-financial-management-essentials {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  align-items: flex-start;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.fundamentals-step-financial-management-essentials:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.fundamentals-step-number-financial-management-essentials {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  font-family: 'Poppins', sans-serif;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-financial-management-essentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fundamentals-step-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
}

.fundamentals-step-text-financial-management-essentials {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .fundamentals-step-financial-management-essentials {
    gap: 1rem;
    flex-direction: column;
    align-items: stretch;
  }

  .fundamentals-step-number-financial-management-essentials {
    font-size: 2rem;
  }
}

/* ═════════════════════════════════════════════════════════════════
   CONCEPTS SECTION
   ═════════════════════════════════════════════════════════════════ */

.concepts-section-financial-management-essentials {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.concepts-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.concepts-wrapper-financial-management-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.concepts-text-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

.concepts-title-financial-management-essentials {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.concepts-description-financial-management-essentials {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.concepts-list-financial-management-essentials {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.list-item-financial-management-essentials {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.list-item-icon-financial-management-essentials {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  color: #60a5fa;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.list-item-content-financial-management-essentials {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-item-title-financial-management-essentials {
  color: #ffffff;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
}

.list-item-description-financial-management-essentials {
  color: #93c5fd;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.concepts-image-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

.concepts-image-img-financial-management-essentials {
  width: 100%;
  max-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) {
  .concepts-wrapper-financial-management-essentials {
    flex-direction: column;
  }

  .concepts-text-financial-management-essentials,
  .concepts-image-financial-management-essentials {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   IMPLEMENTATION SECTION
   ═════════════════════════════════════════════════════════════════ */

.implementation-section-financial-management-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.implementation-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.implementation-header-financial-management-essentials {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.implementation-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

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

.implementation-card-financial-management-essentials:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.implementation-card-icon-financial-management-essentials {
  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: #3b82f6;
  font-size: 1.75rem;
}

.implementation-card-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
}

.implementation-card-text-financial-management-essentials {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

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

/* ═════════════════════════════════════════════════════════════════
   ACTIONABLE SECTION
   ═════════════════════════════════════════════════════════════════ */

.actionable-section-financial-management-essentials {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.actionable-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.actionable-wrapper-financial-management-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.actionable-image-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

.actionable-image-img-financial-management-essentials {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.actionable-text-financial-management-essentials {
  flex: 1 1 300px;
  min-width: 0;
}

.actionable-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 700;
}

.actionable-description-financial-management-essentials {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.actionable-list-financial-management-essentials {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.actionable-list-item-financial-management-essentials {
  color: #374151;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.actionable-list-item-financial-management-essentials::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.25rem;
}

.actionable-quote-financial-management-essentials {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.actionable-quote-text-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1rem 0;
}

.actionable-quote-author-financial-management-essentials {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw, 0.9375rem);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .actionable-wrapper-financial-management-essentials {
    flex-direction: column;
  }

  .actionable-image-financial-management-essentials,
  .actionable-text-financial-management-essentials {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   CONCLUSION SECTION
   ═════════════════════════════════════════════════════════════════ */

.conclusion-section-financial-management-essentials {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.conclusion-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.conclusion-content-financial-management-essentials {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-financial-management-essentials {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
}

.conclusion-text-financial-management-essentials {
  color: #bfdbfe;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

.conclusion-cta-financial-management-essentials {
  margin-top: clamp(2rem, 3vw, 2.5rem);
}

.btn-primary-financial-management-essentials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 1.5vw, 1.125rem) clamp(2rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #0f172a;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.btn-primary-financial-management-essentials:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* ═════════════════════════════════════════════════════════════════
   DISCLAIMER SECTION
   ═════════════════════════════════════════════════════════════════ */

.disclaimer-section-financial-management-essentials {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  width: 100%;
  overflow: hidden;
}

.disclaimer-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-content-financial-management-essentials {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.disclaimer-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.disclaimer-text-financial-management-essentials {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
}

/* ═════════════════════════════════════════════════════════════════
   RELATED SECTION
   ═════════════════════════════════════════════════════════════════ */

.related-section-financial-management-essentials {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
  overflow: hidden;
}

.related-section-financial-management-essentials .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.related-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

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

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

.related-card-financial-management-essentials {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-financial-management-essentials:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.related-card-image-financial-management-essentials {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.related-card-content-financial-management-essentials {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-financial-management-essentials {
  color: #0f172a;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 1.3;
}

.related-card-description-financial-management-essentials {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 0.9375rem);
  line-height: 1.6;
}

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

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .breadcrumbs-financial-management-essentials {
    font-size: 0.75rem;
  }
}

/* Post Page 3 Styles */
/* ═══════════════════════════════════════════════════════════════════
   MAIN COMPONENT STYLES - LEADERSHIP AND TEAM MANAGEMENT PAGE
   ═══════════════════════════════════════════════════════════════════ */

.main-leadership-team-management {
  width: 100%;
  background: #0c1929;
}

/* ═══════════════════════════════════════════════════════════════════
   BREADCRUMBS
   ═══════════════════════════════════════════════════════════════════ */

.breadcrumbs-leadership-team-management {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-leadership-team-management a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-leadership-team-management a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumbs-leadership-team-management span {
  color: #475569;
  margin: 0 0.25rem;
}

.breadcrumbs-leadership-team-management > span:last-child {
  color: #bfdbfe;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════════ */

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

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

.hero-text-block-leadership-team-management {
  flex: 1 1 45%;
  min-width: 0;
}

.hero-title-leadership-team-management {
  font-size: clamp(1.75rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

.article-meta-leadership-team-management {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-leadership-team-management {
  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-leadership-team-management i {
  font-size: 0.75rem;
}

.hero-stats-leadership-team-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

.stat-item-leadership-team-management {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-leadership-team-management {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-leadership-team-management {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-block-leadership-team-management {
  flex: 1 1 55%;
  min-width: 0;
}

.hero-image-leadership-team-management {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .hero-content-leadership-team-management {
    flex-direction: column;
  }

  .hero-text-block-leadership-team-management {
    flex: 1 1 100%;
  }

  .hero-image-block-leadership-team-management {
    flex: 1 1 100%;
  }

  .hero-stats-leadership-team-management {
    gap: 1.5rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   INTRO SECTION
   ═══════════════════════════════════════════════════════════════════ */

.intro-section-leadership-team-management {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
}

.intro-title-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.intro-description-leadership-team-management {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.intro-image-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
}

.intro-image-img-leadership-team-management {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .intro-content-leadership-team-management {
    flex-direction: column;
  }

  .intro-text-leadership-team-management {
    flex: 1 1 100%;
  }

  .intro-image-leadership-team-management {
    flex: 1 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════════════ */

.process-section-leadership-team-management {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-leadership-team-management {
  text-align: center;
  margin-bottom: 3rem;
}

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

.process-title-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.process-subtitle-leadership-team-management {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps-leadership-team-management {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-leadership-team-management {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  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);
  align-items: flex-start;
  transition: all 0.3s ease;
}

.process-step-leadership-team-management:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
}

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

.process-step-content-leadership-team-management {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.process-step-title-leadership-team-management {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-leadership-team-management {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-step-leadership-team-management {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-leadership-team-management {
    min-width: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTENT SECTION ONE
   ═══════════════════════════════════════════════════════════════════ */

.content-section-one-leadership-team-management {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
}

.content-title-one-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-one-leadership-team-management {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.highlight-box-leadership-team-management {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(59, 130, 246, 0.15);
  border-left: 4px solid #3b82f6;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.highlight-text-leadership-team-management {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  line-height: 1.6;
}

.content-image-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
}

.content-image-img-leadership-team-management {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .content-wrapper-leadership-team-management {
    flex-direction: column;
  }

  .content-text-leadership-team-management {
    flex: 1 1 100%;
  }

  .content-image-leadership-team-management {
    flex: 1 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CONTENT SECTION TWO
   ═══════════════════════════════════════════════════════════════════ */

.content-section-two-leadership-team-management {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-image-two-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
  order: -1;
}

.content-image-two-img-leadership-team-management {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.content-text-two-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
}

.content-title-two-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-text-two-leadership-team-management {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.feature-list-leadership-team-management {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-list-item-leadership-team-management {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.list-icon-leadership-team-management {
  color: #60a5fa;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.list-text-leadership-team-management {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .content-wrapper-two-leadership-team-management {
    flex-direction: column;
  }

  .content-image-two-leadership-team-management {
    order: 0;
    flex: 1 1 100%;
  }

  .content-text-two-leadership-team-management {
    flex: 1 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════════ */

.features-section-leadership-team-management {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-title-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.features-subtitle-leadership-team-management {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-leadership-team-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  margin-top: 2rem;
}

.features-card-leadership-team-management {
  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;
}

.features-card-leadership-team-management:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.features-card-icon-leadership-team-management {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  color: #60a5fa;
  font-size: 1.5rem;
}

.features-card-title-leadership-team-management {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.features-card-text-leadership-team-management {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════════════════════════════════
   QUOTE SECTION
   ═══════════════════════════════════════════════════════════════════ */

.quote-section-leadership-team-management {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-leadership-team-management {
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 4vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 0;
}

.quote-text-leadership-team-management {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-cite-leadership-team-management {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #93c5fd;
  font-style: normal;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════
   CONTENT SECTION THREE
   ═══════════════════════════════════════════════════════════════════ */

.content-section-three-leadership-team-management {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-three-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
}

.content-title-three-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.content-image-three-leadership-team-management {
  flex: 1 1 50%;
  min-width: 0;
}

.content-image-three-img-leadership-team-management {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .content-wrapper-three-leadership-team-management {
    flex-direction: column;
  }

  .content-text-three-leadership-team-management {
    flex: 1 1 100%;
  }

  .content-image-three-leadership-team-management {
    flex: 1 1 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   CONCLUSION SECTION
   ═══════════════════════════════════════════════════════════════════ */

.conclusion-section-leadership-team-management {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-leadership-team-management {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-leadership-team-management {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.conclusion-key-points-leadership-team-management {
  margin-top: 2rem;
  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);
}

.conclusion-key-title-leadership-team-management {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.key-points-list-leadership-team-management {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.key-point-item-leadership-team-management {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
}

.key-point-item-leadership-team-management::before {
  content: "✓";
  color: #60a5fa;
  font-weight: bold;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════════ */

.cta-section-leadership-team-management {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-box-leadership-team-management {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  padding: clamp(2.5rem, 6vw, 4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.cta-title-leadership-team-management {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.cta-text-leadership-team-management {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #ffffff;
  opacity: 0.95;
  max-width: 600px;
  line-height: 1.6;
}

.cta-button-leadership-team-management {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.75rem, 4vw, 2.75rem);
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.cta-button-leadership-team-management:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  background: #f1f5f9;
}

/* ═══════════════════════════════════════════════════════════════════
   RELATED SECTION
   ═══════════════════════════════════════════════════════════════════ */

.related-section-leadership-team-management {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-leadership-team-management {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-leadership-team-management {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.related-subtitle-leadership-team-management {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.related-cards-leadership-team-management {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-leadership-team-management {
  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 0.3s ease;
}

.related-card-leadership-team-management:hover {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.related-card-image-leadership-team-management {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.15);
}

.related-card-image-leadership-team-management img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-leadership-team-management {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-leadership-team-management {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-leadership-team-management {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.related-card-link-leadership-team-management {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.related-card-link-leadership-team-management:hover {
  color: #93c5fd;
  gap: 0.75rem;
}

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

/* ═══════════════════════════════════════════════════════════════════
   DISCLAIMER SECTION
   ═══════════════════════════════════════════════════════════════════ */

.disclaimer-section-leadership-team-management {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-leadership-team-management {
  padding: clamp(1.75rem, 4vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-leadership-team-management {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════ */

@media (min-width: 768px) {
  .hero-section-leadership-team-management {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .intro-section-leadership-team-management,
  .process-section-leadership-team-management,
  .content-section-one-leadership-team-management,
  .content-section-two-leadership-team-management,
  .features-section-leadership-team-management,
  .quote-section-leadership-team-management,
  .content-section-three-leadership-team-management,
  .conclusion-section-leadership-team-management,
  .cta-section-leadership-team-management,
  .related-section-leadership-team-management,
  .disclaimer-section-leadership-team-management {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 320px) {
  .hero-stats-leadership-team-management {
    flex-direction: column;
    gap: 1rem;
  }

  .breadcrumbs-leadership-team-management {
    font-size: 0.7rem;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .hidden-mobile-leadership-team-management {
    display: none;
  }
}

.text-center-leadership-team-management {
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════ */

a:focus-visible,
button:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

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

/* Post Page 4 Styles */
/* Main component wrapper */
.main-marketing-strategy-fundamentals {
  width: 100%;
  overflow-x: hidden;
}

/* ═════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════════════════ */

.hero-section-marketing-strategy-fundamentals {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.hero-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.breadcrumbs-marketing-strategy-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #bfdbfe;
}

.breadcrumbs-marketing-strategy-fundamentals a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-marketing-strategy-fundamentals a:hover {
  color: #38bdf8;
}

.breadcrumbs-marketing-strategy-fundamentals span {
  color: #93c5fd;
}

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

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

.hero-title-marketing-strategy-fundamentals {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle-marketing-strategy-fundamentals {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-meta-marketing-strategy-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-marketing-strategy-fundamentals {
  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-marketing-strategy-fundamentals i {
  color: #3b82f6;
}

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

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

.stat-number-marketing-strategy-fundamentals {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-marketing-strategy-fundamentals {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

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

.hero-image-marketing-strategy-fundamentals {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

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

  .hero-text-wrapper-marketing-strategy-fundamentals,
  .hero-image-wrapper-marketing-strategy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-marketing-strategy-fundamentals {
    gap: 1.5rem;
  }
}

/* ═════════════════════════════════════════════════════════════════
   INTRODUCTION SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.introduction-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.introduction-text-marketing-strategy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-marketing-strategy-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-marketing-strategy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.introduction-image-marketing-strategy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-marketing-strategy-fundamentals {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-marketing-strategy-fundamentals {
    flex-direction: column;
  }

  .introduction-text-marketing-strategy-fundamentals,
  .introduction-image-marketing-strategy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   FOUNDATIONS SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.strategy-foundations-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

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

.section-title-marketing-strategy-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle-marketing-strategy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.foundation-card-marketing-strategy-fundamentals {
  flex: 1 1 280px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.foundation-card-marketing-strategy-fundamentals:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.foundation-icon-marketing-strategy-fundamentals {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.foundation-title-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.foundation-text-marketing-strategy-fundamentals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

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

/* ═════════════════════════════════════════════════════════════════
   DIGITAL STRATEGIES SECTION
   ═════════════════════════════════════════════════════════════════ */

.digital-strategies-section-marketing-strategy-fundamentals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.digital-strategies-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.digital-text-marketing-strategy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.digital-title-marketing-strategy-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.digital-subtitle-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.digital-subtitle-marketing-strategy-fundamentals:first-of-type {
  margin-top: 0;
}

.digital-description-marketing-strategy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

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

.digital-feature-image-marketing-strategy-fundamentals {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .digital-wrapper-marketing-strategy-fundamentals {
    flex-direction: column;
  }

  .digital-text-marketing-strategy-fundamentals,
  .digital-image-wrapper-marketing-strategy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   TRADITIONAL STRATEGIES SECTION
   ═════════════════════════════════════════════════════════════════ */

.traditional-strategies-section-marketing-strategy-fundamentals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.traditional-strategies-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.traditional-image-wrapper-marketing-strategy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.traditional-feature-image-marketing-strategy-fundamentals {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.traditional-text-marketing-strategy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.traditional-title-marketing-strategy-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.traditional-subtitle-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.traditional-subtitle-marketing-strategy-fundamentals:first-of-type {
  margin-top: 0;
}

.traditional-description-marketing-strategy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .traditional-wrapper-marketing-strategy-fundamentals {
    flex-direction: column;
  }

  .traditional-image-wrapper-marketing-strategy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
    order: 0;
  }

  .traditional-text-marketing-strategy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   IMPLEMENTATION STEPS SECTION
   ═════════════════════════════════════════════════════════════════ */

.implementation-steps-section-marketing-strategy-fundamentals {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.implementation-steps-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.implementation-steps-section-marketing-strategy-fundamentals .section-header-marketing-strategy-fundamentals {
  margin-bottom: 3rem;
}

.implementation-steps-section-marketing-strategy-fundamentals .section-title-marketing-strategy-fundamentals {
  color: #ffffff;
}

.implementation-steps-section-marketing-strategy-fundamentals .section-subtitle-marketing-strategy-fundamentals {
  color: #bfdbfe;
}

.steps-container-marketing-strategy-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-item-marketing-strategy-fundamentals {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 1.75rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  align-items: flex-start;
}

.step-number-marketing-strategy-fundamentals {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

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

.step-title-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.step-text-marketing-strategy-fundamentals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .step-item-marketing-strategy-fundamentals {
    gap: 1rem;
    padding: 1.25rem;
  }

  .step-number-marketing-strategy-fundamentals {
    font-size: 2rem;
    min-width: 60px;
  }
}

/* ═════════════════════════════════════════════════════════════════
   QUOTE SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.quote-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.featured-quote-marketing-strategy-fundamentals {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.quote-text-marketing-strategy-fundamentals {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.quote-author-marketing-strategy-fundamentals {
  font-size: 0.9375rem;
  color: #93c5fd;
  font-style: normal;
  font-weight: 500;
}

/* ═════════════════════════════════════════════════════════════════
   ADVANCED TACTICS SECTION
   ═════════════════════════════════════════════════════════════════ */

.advanced-tactics-section-marketing-strategy-fundamentals {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.advanced-tactics-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.advanced-tactics-section-marketing-strategy-fundamentals .section-header-marketing-strategy-fundamentals {
  margin-bottom: 3rem;
}

.advanced-tactics-section-marketing-strategy-fundamentals .section-title-marketing-strategy-fundamentals {
  color: #0f172a;
}

.advanced-tactics-section-marketing-strategy-fundamentals .section-subtitle-marketing-strategy-fundamentals {
  color: #64748b;
}

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

.tactics-text-marketing-strategy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.tactics-subtitle-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.tactics-subtitle-marketing-strategy-fundamentals:first-of-type {
  margin-top: 0;
}

.tactics-description-marketing-strategy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.tactics-image-marketing-strategy-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.tactics-feature-image-marketing-strategy-fundamentals {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .tactics-content-marketing-strategy-fundamentals {
    flex-direction: column;
  }

  .tactics-text-marketing-strategy-fundamentals,
  .tactics-image-marketing-strategy-fundamentals {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   COMMON MISTAKES SECTION
   ═════════════════════════════════════════════════════════════════ */

.common-mistakes-section-marketing-strategy-fundamentals {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.common-mistakes-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.common-mistakes-section-marketing-strategy-fundamentals .section-header-marketing-strategy-fundamentals {
  margin-bottom: 3rem;
}

.common-mistakes-section-marketing-strategy-fundamentals .section-title-marketing-strategy-fundamentals {
  color: #0f172a;
}

.common-mistakes-section-marketing-strategy-fundamentals .section-subtitle-marketing-strategy-fundamentals {
  color: #64748b;
}

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

.mistake-card-marketing-strategy-fundamentals {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.mistake-card-marketing-strategy-fundamentals:hover {
  border-color: #cbd5e1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.mistake-title-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
}

.mistake-text-marketing-strategy-fundamentals {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

/* ═════════════════════════════════════════════════════════════════
   CONCLUSION SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.conclusion-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.conclusion-title-marketing-strategy-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.2;
  text-align: center;
}

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

.conclusion-cta-marketing-strategy-fundamentals {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.cta-title-marketing-strategy-fundamentals {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-marketing-strategy-fundamentals {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.btn-primary-marketing-strategy-fundamentals {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: #3b82f6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.btn-primary-marketing-strategy-fundamentals:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* ═════════════════════════════════════════════════════════════════
   RELATED POSTS SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.related-posts-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.related-title-marketing-strategy-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
  text-align: center;
  line-height: 1.2;
}

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

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

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

.related-card-marketing-strategy-fundamentals:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

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

.related-image-marketing-strategy-fundamentals {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.related-card-title-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-marketing-strategy-fundamentals {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-top: auto;
}

.related-link-marketing-strategy-fundamentals {
  display: inline-block;
  margin-top: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.related-link-marketing-strategy-fundamentals:hover {
  color: #2563eb;
  text-decoration: underline;
}

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

/* ═════════════════════════════════════════════════════════════════
   DISCLAIMER SECTION
   ═════════════════════════════════════════════════════════════════ */

.disclaimer-section-marketing-strategy-fundamentals {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

.disclaimer-section-marketing-strategy-fundamentals .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.disclaimer-box-marketing-strategy-fundamentals {
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-marketing-strategy-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #b45309;
  margin-bottom: 1rem;
}

.disclaimer-text-marketing-strategy-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.8;
}

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE ADJUSTMENTS
   ═════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .breadcrumbs-marketing-strategy-fundamentals {
    font-size: 0.75rem;
  }

  .hero-stats-marketing-strategy-fundamentals {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .strategy-foundations-section-marketing-strategy-fundamentals .container {
    max-width: 1440px;
  }
}

/* ═════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ═════════════════════════════════════════════════════════════════ */

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

/* Post Page 5 Styles */
/* ═════════════════════════════════════════════════════════════════
   MAIN COMPONENT - BUSINESS STRATEGY DEVELOPMENT
   ═════════════════════════════════════════════════════════════════ */

.main-business-strategy-development {
  width: 100%;
  overflow-x: hidden;
  background: #0c1929;
}

/* ═════════════════════════════════════════════════════════════════
   HERO SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.hero-wrapper-business-strategy-development {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.hero-content-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.hero-title-business-strategy-development {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

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

.article-meta-business-strategy-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-business-strategy-development {
  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-business-strategy-development i {
  color: #3b82f6;
}

.hero-stats-business-strategy-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: 2rem;
}

.stat-box-business-strategy-development {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-business-strategy-development {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-business-strategy-development {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

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

.breadcrumbs-business-strategy-development {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-business-strategy-development a {
  color: #60a5fa;
  transition: color 0.3s ease;
  text-decoration: none;
}

.breadcrumbs-business-strategy-development a:hover {
  color: #38bdf8;
}

.breadcrumbs-business-strategy-development span {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-wrapper-business-strategy-development {
    flex-direction: column;
  }

  .hero-content-business-strategy-development,
  .hero-image-business-strategy-development {
    flex: 1 1 100%;
  }

  .hero-stats-business-strategy-development {
    gap: 1.5rem;
  }
}

/* ═════════════════════════════════════════════════════════════════
   INTRO SECTION
   ═════════════════════════════════════════════════════════════════ */

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

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

.intro-text-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-title-business-strategy-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-description-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-text-block-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.intro-image-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.intro-featured-image-business-strategy-development {
  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-business-strategy-development {
    flex-direction: column;
  }

  .intro-text-business-strategy-development,
  .intro-image-business-strategy-development {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   FOUNDATION SECTION
   ═════════════════════════════════════════════════════════════════ */

.foundation-section-business-strategy-development {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.foundation-header-business-strategy-development {
  text-align: center;
  margin-bottom: 3rem;
}

.foundation-tag-business-strategy-development {
  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;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.foundation-title-business-strategy-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.foundation-steps-business-strategy-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.foundation-step-business-strategy-development {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.foundation-step-content-business-strategy-development {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.foundation-step-title-business-strategy-development {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.foundation-step-text-business-strategy-development {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .foundation-step-business-strategy-development {
    flex-direction: column;
  }

  .foundation-step-number-business-strategy-development {
    min-width: auto;
  }
}

/* ═════════════════════════════════════════════════════════════════
   ANALYSIS SECTION
   ═════════════════════════════════════════════════════════════════ */

.analysis-section-business-strategy-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.analysis-wrapper-business-strategy-development {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.analysis-text-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.analysis-title-business-strategy-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.analysis-description-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.analysis-highlight-business-strategy-development {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  margin-bottom: 1.5rem;
}

.analysis-highlight-title-business-strategy-development {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.analysis-list-business-strategy-development {
  list-style: none;
  padding: 0;
}

.analysis-list-item-business-strategy-development {
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.analysis-list-item-business-strategy-development::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.analysis-text-block-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
}

.analysis-image-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.analysis-featured-image-business-strategy-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .analysis-wrapper-business-strategy-development {
    flex-direction: column;
  }

  .analysis-text-business-strategy-development,
  .analysis-image-business-strategy-development {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   IMPLEMENTATION SECTION
   ═════════════════════════════════════════════════════════════════ */

.implementation-section-business-strategy-development {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.implementation-wrapper-business-strategy-development {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.implementation-image-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.implementation-featured-image-business-strategy-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.implementation-text-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.implementation-title-business-strategy-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.implementation-description-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.implementation-quote-business-strategy-development {
  padding: 1.5rem;
  border-left: 4px solid #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.implementation-quote-text-business-strategy-development {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #e0e7ff;
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.implementation-quote-author-business-strategy-development {
  font-size: 0.875rem;
  color: #93c5fd;
  font-style: normal;
}

.implementation-text-block-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .implementation-wrapper-business-strategy-development {
    flex-direction: column;
  }

  .implementation-image-business-strategy-development,
  .implementation-text-business-strategy-development {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   TOOLS SECTION
   ═════════════════════════════════════════════════════════════════ */

.tools-section-business-strategy-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-header-business-strategy-development {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-tag-business-strategy-development {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tools-title-business-strategy-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.tools-subtitle-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.tools-card-business-strategy-development {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tools-card-business-strategy-development:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
}

.tools-card-icon-business-strategy-development {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.tools-card-title-business-strategy-development {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #1e293b;
}

.tools-card-text-business-strategy-development {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

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

/* ═════════════════════════════════════════════════════════════════
   MONITORING SECTION
   ═════════════════════════════════════════════════════════════════ */

.monitoring-section-business-strategy-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.monitoring-wrapper-business-strategy-development {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 4vw, 4rem);
  flex-wrap: wrap;
}

.monitoring-image-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.monitoring-featured-image-business-strategy-development {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.monitoring-text-business-strategy-development {
  flex: 1 1 300px;
  min-width: 280px;
}

.monitoring-title-business-strategy-development {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.monitoring-description-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.monitoring-steps-business-strategy-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.monitoring-step-item-business-strategy-development {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
}

.monitoring-step-icon-business-strategy-development {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  color: #3b82f6;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.monitoring-step-content-business-strategy-development {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.monitoring-step-title-business-strategy-development {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
}

.monitoring-step-text-business-strategy-development {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .monitoring-wrapper-business-strategy-development {
    flex-direction: column;
  }

  .monitoring-image-business-strategy-development,
  .monitoring-text-business-strategy-development {
    flex: 1 1 100%;
  }
}

/* ═════════════════════════════════════════════════════════════════
   CONCLUSION SECTION
   ═════════════════════════════════════════════════════════════════ */

.conclusion-section-business-strategy-development {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-business-strategy-development {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-business-strategy-development {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-text-block-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #93c5fd;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-highlight-business-strategy-development {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.conclusion-highlight-title-business-strategy-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.conclusion-list-business-strategy-development {
  list-style: none;
  padding: 0;
}

.conclusion-list-business-strategy-development li {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.8;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.conclusion-list-business-strategy-development li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.conclusion-closing-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  text-align: center;
}

/* ═════════════════════════════════════════════════════════════════
   DISCLAIMER SECTION
   ═════════════════════════════════════════════════════════════════ */

.disclaimer-section-business-strategy-development {
  background: #1e3a5f;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-business-strategy-development {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.disclaimer-title-business-strategy-development {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

/* ═════════════════════════════════════════════════════════════════
   RELATED SECTION
   ═════════════════════════════════════════════════════════════════ */

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

.related-header-business-strategy-development {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-business-strategy-development {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.related-subtitle-business-strategy-development {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

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

.related-card-business-strategy-development:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-business-strategy-development {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-business-strategy-development {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-business-strategy-development {
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.related-card-title-business-strategy-development {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-business-strategy-development {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-business-strategy-development {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.related-card-link-business-strategy-development:hover {
  color: #2563eb;
}

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

/* ═════════════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ═════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .container {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
  }
}

/* ═════════════════════════════════════════════════════════════════
   FOCUS STATES FOR ACCESSIBILITY
   ═════════════════════════════════════════════════════════════════ */

a:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* About Page Styles */
:root {
  --color-bg-primary: #0c1929;
  --color-bg-secondary: #162d50;
  --color-bg-tertiary: #1e3a5f;
  --color-bg-card: rgba(59, 130, 246, 0.08);
  --color-text-primary: #ffffff;
  --color-text-secondary: #bfdbfe;
  --color-text-muted: #93c5fd;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent: #06b6d4;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(59, 130, 246, 0.15);
  --shadow-lg: 0 12px 24px rgba(59, 130, 246, 0.2);
  --shadow-xl: 0 20px 40px rgba(12, 25, 41, 0.4);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
}

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

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

.entrepreneurship-foundation-about {
  width: 100%;
}

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

.hero-section-about .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

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

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

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  max-width: 700px;
  line-height: 1.7;
}

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

.stat-block-about {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-about {
  font-size: 0.875rem;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

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

.journey-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.section-header-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-about {
  display: inline-block;
  align-self: center;
  padding: 0.375rem 1rem;
  background: rgba(6, 182, 212, 0.15);
  color: var(--color-accent);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.section-description-about {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.journey-blocks-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.journey-card-about {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  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;
}

.journey-card-about:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.journey-card-number-about {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.journey-card-title-about {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.journey-card-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

.journey-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1rem, 3vw, 2rem) auto 0;
}

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

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 3.5rem);
}

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

.process-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border-left: 3px solid var(--color-accent);
  border-radius: var(--radius-md);
}

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

.step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.step-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

.methodology-image-about {
  width: 100%;
  max-width: 850px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 0 auto;
}

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

.values-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.values-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

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

.value-card-about {
  flex: 1 1 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.15);
  transition: all 0.3s ease;
}

.value-card-about:hover {
  background: rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-4px);
}

.value-icon-about {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  font-size: 1.5rem;
}

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

.value-text-about {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-accent);
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-md);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.featured-quote-about p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.featured-quote-author-about {
  font-size: 0.9375rem;
  color: #93c5fd;
  font-style: normal;
}

.disclaimer-section-about {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-title-about {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-text-about {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #bfdbfe;
  max-width: 900px;
}

@media (max-width: 768px) {
  .hero-stats-about {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .journey-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .value-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .process-step-about {
    gap: 1.25rem;
  }
}

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

  .journey-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .methodology-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .values-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

/* Privacy Page Styles */
.legal-hub {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  min-height: 100vh;
  width: 100%;
}

.legal-hub section {
  width: 100%;
  overflow: hidden;
}

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

/* Hero Section */
.legal-hub-hero {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--color-bg-secondary);
}

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 2rem);
}

.legal-hub-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Content Sections */
.legal-hub-content {
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.legal-hub-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 3vw, 1.5rem);
}

.legal-hub-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section h3 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  margin-top: 1rem;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.legal-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-section li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

/* Contact Section */
.legal-hub-contact {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  margin-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--color-bg-tertiary);
}

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.legal-hub-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-primary);
  line-height: 1.3;
}

.legal-hub-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-hub-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-contact-label {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-secondary);
}

.legal-hub-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  word-break: break-word;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-content {
    padding: 4rem 0;
  }

  .legal-hub-contact {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }
}

/* Thank You Page Styles */
/* Thank You Page Styles */
.thank-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2.5rem, 6vw, 6rem) 0;
  overflow: hidden;
}

.thank-section .container {
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

/* Success Icon */
.thank-icon {
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.15);
  margin-bottom: clamp(0.5rem, 2vw, 1rem);
  animation: icon-bounce 0.6s ease-out;
}

.thank-icon i {
  font-size: clamp(40px, 10vw, 60px);
  color: var(--color-primary);
}

@keyframes icon-bounce {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Typography */
.thank-section h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin: 0;
  letter-spacing: -0.5px;
}

.thank-lead {
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.thank-description {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next-steps {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 1rem);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 0.95;
}

/* Button */
.btn {
  display: inline-block;
  padding: clamp(0.75rem, 2vw, 1.125rem) clamp(2rem, 4vw, 3rem);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

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

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

/* Responsive Design */
@media (min-width: 768px) {
  .thank-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
  }

  .thank-icon {
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .btn {
    padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2.5rem, 5vw, 3.5rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(6rem, 10vw, 10rem) 0;
  }

  .thank-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3rem;
  }
}

/* Accessibility */
.thank-icon i:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
  }

  .btn {
    transition: none;
  }

  .btn:hover {
    transform: none;
  }
}

/* 404 Page Styles */
.main.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: linear-gradient(135deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
  padding: clamp(2rem, 6vw, 6rem) 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);
  width: 100%;
}

.error-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(200px, 50vw, 400px);
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 0 60px rgba(59, 130, 246, 0.3);
  animation: float 6s ease-in-out infinite;
}

.error-icon {
  position: absolute;
  top: 20%;
  right: 5%;
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-accent);
  opacity: 0.8;
  animation: spin 8s linear infinite;
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 500px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: 600px;
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.feature-item i {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-accent);
}

.feature-item span {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1.25rem) clamp(2rem, 4vw, 3rem);
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

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

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

.error-secondary {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 2px solid transparent;
}

.error-link:hover {
  color: var(--color-secondary);
  border-bottom-color: var(--color-secondary);
}

@media (min-width: 768px) {
  .error-section {
    min-height: 100vh;
    padding: clamp(3rem, 8vw, 8rem) 0;
  }

  .error-visual {
    height: clamp(250px, 55vw, 450px);
    margin-bottom: clamp(1.5rem, 3vw, 3rem);
  }

  .error-icon {
    top: 15%;
    right: 8%;
  }

  .error-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .error-visual {
    height: 450px;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-icon {
    font-size: 4rem;
  }

  .feature-item {
    padding: 2rem;
  }
}

/* Ensure no text overflow */
.error-title,
.error-message,
.error-secondary,
.feature-item span {
  word-break: break-word;
  hyphens: auto;
}