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

: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: #7c8ba3;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-alt: #06b6d4;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

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

h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  color: var(--color-text-primary);
}

h4 {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
}

p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-secondary);
}

ul, ol {
  margin-left: var(--space-md);
}

li {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

.btn-secondary:hover {
  background: rgba(96, 165, 250, 0.1);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}

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

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

input, textarea, select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: var(--space-md);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  color: var(--color-text-primary);
  transition: all 0.3s ease;
}

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

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

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

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

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

.card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mb-0 { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.pt-xl { padding-top: var(--space-xl); }
.pb-xl { padding-bottom: var(--space-xl); }

.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: var(--radius-lg); }
.rounded-lg { border-radius: var(--radius-xl); }

.shadow { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

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

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

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

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

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

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

.accent-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-primary);
}

.accent-line {
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
  border-radius: 2px;
}

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
}

.link-hover {
  position: relative;
  transition: color 0.3s ease;
}

.link-hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

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

.divider {
  width: 100%;
  height: 1px;
  background: rgba(59, 130, 246, 0.2);
  margin: var(--space-lg) 0;
}

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

@media (prefers-contrast: more) {
  .card {
    border-width: 2px;
  }
  
  .btn {
    border-width: 2px;
  }
}
: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: #7c8ba3;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-secondary: #60a5fa;
    --color-accent-alt: #06b6d4;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
  }

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

  html {
    scroll-behavior: smooth;
  }

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

  .header-webcraft-portal {
    position: relative;
    background: var(--color-bg-primary);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    padding: clamp(0.875rem, 2vw, 1.25rem) 0;
    z-index: 100;
  }

  .header-webcraft-portal-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

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

  .header-webcraft-portal-brand:hover {
    opacity: 0.85;
  }

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

  .header-webcraft-portal-logo-text {
    font-weight: 700;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-primary);
    letter-spacing: -0.5px;
  }

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

  .header-webcraft-portal-nav-link {
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 300ms ease;
    position: relative;
    white-space: nowrap;
  }

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

  .header-webcraft-portal-nav-link:hover {
    color: var(--color-text-primary);
  }

  .header-webcraft-portal-nav-link:hover::after {
    width: 100%;
  }

  .header-webcraft-portal-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #0c1929;
    border: none;
    border-radius: var(--radius-md);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }

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

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

  .header-webcraft-portal-cta-button:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 3px;
  }

  .header-webcraft-portal-mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -0.5rem;
    z-index: 101;
    transition: all 300ms ease;
  }

  .header-webcraft-portal-hamburger {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-webcraft-portal-mobile-toggle[aria-expanded="true"] .header-webcraft-portal-hamburger:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .header-webcraft-portal-mobile-toggle[aria-expanded="true"] .header-webcraft-portal-hamburger:nth-child(2) {
    opacity: 0;
  }

  .header-webcraft-portal-mobile-toggle[aria-expanded="true"] .header-webcraft-portal-hamburger:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .header-webcraft-portal-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-secondary);
    border-left: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    flex-direction: column;
    padding: clamp(1rem, 4vw, 1.5rem);
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    overflow-y: auto;
  }

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

  .header-webcraft-portal-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  }

  .header-webcraft-portal-mobile-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text-primary);
  }

  .header-webcraft-portal-mobile-close {
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease;
  }

  .header-webcraft-portal-mobile-close:hover {
    color: var(--color-text-primary);
    transform: rotate(90deg);
  }

  .header-webcraft-portal-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: auto;
  }

  .header-webcraft-portal-mobile-link {
    font-size: clamp(0.875rem, 2vw, 1rem);
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    transition: all 300ms ease;
    display: block;
  }

  .header-webcraft-portal-mobile-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-text-primary);
    padding-left: 1.5rem;
  }

  .header-webcraft-portal-mobile-cta {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--color-primary);
    color: #0c1929;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: clamp(0.875rem, 2vw, 1rem);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
  }

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

  @media (min-width: 768px) {
    .header-webcraft-portal-desktop-nav {
      display: flex;
    }

    .header-webcraft-portal-cta-button {
      display: block;
    }

    .header-webcraft-portal-mobile-toggle {
      display: none;
    }

    .header-webcraft-portal-mobile-menu {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .header-webcraft-portal-mobile-menu.active {
      box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-webcraft-portal-brand,
    .header-webcraft-portal-nav-link,
    .header-webcraft-portal-cta-button,
    .header-webcraft-portal-hamburger,
    .header-webcraft-portal-mobile-menu,
    .header-webcraft-portal-mobile-close,
    .header-webcraft-portal-mobile-link,
    .header-webcraft-portal-mobile-cta {
      transition: none;
    }

    .header-webcraft-portal-mobile-toggle[aria-expanded="true"] .header-webcraft-portal-hamburger:nth-child(1),
    .header-webcraft-portal-mobile-toggle[aria-expanded="true"] .header-webcraft-portal-hamburger:nth-child(3) {
      transform: none;
    }
  }

    
.wordpress-training-hub {
  width: 100%;
}

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

.hero-gradient-mesh-index {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: -10%;
  left: -5%;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-primary-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 10%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-floating-shape-index {
  position: absolute;
  width: 250px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: -5%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-accent-index {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  top: 15%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.hero-secondary-glow-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 50%;
  filter: blur(70px);
  top: 50%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.hero-geometric-accent-index {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 20% 80% 70% 30% / 40% 50% 60% 50%;
  top: 30%;
  right: 30%;
  z-index: 1;
  pointer-events: none;
}

.hero-corner-element-index {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.02);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 10px;
  transform: rotate(15deg);
  bottom: 5%;
  right: 2%;
  z-index: 1;
  pointer-events: none;
}

.hero-content-index {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

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

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

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

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

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

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

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary-hero-index {
  background: #3b82f6;
  color: #0c1929;
  border: 2px solid #3b82f6;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-hero-index:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.btn-secondary-hero-index {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary-hero-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #bfdbfe;
  color: #bfdbfe;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .hero-section-index {
    padding: 2.5rem 0;
  }

  .hero-buttons-index {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary-hero-index,
  .btn-secondary-hero-index {
    width: 100%;
    max-width: 300px;
  }
}

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

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

.features-glow-top-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  top: 5%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.features-shape-right-index {
  position: absolute;
  width: 280px;
  height: 300px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: 10%;
  right: -5%;
  z-index: 1;
  pointer-events: none;
}

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

.features-blob-accent-index {
  position: absolute;
  width: 200px;
  height: 220px;
  background: rgba(34, 197, 94, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 40%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.features-subtle-glow-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 50%;
  filter: blur(50px);
  bottom: 0;
  right: 20%;
  z-index: 1;
  pointer-events: none;
}

.features-corner-element-index {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(139, 92, 246, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 15px;
  top: 10%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.features-header-index {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.features-tag-index {
  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: 500;
  margin-bottom: 1rem;
}

.features-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-index {
  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;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

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

.features-card-icon-index {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
}

.features-card-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #1e293b;
  font-weight: 600;
}

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

@media (max-width: 768px) {
  .features-section-index {
    padding: 2.5rem 0;
  }

  .features-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.about-glow-accent-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  bottom: 5%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.about-shape-element-index {
  position: absolute;
  width: 300px;
  height: 320px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  left: -10%;
  z-index: 1;
  pointer-events: none;
}

.about-line-divider-index {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  top: 35%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.about-floating-panel-index {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 10px;
  transform: rotate(-8deg);
  top: 20%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.about-secondary-accent-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.03);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 30%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

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

.about-text-block-index {
  flex: 1 1 400px;
}

.about-tag-index {
  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: 500;
  margin-bottom: 1rem;
}

.about-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-description-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-process-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

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

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

.about-step-title-index {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
}

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

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

.about-image-index {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .about-section-index {
    padding: 2.5rem 0;
  }

  .about-content-index {
    flex-direction: column;
  }

  .about-text-block-index,
  .about-image-block-index {
    flex: 1 1 100%;
  }
}

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

.process-gradient-field-index {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  top: 0;
  right: -10%;
  z-index: 1;
  pointer-events: none;
}

.process-glow-accent-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.process-shape-top-index {
  position: absolute;
  width: 250px;
  height: 270px;
  background: rgba(34, 211, 238, 0.03);
  border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
  top: -5%;
  left: 15%;
  z-index: 1;
  pointer-events: none;
}

.process-shape-bottom-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.02);
  border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  bottom: 0;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

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

.process-corner-accent-index {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  transform: rotate(20deg);
  top: 15%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.process-secondary-glow-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 50%;
  filter: blur(70px);
  top: 50%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.process-header-index {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.process-tag-index {
  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: 500;
  margin-bottom: 1rem;
}

.process-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.process-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.process-step-index {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  transition: all 300ms ease;
}

.process-step-index:hover {
  border-color: rgba(59, 130, 246, 0.3);
  background: #f8fafc;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
}

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

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

.process-step-title-index {
  font-size: 1.125rem;
  color: #1e293b;
  font-weight: 600;
}

.process-step-text-index {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-section-index {
    padding: 2.5rem 0;
  }

  .process-step-index {
    padding: 1.25rem;
  }
}

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

.posts-accent-glow-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  top: 5%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

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

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

.posts-floating-element-index {
  position: absolute;
  width: 170px;
  height: 130px;
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(96, 165, 250, 0.08);
  border-radius: 8px;
  transform: rotate(-12deg);
  top: 30%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.posts-corner-glow-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 0;
  left: 20%;
  z-index: 1;
  pointer-events: none;
}

.posts-secondary-shape-index {
  position: absolute;
  width: 220px;
  height: 220px;
  background: rgba(59, 130, 246, 0.02);
  border-radius: 50%;
  filter: blur(50px);
  top: 50%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.posts-header-index {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 10;
}

.posts-tag-index {
  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: 500;
  margin-bottom: 1rem;
}

.posts-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.posts-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.posts-cards-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 10;
}

.posts-card-index {
  flex: 1 1 320px;
  max-width: 420px;
  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: 12px;
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.posts-card-index:hover {
  transform: translateY(-8px);
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

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

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

.posts-card-title-index {
  font-size: 1.125rem;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.3;
}

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

.posts-card-link-index {
  font-size: 0.9375rem;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
}

.posts-card-link-index:hover {
  color: #93c5fd;
}

.posts-cta-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 10;
}

.posts-cta-text-index {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
}

.btn-primary-posts-index {
  background: #3b82f6;
  color: #0c1929;
  border: 2px solid #3b82f6;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-posts-index:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .posts-section-index {
    padding: 2.5rem 0;
  }

  .posts-card-index {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

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

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

.quote-accent-element-index {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.02);
  border-radius: 50%;
  filter: blur(60px);
  top: 10%;
  right: 20%;
  z-index: 1;
  pointer-events: none;
}

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

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

.quote-content-index {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.quote-block-index {
  padding: 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.quote-text-index {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

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

.quote-badges-index {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.quote-badge-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.quote-badge-index i {
  color: #3b82f6;
}

@media (max-width: 768px) {
  .quote-section-index {
    padding: 2.5rem 0;
  }

  .quote-block-index {
    padding: 1.5rem;
  }

  .quote-text-index {
    font-size: 1.0625rem;
  }

  .quote-badges-index {
    flex-direction: column;
    align-items: center;
  }
}

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

.contact-gradient-mesh-index {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -10%;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.contact-glow-accent-index {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(96, 165, 250, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 10%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.contact-shape-left-index {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: 20%;
  left: -10%;
  z-index: 1;
  pointer-events: none;
}

.contact-shape-right-index {
  position: absolute;
  width: 250px;
  height: 270px;
  background: rgba(139, 92, 246, 0.03);
  border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  bottom: 30%;
  right: -5%;
  z-index: 1;
  pointer-events: none;
}

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

.contact-corner-glow-index {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.02);
  border-radius: 50%;
  filter: blur(50px);
  top: 5%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.contact-secondary-accent-index {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 50%;
  left: 15%;
  z-index: 1;
  pointer-events: none;
}

.contact-header-index {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 10;
}

.contact-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-subtitle-index {
  font-size: clamp(0.95rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

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

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

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

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

.contact-input-index,
.contact-textarea-index {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: inherit;
  transition: all 300ms ease;
}

.contact-input-index::placeholder,
.contact-textarea-index::placeholder {
  color: #7c8ba3;
}

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

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

.contact-submit-index {
  width: 100%;
  padding: 1rem;
  background: #3b82f6;
  color: #0c1929;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.contact-submit-index:active {
  transform: translateY(0);
}

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

.contact-info-block-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-title-index {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  font-weight: 600;
}

.contact-faq-item-index {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-faq-question-index {
  font-size: 0.95rem;
  color: #bfdbfe;
  font-weight: 500;
}

.contact-faq-answer-index {
  font-size: 0.875rem;
  color: #7c8ba3;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-section-index {
    padding: 2.5rem 0;
  }

  .contact-content-index {
    flex-direction: column;
  }

  .contact-form-wrapper-index,
  .contact-info-wrapper-index {
    flex: 1 1 100%;
  }
}

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

.cta-glow-primary-index {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  top: -5%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.cta-shape-accent-index {
  position: absolute;
  width: 300px;
  height: 320px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -5%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.cta-line-divider-index {
  position: absolute;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  top: 25%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.cta-floating-element-index {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(34, 211, 238, 0.02);
  border-radius: 50%;
  filter: blur(60px);
  bottom: 20%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.cta-content-index {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.cta-title-index {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description-index {
  font-size: clamp(0.95rem, 2vw, 1.0625rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.btn-primary-cta-index {
  background: #3b82f6;
  color: #ffffff;
  border: 2px solid #3b82f6;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary-cta-index:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

@media (max-width: 768px) {
  .cta-section-index {
    padding: 2.5rem 0;
  }
}

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

.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;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-banner-text {
  color: #e2e8f0;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  flex: 1 1 auto;
  min-width: 200px;
  text-align: center;
}

.cookie-banner-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-btn-accept,
.cookie-btn-decline {
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  border: none;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 300ms ease;
}

.cookie-btn-accept {
  background: #3b82f6;
  color: #ffffff;
}

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

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

.cookie-btn-decline:hover {
  border-color: #cbd5e1;
  color: #e2e8f0;
}

@media (max-width: 768px) {
  .wordpress-training-hub {
    font-size: 0.95rem;
  }

  .cookie-banner {
    padding: 1rem;
    flex-direction: column;
  }

  .cookie-banner-text {
    order: 1;
  }

  .cookie-banner-buttons {
    order: 2;
    width: 100%;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1 1 auto;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .cookie-banner-text {
    font-size: 0.8125rem;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
  }
}

.btn:focus-visible,
.cookie-btn-accept:focus-visible,
.cookie-btn-decline:focus-visible,
.contact-input-index:focus-visible,
.contact-textarea-index:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

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

    

.footer {
  background: var(--color-bg-primary);
  color: var(--color-text-secondary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
}

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

.footer-content {
  display: block;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(59, 130, 246, 0.08);
}

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

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

.footer-about-text {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-nav-section {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.footer-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
}

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

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

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

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

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

.footer-contact-section {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.footer-contact-info {
  display: block;
}

.footer-contact-item {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact-label {
  display: inline-block;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-right: 0.5rem;
  min-width: 70px;
}

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

.footer-legal-section {
  display: block;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

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

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.footer-legal-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}

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

.footer-legal-link:hover {
  color: var(--color-accent-alt);
}

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

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

.footer-copyright {
  display: block;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.footer-copyright-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8125rem, 1.2vw, 0.875rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
  }

  .footer-about {
    flex: 1 1 300px;
    margin-bottom: 0;
  }

  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 1 1 200px;
    margin-bottom: 0;
  }

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

  .footer-nav-link,
  .footer-legal-link {
    display: block;
  }

  .footer-contact-item {
    display: block;
  }

  .footer-contact-label {
    display: inline;
    min-width: auto;
  }
}

@media (min-width: 1024px) {
  .footer {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .footer-about {
    flex: 0 1 320px;
  }

  .footer-nav-section,
  .footer-contact-section,
  .footer-legal-section {
    flex: 0 1 180px;
  }

  .footer-about-text {
    max-width: 100%;
  }
}

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

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

.footer-legal-link:focus-visible {
  outline-color: var(--color-accent-alt);
}
    

.category-page-wordpress-design {
  width: 100%;
}

.hero-section-wordpress-design {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: linear-gradient(135deg, #0c1929 0%, #162d50 50%, #0c1929 100%);
}

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

.hero-deco-glow-2 {
  position: absolute;
  bottom: -80px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-shape-1 {
  position: absolute;
  top: 50px;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

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

.hero-accent-line {
  position: absolute;
  top: 20%;
  right: 0;
  width: 2px;
  height: 60%;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.3) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-text-block-wordpress-design {
  max-width: 700px;
}

.hero-title-wordpress-design {
  font-size: clamp(2.25rem, 6vw + 0.5rem, 4rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-subtitle-wordpress-design {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: #60a5fa;
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
}

.hero-description-wordpress-design {
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  margin-bottom: clamp(2rem, 5vw, 3rem);
  line-height: 1.7;
}

.hero-stats-wordpress-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

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

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

.stat-label-wordpress-design {
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  color: #7c8ba3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.posts-section-wordpress-design {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0a1628;
  position: relative;
  overflow: hidden;
}

.posts-header-wordpress-design {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}

.posts-tag-wordpress-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.posts-title-wordpress-design {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 800;
}

.posts-subtitle-wordpress-design {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.card-wordpress-design {
  flex: 1 1 300px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  border-radius: 14px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card-wordpress-design:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.card-image-wordpress-design {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.card-content-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

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

.card-description-wordpress-design {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
}

.card-meta-wordpress-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

.meta-badge-wordpress-design {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 16px;
  font-size: 0.8rem;
  color: #60a5fa;
  font-weight: 500;
}

.meta-badge-wordpress-design i {
  font-size: 0.75rem;
}

.card-link-wordpress-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-decoration: none;
  align-self: flex-start;
}

.card-link-wordpress-design:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
}

.learning-path-section-wordpress-design {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #162d50;
  position: relative;
  overflow: hidden;
}

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

.learning-deco-2 {
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.learning-header-wordpress-design {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  position: relative;
  z-index: 10;
}

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

.learning-title-wordpress-design {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 800;
}

.learning-subtitle-wordpress-design {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.learning-steps-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.25rem);
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.learning-step-wordpress-design {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(59, 130, 246, 0.1);
  border-left: 3px solid #3b82f6;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.learning-step-wordpress-design:hover {
  background: rgba(59, 130, 246, 0.15);
  border-left-color: #60a5fa;
}

.learning-step-number-wordpress-design {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 80px;
}

.learning-step-content-wordpress-design {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

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

.learning-step-text-wordpress-design {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.resources-section-wordpress-design {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: #0c1929;
  position: relative;
  overflow: hidden;
}

.resources-deco-mesh {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

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

.resources-text-block-wordpress-design {
  flex: 1 1 300px;
  min-width: 280px;
}

.resources-title-wordpress-design {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  font-weight: 800;
}

.resources-description-wordpress-design {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.resources-highlights-wordpress-design {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.resource-highlight-wordpress-design {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.resource-highlight-wordpress-design:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateX(4px);
}

.highlight-icon-wordpress-design {
  font-size: 1.75rem;
  color: #3b82f6;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-text-wordpress-design {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: #ffffff;
  font-weight: 600;
}

.resources-quote-block-wordpress-design {
  flex: 1 1 300px;
  min-width: 280px;
}

.featured-quote-wordpress-design {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin: 0;
}

.quote-text-wordpress-design {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.8;
}

.quote-author-wordpress-design {
  display: block;
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: #60a5fa;
  font-style: normal;
  font-weight: 600;
}

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

  .stat-item-wordpress-design {
    flex: 1 1 auto;
    min-width: 120px;
  }

  .learning-step-wordpress-design {
    flex-direction: column;
    gap: 1rem;
  }

  .learning-step-number-wordpress-design {
    min-width: auto;
  }

  .resources-content-wordpress-design {
    flex-direction: column;
  }

  .resources-text-block-wordpress-design,
  .resources-quote-block-wordpress-design {
    flex: 1 1 100%;
  }

  .card-wordpress-design {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .stat-item-wordpress-design {
    flex: 0 1 auto;
  }
}

@media (min-width: 1024px) {
  .resources-content-wordpress-design {
    gap: clamp(3rem, 6vw, 5rem);
  }
}

.main-cms-website-management-training {
  width: 100%;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

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

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

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

.hero-text-block-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.article-meta-cms-website-management-training {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-cms-website-management-training {
  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: #bfdbfe;
}

.meta-badge-cms-website-management-training i {
  color: #3b82f6;
}

.hero-stats-cms-website-management-training {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 2rem;
}

.stat-item-cms-website-management-training {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-cms-website-management-training {
  font-size: 0.875rem;
  color: #7c8ba3;
}

.hero-image-block-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-cms-website-management-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .hero-text-block-cms-website-management-training,
  .hero-image-block-cms-website-management-training {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-cms-website-management-training {
    gap: 1.5rem;
  }
}

.intro-section-cms-website-management-training {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-cms-website-management-training {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.intro-description-cms-website-management-training {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-description-cms-website-management-training {
  font-weight: 500;
}

.intro-text-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #7c8ba3;
  line-height: 1.8;
}

.intro-image-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-cms-website-management-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .intro-text-cms-website-management-training,
  .intro-image-cms-website-management-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.process-section-cms-website-management-training {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.process-header-cms-website-management-training {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-cms-website-management-training {
  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;
}

.process-title-cms-website-management-training {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-cms-website-management-training {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-cms-website-management-training {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-cms-website-management-training {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 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;
}

.process-step-cms-website-management-training:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

.process-step-content-cms-website-management-training {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-cms-website-management-training {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-cms-website-management-training {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #bfdbfe;
}

@media (max-width: 768px) {
  .process-step-cms-website-management-training {
    padding: 1.5rem;
  }

  .process-step-number-cms-website-management-training {
    font-size: 2rem;
  }
}

.features-section-cms-website-management-training {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.features-header-cms-website-management-training {
  text-align: center;
  margin-bottom: 3rem;
}

.features-title-cms-website-management-training {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.features-subtitle-cms-website-management-training {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-cms-website-management-training {
  flex: 1 1 280px;
  max-width: 350px;
  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;
}

.features-card-cms-website-management-training:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.features-card-icon-cms-website-management-training {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
}

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

.features-card-text-cms-website-management-training {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #bfdbfe;
}

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

.content-section-cms-website-management-training {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.content-text-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-cms-website-management-training {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.content-description-cms-website-management-training {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.featured-quote-cms-website-management-training {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-cms-website-management-training {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #ffffff;
  margin-bottom: 1rem;
  font-style: italic;
  line-height: 1.6;
}

.quote-author-cms-website-management-training {
  font-size: 0.875rem;
  color: #7c8ba3;
  font-style: normal;
}

.content-text-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.content-image-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-img-cms-website-management-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

  .content-text-cms-website-management-training,
  .content-image-cms-website-management-training {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.advanced-section-cms-website-management-training {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-wrapper-cms-website-management-training {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advanced-image-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.advanced-img-cms-website-management-training {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advanced-text-cms-website-management-training {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-cms-website-management-training {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.advanced-description-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.advanced-list-cms-website-management-training {
  list-style: none;
  margin: 2rem 0;
  padding: 0;
}

.advanced-list-item-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  padding-left: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.advanced-list-item-cms-website-management-training::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: bold;
}

.advanced-text-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .advanced-wrapper-cms-website-management-training {
    flex-direction: column;
  }

  .advanced-image-cms-website-management-training,
  .advanced-text-cms-website-management-training {
    flex: 1 1 100%;
    max-width: 100%;
    order: unset;
  }
}

.conclusion-section-cms-website-management-training {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-cms-website-management-training {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-cms-website-management-training {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.conclusion-text-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.conclusion-highlight-cms-website-management-training {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

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

.conclusion-highlight-text-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.conclusion-final-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-top: 1.5rem;
}

.disclaimer-section-cms-website-management-training {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-cms-website-management-training {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

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

.disclaimer-text-cms-website-management-training {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.related-section-cms-website-management-training {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-cms-website-management-training {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-cms-website-management-training {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-cms-website-management-training {
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-cms-website-management-training {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-cms-website-management-training {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-cms-website-management-training:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

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

.related-card-content-cms-website-management-training {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.related-card-title-cms-website-management-training {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-cms-website-management-training {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.related-card-link-cms-website-management-training {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
  display: inline-block;
}

.related-card-link-cms-website-management-training:hover {
  color: #60a5fa;
  text-decoration: underline;
}

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

.breadcrumbs-cms-website-management-training {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-cms-website-management-training a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-cms-website-management-training a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-cms-website-management-training span {
  color: #7c8ba3;
}

@media (min-width: 768px) {
  .hero-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .intro-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .process-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .features-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .content-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .advanced-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .conclusion-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }

  .related-section-cms-website-management-training {
    padding: clamp(4rem, 8vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-cms-website-management-training {
    padding: 6rem 0;
  }

  .intro-section-cms-website-management-training {
    padding: 6rem 0;
  }

  .process-section-cms-website-management-training {
    padding: 6rem 0;
  }

  .features-section-cms-website-management-training {
    padding: 6rem 0;
  }

  .content-section-cms-website-management-training {
    padding: 6rem 0;
  }

  .advanced-section-cms-website-management-training {
    padding: 6rem 0;
  }

  .conclusion-section-cms-website-management-training {
    padding: 6rem 0;
  }

  .related-section-cms-website-management-training {
    padding: 6rem 0;
  }
}

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

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

.related-card-link-cms-website-management-training:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

.main-wordpress-design-fundamentals {
  width: 100%;
}

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

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

.hero-content-wordpress-design-fundamentals {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.hero-text-block-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-wordpress-design-fundamentals {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.15;
  word-wrap: break-word;
}

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

.article-meta-wordpress-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-wordpress-design-fundamentals {
  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: #bfdbfe;
}

.meta-badge-wordpress-design-fundamentals i {
  color: #3b82f6;
}

.hero-image-block-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.breadcrumbs-wordpress-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-wordpress-design-fundamentals a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-wordpress-design-fundamentals a:hover {
  color: #bfdbfe;
}

.breadcrumb-separator-wordpress-design-fundamentals {
  color: #7c8ba3;
}

.breadcrumb-current-wordpress-design-fundamentals {
  color: #bfdbfe;
}

.hero-stats-wordpress-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  justify-content: flex-start;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.stat-item-wordpress-design-fundamentals {
  flex: 0 1 auto;
}

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

.stat-label-wordpress-design-fundamentals {
  display: block;
  font-size: 0.875rem;
  color: #bfdbfe;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .hero-content-wordpress-design-fundamentals {
    flex-direction: column;
  }

  .hero-text-block-wordpress-design-fundamentals,
  .hero-image-block-wordpress-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-wordpress-design-fundamentals {
    justify-content: center;
    gap: 1.5rem;
  }
}

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

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

.intro-text-block-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-wordpress-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.intro-text-wordpress-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-block-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-wordpress-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .intro-content-wordpress-design-fundamentals {
    flex-direction: column;
  }

  .intro-text-block-wordpress-design-fundamentals,
  .intro-image-block-wordpress-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.fundamentals-section-wordpress-design-fundamentals {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.section-tag-wordpress-design-fundamentals {
  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: 500;
  margin-bottom: 1rem;
}

.fundamentals-title-wordpress-design-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.fundamentals-steps-wordpress-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.fundamentals-step-wordpress-design-fundamentals {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fundamentals-step-wordpress-design-fundamentals:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

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

.fundamentals-step-content-wordpress-design-fundamentals {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fundamentals-step-title-wordpress-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.fundamentals-step-text-wordpress-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

@media (max-width: 768px) {
  .fundamentals-step-wordpress-design-fundamentals {
    flex-direction: column;
    gap: 1rem;
  }

  .fundamentals-step-number-wordpress-design-fundamentals {
    min-width: auto;
  }
}

.design-principles-section-wordpress-design-fundamentals {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.design-principles-text-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.design-principles-title-wordpress-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.design-principles-paragraph-wordpress-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.principles-highlight-wordpress-design-fundamentals {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #3b82f6;
  margin: 2rem 0;
  border-radius: 4px;
}

.highlight-text-wordpress-design-fundamentals {
  font-size: 1rem;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.design-principles-image-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.design-principles-image-wordpress-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .design-principles-wrapper-wordpress-design-fundamentals {
    flex-direction: column;
  }

  .design-principles-text-wordpress-design-fundamentals,
  .design-principles-image-wordpress-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }
}

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

.features-title-wordpress-design-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.features-subtitle-wordpress-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.features-cards-wordpress-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 3rem;
}

.features-card-wordpress-design-fundamentals {
  flex: 1 1 300px;
  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;
}

.features-card-wordpress-design-fundamentals:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.features-card-icon-wordpress-design-fundamentals {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #60a5fa;
  font-size: 1.5rem;
}

.features-card-title-wordpress-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
}

.features-card-text-wordpress-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

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

.practical-section-wordpress-design-fundamentals {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practical-image-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-image-wordpress-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.practical-text-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-wordpress-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.practical-paragraph-wordpress-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .practical-content-wordpress-design-fundamentals {
    flex-direction: column;
  }

  .practical-image-wordpress-design-fundamentals,
  .practical-text-wordpress-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.tips-section-wordpress-design-fundamentals {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tips-title-wordpress-design-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 3rem;
}

.tips-content-wrapper-wordpress-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.tips-item-wordpress-design-fundamentals {
  flex: 1 1 calc(50% - 1rem);
  min-width: 300px;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.tips-item-wordpress-design-fundamentals:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.tips-item-title-wordpress-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.tips-item-text-wordpress-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
}

@media (max-width: 768px) {
  .tips-item-wordpress-design-fundamentals {
    flex: 1 1 100%;
  }
}

.learning-section-wordpress-design-fundamentals {
  background: #1e3a5f;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.learning-text-block-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.learning-title-wordpress-design-fundamentals {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.learning-text-wordpress-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.learning-highlight-wordpress-design-fundamentals {
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid #60a5fa;
  margin: 2rem 0;
  border-radius: 4px;
}

.highlight-quote-wordpress-design-fundamentals {
  font-size: 1rem;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  line-height: 1.6;
}

.learning-image-block-wordpress-design-fundamentals {
  flex: 1 1 50%;
  max-width: 50%;
}

.learning-image-wordpress-design-fundamentals {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .learning-content-wordpress-design-fundamentals {
    flex-direction: column;
  }

  .learning-text-block-wordpress-design-fundamentals,
  .learning-image-block-wordpress-design-fundamentals {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-wordpress-design-fundamentals {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.disclaimer-content-wordpress-design-fundamentals {
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.disclaimer-title-wordpress-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
}

.disclaimer-text-wordpress-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
  margin: 0;
}

.related-section-wordpress-design-fundamentals {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-wordpress-design-fundamentals {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-wordpress-design-fundamentals {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.related-cards-wordpress-design-fundamentals {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-wordpress-design-fundamentals {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-card-wordpress-design-fundamentals:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.12);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.related-card-image-wordpress-design-fundamentals {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-img-wordpress-design-fundamentals {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-wordpress-design-fundamentals {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-wordpress-design-fundamentals {
  font-size: 1.125rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.related-card-text-wordpress-design-fundamentals {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #bfdbfe;
  margin: 0;
}

.related-card-link-wordpress-design-fundamentals {
  font-size: 0.875rem;
  font-weight: 600;
  color: #60a5fa;
  display: inline-block;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.related-card-wordpress-design-fundamentals:hover .related-card-link-wordpress-design-fundamentals {
  color: #bfdbfe;
}

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

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

  .intro-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .fundamentals-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .design-principles-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .features-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .practical-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .tips-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .learning-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .disclaimer-section-wordpress-design-fundamentals {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }

  .related-section-wordpress-design-fundamentals {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 320px) {
  .hero-stats-wordpress-design-fundamentals {
    flex-direction: column;
    align-items: flex-start;
  }

  .stat-item-wordpress-design-fundamentals {
    width: 100%;
  }
}

.main-responsive-design-wordpress {
  width: 100%;
  background: #0c1929;
}

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

.hero-section-responsive-design-wordpress {
  width: 100%;
  background: #0c1929;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.breadcrumbs-responsive-design-wordpress {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-responsive-design-wordpress a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-responsive-design-wordpress a:hover {
  color: #93c5fd;
}

.breadcrumbs-responsive-design-wordpress span {
  color: #7c8ba3;
}

.hero-content-responsive-design-wordpress {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.hero-text-block-responsive-design-wordpress {
  flex: 1 1 300px;
  min-width: 280px;
}

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

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

.article-meta-responsive-design-wordpress {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.meta-badge-responsive-design-wordpress {
  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: clamp(0.8rem, 1vw, 0.9rem);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-responsive-design-wordpress i {
  color: #3b82f6;
}

.hero-image-block-responsive-design-wordpress {
  flex: 1 1 300px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .hero-content-responsive-design-wordpress {
    flex-direction: column;
  }

  .hero-text-block-responsive-design-wordpress,
  .hero-image-block-responsive-design-wordpress {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.introduction-section-responsive-design-wordpress {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.introduction-content-responsive-design-wordpress {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.introduction-text-responsive-design-wordpress {
  flex: 1 1 300px;
  min-width: 280px;
}

.introduction-title-responsive-design-wordpress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.introduction-description-responsive-design-wordpress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.introduction-image-responsive-design-wordpress {
  flex: 1 1 300px;
  min-width: 280px;
}

.introduction-image-img-responsive-design-wordpress {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .introduction-content-responsive-design-wordpress {
    flex-direction: column;
  }

  .introduction-text-responsive-design-wordpress,
  .introduction-image-responsive-design-wordpress {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.principles-section-responsive-design-wordpress {
  width: 100%;
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.principles-header-responsive-design-wordpress {
  text-align: center;
  margin-bottom: 3rem;
}

.principles-tag-responsive-design-wordpress {
  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: 500;
  margin-bottom: 1rem;
}

.principles-title-responsive-design-wordpress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.principles-subtitle-responsive-design-wordpress {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.principles-steps-responsive-design-wordpress {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.principles-step-responsive-design-wordpress {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

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

.principles-step-content-responsive-design-wordpress {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.principles-step-title-responsive-design-wordpress {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.principles-step-text-responsive-design-wordpress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #bfdbfe;
}

.principles-image-responsive-design-wordpress {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.principles-image-img-responsive-design-wordpress {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

@media (max-width: 768px) {
  .principles-step-responsive-design-wordpress {
    flex-direction: column;
    align-items: flex-start;
  }

  .principles-step-number-responsive-design-wordpress {
    min-width: auto;
  }
}

.implementation-section-responsive-design-wordpress {
  width: 100%;
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.implementation-content-responsive-design-wordpress {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-responsive-design-wordpress {
  flex: 1 1 300px;
  min-width: 280px;
}

.implementation-title-responsive-design-wordpress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.implementation-description-responsive-design-wordpress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-responsive-design-wordpress {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f1f5f9;
  margin: 2rem 0;
  border-radius: 8px;
}

.featured-quote-text-responsive-design-wordpress {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-author-responsive-design-wordpress {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.implementation-image-responsive-design-wordpress {
  flex: 1 1 300px;
  min-width: 280px;
}

.implementation-image-img-responsive-design-wordpress {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .implementation-content-responsive-design-wordpress {
    flex-direction: column;
  }

  .implementation-text-responsive-design-wordpress,
  .implementation-image-responsive-design-wordpress {
    flex: 1 1 100%;
    min-width: 100%;
  }
}

.techniques-section-responsive-design-wordpress {
  width: 100%;
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.techniques-header-responsive-design-wordpress {
  text-align: center;
  margin-bottom: 3rem;
}

.techniques-tag-responsive-design-wordpress {
  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: 500;
  margin-bottom: 1rem;
}

.techniques-title-responsive-design-wordpress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.techniques-cards-responsive-design-wordpress {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 3rem;
}

.techniques-card-responsive-design-wordpress {
  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;
}

.techniques-card-responsive-design-wordpress:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.techniques-card-icon-responsive-design-wordpress {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.75rem;
}

.techniques-card-title-responsive-design-wordpress {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.techniques-card-text-responsive-design-wordpress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
  color: #bfdbfe;
}

.techniques-image-responsive-design-wordpress {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.techniques-image-img-responsive-design-wordpress {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

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

.conclusion-section-responsive-design-wordpress {
  width: 100%;
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.conclusion-content-responsive-design-wordpress {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.conclusion-title-responsive-design-wordpress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-responsive-design-wordpress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-responsive-design-wordpress {
  background: #f1f5f9;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  margin: 2rem 0;
}

.conclusion-cta-title-responsive-design-wordpress {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-responsive-design-wordpress {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #475569;
  margin-bottom: 1.5rem;
}

.conclusion-cta-responsive-design-wordpress .btn {
  margin-top: 1rem;
}

.conclusion-image-responsive-design-wordpress {
  flex: 1 1 300px;
  min-width: 280px;
}

.conclusion-image-img-responsive-design-wordpress {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: block;
}

@media (max-width: 768px) {
  .conclusion-content-responsive-design-wordpress {
    flex-direction: column;
  }

  .conclusion-image-responsive-design-wordpress {
    flex: 1 1 100%;
    min-width: 100%;
    order: -1;
  }
}

.related-section-responsive-design-wordpress {
  width: 100%;
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-header-responsive-design-wordpress {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-responsive-design-wordpress {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-responsive-design-wordpress {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-responsive-design-wordpress {
  flex: 1 1 300px;
  max-width: 380px;
  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: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.related-card-responsive-design-wordpress:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.related-card-image-responsive-design-wordpress {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: rgba(59, 130, 246, 0.1);
}

.related-card-img-responsive-design-wordpress {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-responsive-design-wordpress {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.related-card-title-responsive-design-wordpress {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-responsive-design-wordpress {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  line-height: 1.6;
  color: #bfdbfe;
}

.related-card-link-responsive-design-wordpress {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: 0.5rem;
}

.related-card-link-responsive-design-wordpress:hover {
  color: #93c5fd;
}

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

.disclaimer-section-responsive-design-wordpress {
  width: 100%;
  background: #0f172a;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.disclaimer-content-responsive-design-wordpress {
  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-responsive-design-wordpress {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #60a5fa;
  margin-bottom: 1rem;
}

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

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

.btn-primary {
  background: #3b82f6;
  color: #0f172a;
  border-color: #3b82f6;
}

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

@media (max-width: 768px) {
  .hero-content-responsive-design-wordpress,
  .introduction-content-responsive-design-wordpress,
  .implementation-content-responsive-design-wordpress,
  .conclusion-content-responsive-design-wordpress {
    flex-direction: column;
  }

  .hero-text-block-responsive-design-wordpress,
  .hero-image-block-responsive-design-wordpress,
  .introduction-text-responsive-design-wordpress,
  .introduction-image-responsive-design-wordpress,
  .implementation-text-responsive-design-wordpress,
  .implementation-image-responsive-design-wordpress,
  .conclusion-image-responsive-design-wordpress {
    flex: 1 1 100%;
    min-width: 100%;
  }

  .conclusion-content-responsive-design-wordpress {
    flex-direction: column-reverse;
  }
}

@media (max-width: 1024px) {
  .related-card-responsive-design-wordpress {
    flex: 1 1 calc(50% - 0.75rem);
    max-width: none;
  }
}

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

.main-wordpress-performance-seo {
  width: 100%;
  background: #0c1929;
  color: #bfdbfe;
}

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

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

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

.hero-text-wrapper-wordpress-performance-seo {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-wordpress-performance-seo {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-wordpress-performance-seo {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.hero-meta-wordpress-performance-seo {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.5rem 0;
}

.meta-badge-wordpress-performance-seo {
  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;
}

.meta-badge-wordpress-performance-seo i {
  font-size: 0.875rem;
}

.hero-stats-wordpress-performance-seo {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  flex-wrap: wrap;
  margin-top: 1rem;
}

.stat-item-wordpress-performance-seo {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-wordpress-performance-seo {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.stat-label-wordpress-performance-seo {
  font-size: 0.875rem;
  color: #7c8ba3;
  font-weight: 500;
}

.hero-image-wrapper-wordpress-performance-seo {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-wordpress-performance-seo {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.breadcrumbs-wordpress-performance-seo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.breadcrumbs-wordpress-performance-seo a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-wordpress-performance-seo a:hover {
  color: #38bdf8;
}

.breadcrumbs-wordpress-performance-seo span {
  color: #7c8ba3;
}

@media (max-width: 768px) {
  .hero-content-wordpress-performance-seo {
    flex-direction: column;
  }

  .hero-text-wrapper-wordpress-performance-seo,
  .hero-image-wrapper-wordpress-performance-seo {
    flex: 1 1 100%;
  }

  .hero-stats-wordpress-performance-seo {
    gap: 1rem;
  }
}

.introduction-section-wordpress-performance-seo {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #162d50;
  position: relative;
  overflow: hidden;
}

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

.intro-text-wordpress-performance-seo {
  flex: 1 1 50%;
}

.intro-title-wordpress-performance-seo {
  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-wordpress-performance-seo {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-wordpress-performance-seo {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.intro-image-element-wordpress-performance-seo {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-wordpress-performance-seo {
    flex-direction: column;
  }

  .intro-text-wordpress-performance-seo,
  .intro-image-wordpress-performance-seo {
    flex: 1 1 100%;
  }
}

.performance-section-wordpress-performance-seo {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  position: relative;
  overflow: hidden;
}

.performance-header-wordpress-performance-seo {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-wordpress-performance-seo {
  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;
  margin-bottom: 1rem;
}

.performance-title-wordpress-performance-seo {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.performance-subtitle-wordpress-performance-seo {
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.performance-steps-wordpress-performance-seo {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.performance-step-wordpress-performance-seo {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.performance-step-wordpress-performance-seo:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

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

.performance-step-content-wordpress-performance-seo {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.performance-step-title-wordpress-performance-seo {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.performance-step-text-wordpress-performance-seo {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .performance-step-wordpress-performance-seo {
    flex-direction: column;
    gap: 1rem;
  }

  .performance-step-number-wordpress-performance-seo {
    font-size: 1.75rem;
    min-width: auto;
  }
}

.seo-section-wordpress-performance-seo {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #1e3a5f;
  position: relative;
  overflow: hidden;
}

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

.seo-text-block-wordpress-performance-seo {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.seo-section-title-wordpress-performance-seo {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.seo-section-text-wordpress-performance-seo {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.seo-quote-wordpress-performance-seo {
  padding: 1.5rem 2rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin: 1rem 0;
}

.seo-quote-text-wordpress-performance-seo {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #ffffff;
  font-style: italic;
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.seo-quote-author-wordpress-performance-seo {
  font-size: 0.875rem;
  color: #7c8ba3;
  font-style: normal;
}

.seo-image-block-wordpress-performance-seo {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.seo-image-element-wordpress-performance-seo {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

@media (max-width: 768px) {
  .seo-content-wrapper-wordpress-performance-seo {
    flex-direction: column;
  }

  .seo-text-block-wordpress-performance-seo,
  .seo-image-block-wordpress-performance-seo {
    flex: 1 1 100%;
  }
}

.tools-section-wordpress-performance-seo {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  position: relative;
  overflow: hidden;
}

.tools-header-wordpress-performance-seo {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-title-wordpress-performance-seo {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.tools-cards-wordpress-performance-seo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2rem);
}

.tools-card-wordpress-performance-seo {
  flex: 1 1 300px;
  max-width: 380px;
  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: 12px;
  transition: all 0.3s ease;
}

.tools-card-wordpress-performance-seo:hover {
  transform: translateY(-4px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

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

.tools-card-title-wordpress-performance-seo {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: #ffffff;
}

.tools-card-text-wordpress-performance-seo {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.7;
}

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

.implementation-section-wordpress-performance-seo {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #162d50;
  position: relative;
  overflow: hidden;
}

.implementation-content-wrapper-wordpress-performance-seo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
}

.implementation-image-block-wordpress-performance-seo {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.implementation-image-element-wordpress-performance-seo {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.implementation-text-block-wordpress-performance-seo {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.implementation-title-wordpress-performance-seo {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.implementation-text-wordpress-performance-seo {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.implementation-checklist-wordpress-performance-seo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist-item-wordpress-performance-seo {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.9375rem;
  color: #bfdbfe;
}

.checklist-item-wordpress-performance-seo i {
  color: #3b82f6;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.checklist-text-wordpress-performance-seo {
  flex: 1;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .implementation-content-wrapper-wordpress-performance-seo {
    flex-direction: column;
  }

  .implementation-image-block-wordpress-performance-seo,
  .implementation-text-block-wordpress-performance-seo {
    flex: 1 1 100%;
  }
}

.conclusion-section-wordpress-performance-seo {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0c1929;
  position: relative;
  overflow: hidden;
}

.conclusion-content-wordpress-performance-seo {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-wordpress-performance-seo {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

.conclusion-text-wordpress-performance-seo {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-cta-box-wordpress-performance-seo {
  padding: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  border-radius: 16px;
  text-align: center;
  margin-top: 2rem;
}

.cta-title-wordpress-performance-seo {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-wordpress-performance-seo {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #e0e0e0;
  margin-bottom: 1.5rem;
}

.btn-cta-wordpress-performance-seo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: #0c1929;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
}

.btn-cta-wordpress-performance-seo:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.related-section-wordpress-performance-seo {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #162d50;
  position: relative;
  overflow: hidden;
}

.related-header-wordpress-performance-seo {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-wordpress-performance-seo {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.related-subtitle-wordpress-performance-seo {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  color: #bfdbfe;
}

.related-cards-wrapper-wordpress-performance-seo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-card-wordpress-performance-seo {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.related-card-wordpress-performance-seo:hover {
  transform: translateY(-4px);
}

.related-card-image-wordpress-performance-seo {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 12px;
}

.related-card-image-element-wordpress-performance-seo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-wordpress-performance-seo:hover .related-card-image-element-wordpress-performance-seo {
  transform: scale(1.05);
}

.related-card-content-wordpress-performance-seo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0 0.5rem;
}

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

.related-card-description-wordpress-performance-seo {
  font-size: 0.875rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.related-card-link-wordpress-performance-seo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  transition: color 0.3s ease;
}

.related-card-link-wordpress-performance-seo:hover {
  color: #38bdf8;
}

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

.disclaimer-section-wordpress-performance-seo {
  padding: clamp(2rem, 4vw, 4rem) 0;
  background: #0c1929;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
  overflow: hidden;
}

.disclaimer-content-wordpress-performance-seo {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.disclaimer-text-wordpress-performance-seo {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .main-wordpress-performance-seo {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-wordpress-performance-seo {
    padding: 6rem 0;
  }

  .introduction-section-wordpress-performance-seo,
  .performance-section-wordpress-performance-seo,
  .seo-section-wordpress-performance-seo,
  .tools-section-wordpress-performance-seo,
  .implementation-section-wordpress-performance-seo,
  .conclusion-section-wordpress-performance-seo,
  .related-section-wordpress-performance-seo {
    padding: 6rem 0;
  }
}

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

.hero-section-wordpress-performance-seo {
  animation: fadeInUp 0.6s ease-out;
}

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

.main-wordpress-theme-customization {
  width: 100%;
}

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

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

.hero-text-block-wordpress-theme-customization {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-wordpress-theme-customization {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.meta-badge-wordpress-theme-customization {
  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: #bfdbfe;
}

.meta-badge-wordpress-theme-customization i {
  color: #3b82f6;
  font-size: 0.75rem;
}

.hero-stats-wordpress-theme-customization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
}

.stat-item-wordpress-theme-customization {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-wordpress-theme-customization {
  font-size: 0.875rem;
  color: #7c8ba3;
}

.hero-image-block-wordpress-theme-customization {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-wordpress-theme-customization {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

.introduction-section-wordpress-theme-customization {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-wordpress-theme-customization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.intro-text-wordpress-theme-customization {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-image-wordpress-theme-customization {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-img-wordpress-theme-customization {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-content-wordpress-theme-customization,
  .intro-wrapper-wordpress-theme-customization {
    flex-direction: column;
  }

  .hero-text-block-wordpress-theme-customization,
  .hero-image-block-wordpress-theme-customization,
  .intro-text-wordpress-theme-customization,
  .intro-image-wordpress-theme-customization {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-wordpress-theme-customization {
    gap: clamp(1.5rem, 3vw, 2rem);
  }
}

.process-section-wordpress-theme-customization {
  background: #162d50;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.process-tag-wordpress-theme-customization {
  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: 500;
  margin-bottom: 1rem;
}

.process-title-wordpress-theme-customization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.process-subtitle-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.process-step-wordpress-theme-customization {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.process-step-content-wordpress-theme-customization {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step-title-wordpress-theme-customization {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.process-step-text-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  line-height: 1.7;
}

.features-section-wordpress-theme-customization {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.features-tag-wordpress-theme-customization {
  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: 500;
  margin-bottom: 1rem;
}

.features-title-wordpress-theme-customization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.features-card-wordpress-theme-customization:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.features-card-icon-wordpress-theme-customization {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
}

.features-card-title-wordpress-theme-customization {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.features-card-text-wordpress-theme-customization {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

.content-section-one-wordpress-theme-customization,
.content-section-two-wordpress-theme-customization,
.content-section-three-wordpress-theme-customization {
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-section-one-wordpress-theme-customization,
.content-section-three-wordpress-theme-customization {
  background: #f8fafc;
}

.content-section-two-wordpress-theme-customization {
  background: #ffffff;
}

.content-wrapper-one-wordpress-theme-customization,
.content-wrapper-two-wordpress-theme-customization,
.content-wrapper-three-wordpress-theme-customization {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.content-text-one-wordpress-theme-customization,
.content-text-two-wordpress-theme-customization,
.content-text-three-wordpress-theme-customization {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-wordpress-theme-customization,
.content-image-two-wordpress-theme-customization,
.content-image-three-wordpress-theme-customization {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-wordpress-theme-customization,
.content-title-two-wordpress-theme-customization,
.content-title-three-wordpress-theme-customization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.content-section-one-wordpress-theme-customization .content-title-one-wordpress-theme-customization,
.content-section-three-wordpress-theme-customization .content-title-three-wordpress-theme-customization {
  color: #0f172a;
}

.content-section-two-wordpress-theme-customization .content-title-two-wordpress-theme-customization {
  color: #0f172a;
}

.content-description-one-wordpress-theme-customization,
.content-description-two-wordpress-theme-customization,
.content-description-three-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-section-one-wordpress-theme-customization .content-description-one-wordpress-theme-customization,
.content-section-three-wordpress-theme-customization .content-description-three-wordpress-theme-customization {
  color: #64748b;
}

.content-section-two-wordpress-theme-customization .content-description-two-wordpress-theme-customization {
  color: #64748b;
}

.content-list-one-wordpress-theme-customization,
.content-list-two-wordpress-theme-customization,
.content-list-three-wordpress-theme-customization {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.content-list-one-wordpress-theme-customization li,
.content-list-two-wordpress-theme-customization li,
.content-list-three-wordpress-theme-customization li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.content-section-one-wordpress-theme-customization .content-list-one-wordpress-theme-customization li,
.content-section-three-wordpress-theme-customization .content-list-three-wordpress-theme-customization li {
  color: #64748b;
}

.content-section-two-wordpress-theme-customization .content-list-two-wordpress-theme-customization li {
  color: #64748b;
}

.content-image-img-one-wordpress-theme-customization,
.content-image-img-two-wordpress-theme-customization,
.content-image-img-three-wordpress-theme-customization {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  max-width: 100%;
}

@media (max-width: 768px) {
  .content-wrapper-one-wordpress-theme-customization,
  .content-wrapper-two-wordpress-theme-customization,
  .content-wrapper-three-wordpress-theme-customization {
    flex-direction: column;
  }

  .content-text-one-wordpress-theme-customization,
  .content-text-two-wordpress-theme-customization,
  .content-text-three-wordpress-theme-customization,
  .content-image-one-wordpress-theme-customization,
  .content-image-two-wordpress-theme-customization,
  .content-image-three-wordpress-theme-customization {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.featured-quote-wordpress-theme-customization {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 0;
  border-radius: 8px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-text-wordpress-theme-customization {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.quote-author-wordpress-theme-customization {
  font-size: 0.9375rem;
  color: #bfdbfe;
  font-style: normal;
}

.best-practices-section-wordpress-theme-customization {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-header-wordpress-theme-customization {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.best-practices-tag-wordpress-theme-customization {
  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: 500;
  margin-bottom: 1rem;
}

.best-practices-title-wordpress-theme-customization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.best-practices-subtitle-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.best-practices-grid-wordpress-theme-customization {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.best-practice-item-wordpress-theme-customization {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.best-practice-item-wordpress-theme-customization:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.best-practice-number-wordpress-theme-customization {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
}

.best-practice-title-wordpress-theme-customization {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
}

.best-practice-text-wordpress-theme-customization {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #64748b;
}

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

.conclusion-content-wordpress-theme-customization {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-wordpress-theme-customization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.conclusion-text-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  text-align: center;
}

.conclusion-cta-wordpress-theme-customization {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-wordpress-theme-customization {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}

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

.disclaimer-section-wordpress-theme-customization {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem) 0;
  overflow: hidden;
}

.disclaimer-content-wordpress-theme-customization {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-wordpress-theme-customization {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.disclaimer-text-wordpress-theme-customization {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

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

.related-header-wordpress-theme-customization {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 4rem);
}

.related-title-wordpress-theme-customization {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.related-subtitle-wordpress-theme-customization {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-wordpress-theme-customization {
  flex: 1 1 300px;
  max-width: 380px;
  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: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  text-decoration: none;
}

.related-card-wordpress-theme-customization:hover {
  transform: translateY(-4px);
  border-color: #3b82f6;
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.related-card-image-wordpress-theme-customization {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-wordpress-theme-customization img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-wordpress-theme-customization:hover .related-card-image-wordpress-theme-customization img {
  transform: scale(1.05);
}

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

.related-card-title-wordpress-theme-customization {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

.related-card-text-wordpress-theme-customization {
  font-size: 0.875rem;
  color: #bfdbfe;
  line-height: 1.6;
}

.related-card-link-wordpress-theme-customization {
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 600;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 0.5rem;
}

.related-card-wordpress-theme-customization:hover .related-card-link-wordpress-theme-customization {
  color: #60a5fa;
}

.breadcrumbs-wordpress-theme-customization {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
}

.breadcrumbs-wordpress-theme-customization a {
  color: #60a5fa;
  transition: color 0.3s ease;
}

.breadcrumbs-wordpress-theme-customization a:hover {
  color: #bfdbfe;
}

.breadcrumbs-wordpress-theme-customization span {
  color: #7c8ba3;
}

@media (min-width: 768px) {
  .hero-section-wordpress-theme-customization,
  .introduction-section-wordpress-theme-customization,
  .process-section-wordpress-theme-customization,
  .features-section-wordpress-theme-customization,
  .content-section-one-wordpress-theme-customization,
  .content-section-two-wordpress-theme-customization,
  .content-section-three-wordpress-theme-customization,
  .quote-section-wordpress-theme-customization,
  .best-practices-section-wordpress-theme-customization,
  .conclusion-section-wordpress-theme-customization,
  .disclaimer-section-wordpress-theme-customization,
  .related-section-wordpress-theme-customization {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-wordpress-theme-customization,
  .introduction-section-wordpress-theme-customization,
  .process-section-wordpress-theme-customization,
  .features-section-wordpress-theme-customization,
  .content-section-one-wordpress-theme-customization,
  .content-section-two-wordpress-theme-customization,
  .content-section-three-wordpress-theme-customization,
  .quote-section-wordpress-theme-customization,
  .best-practices-section-wordpress-theme-customization,
  .conclusion-section-wordpress-theme-customization,
  .disclaimer-section-wordpress-theme-customization,
  .related-section-wordpress-theme-customization {
    padding: clamp(5rem, 8vw, 6rem) 0;
  }
}

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

strong {
  font-weight: 600;
  color: inherit;
}

: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: #7c8ba3;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #60a5fa;
  --color-accent-alt: #06b6d4;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.25);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
}

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

.webcraft-about-main {
  width: 100%;
}

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

section {
  width: 100%;
  overflow: hidden;
}

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

.hero-wordpress-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-wordpress-title-about {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-wordpress-subtitle-about {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

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

.hero-stat-item-about {
  flex: 0 1 auto;
}

.hero-stat-number-about {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  display: block;
  line-height: 1;
}

.hero-stat-label-about {
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-wordpress-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-xl);
  display: block;
  margin-top: clamp(1rem, 3vw, 2rem);
}

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

@media (min-width: 1024px) {
  .hero-wordpress-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .hero-wordpress-content-about {
    gap: 3rem;
  }
}

.foundation-section-about {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.foundation-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.foundation-header-about {
  text-align: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

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

.foundation-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.foundation-description-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.foundation-blocks-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.foundation-block-about {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.foundation-block-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.foundation-block-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

.foundation-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
}

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

  .foundation-blocks-about {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .foundation-blocks-about {
    gap: 2.5rem;
  }
}

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

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 4rem);
}

.approach-header-about {
  max-width: 750px;
}

.approach-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.approach-intro-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

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

.approach-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

.approach-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

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

.approach-step-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.approach-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1rem, 3vw, 2rem);
}

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

  .approach-content-about {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .approach-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.expertise-section-about {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.expertise-header-about {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

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

.expertise-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.expertise-subtitle-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.expertise-cards-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.expertise-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-card-about:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.expertise-card-title-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: #0f172a;
}

.expertise-card-text-about {
  font-size: 0.9375rem;
  color: #64748b;
  line-height: 1.7;
}

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

  .expertise-cards-about {
    justify-content: space-between;
  }

  .expertise-card-about {
    flex: 1 1 300px;
  }
}

@media (min-width: 1024px) {
  .expertise-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

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

.vision-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.vision-quote-about {
  padding: clamp(2rem, 5vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.vision-quote-text-about {
  font-size: clamp(1.25rem, 3vw, 1.625rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}

.vision-quote-author-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  font-style: normal;
}

.vision-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-top: clamp(1rem, 3vw, 2rem);
  line-height: 1.2;
}

.vision-text-about {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.vision-cta-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  justify-content: center;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}

.vision-btn-about {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(1.75rem, 4vw, 2.5rem);
  background: var(--color-primary);
  color: #0f172a;
  border-radius: var(--radius-lg);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vision-btn-about:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.vision-btn-secondary-about {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.vision-btn-secondary-about:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

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

@media (min-width: 1024px) {
  .vision-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }
}

.disclaimer-section-about {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-about {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.disclaimer-icon-about {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

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

.disclaimer-text-about {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  text-align: justify;
}

@media (min-width: 768px) {
  .disclaimer-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (min-width: 1024px) {
  .disclaimer-section-about {
    padding: clamp(3.5rem, 10vw, 6rem) 0;
  }
}

.legal-hub {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.legal-hub .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: clamp(1rem, 5vw, 2rem);
}

.legal-hub-hero {
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

.legal-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-hub-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.legal-hub-hero-description {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 700px;
}

.legal-hub-content {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

.legal-hub-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-hub-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
  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;
}

.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.7;
  padding-left: 1.5rem;
  position: relative;
}

.legal-hub-section li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.legal-hub-contact {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.legal-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-hub-contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.legal-hub-contact-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.legal-hub-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.legal-hub-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-hub-contact-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-hub-contact-value {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .legal-hub-hero {
    padding: 5rem 0;
  }

  .legal-hub-content {
    padding: 5rem 0;
  }

  .legal-hub-contact {
    padding: 5rem 0;
  }

  .legal-hub-contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .legal-hub-contact-item:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .legal-hub-hero {
    padding: 6rem 0;
  }

  .legal-hub-content {
    padding: 6rem 0;
  }

  .legal-hub-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-lg) 0;
}

.thank-section {
  width: 100%;
  background: var(--color-bg-primary);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 15vw, 120px);
  height: clamp(80px, 15vw, 120px);
  background: rgba(59, 130, 246, 0.15);
  border-radius: 50%;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  margin-bottom: var(--space-md);
}

.thank-icon i {
  font-size: clamp(2.5rem, 8vw, 4rem);
  color: var(--color-primary);
}

.thank-section h1 {
  color: var(--color-text-primary);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-secondary);
  font-size: clamp(1.125rem, 2.5vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-description {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-next {
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-top: var(--space-md);
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

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

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

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .thank-content {
    gap: clamp(2rem, 5vw, 3rem);
  }

  .thank-icon {
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 6vw, 3.5rem);
  }

  .btn-primary:hover {
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 6rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-icon {
    animation: none;
    opacity: 1;
    transform: scale(1);
  }

  .btn {
    transition: none;
  }
}

@media print {
  .thank-page {
    min-height: auto;
    padding: 0;
  }

  .thank-section {
    min-height: auto;
  }

  .btn {
    display: none;
  }
}

.error-page {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  font-family: var(--font-primary);
}

.error-section {
  width: 100%;
  background: var(--color-bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.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);
  position: relative;
  z-index: 1;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: clamp(0.5rem, 2vw, 1.5rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.error-decoration {
  position: absolute;
  border-radius: 50%;
  animation: orbit 8s linear infinite;
}

.error-decoration-1 {
  width: 80px;
  height: 80px;
  border: 2px solid var(--color-primary);
  top: -40px;
  right: -40px;
  animation-direction: normal;
}

.error-decoration-2 {
  width: 60px;
  height: 60px;
  border: 2px dashed var(--color-accent-alt);
  bottom: -30px;
  left: -30px;
  animation-direction: reverse;
  animation-duration: 10s;
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 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-size: clamp(0.9375rem, 1.5vw + 0.5rem, 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-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: clamp(1rem, 3vw, 1.5rem);
  width: 100%;
  max-width: 600px;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
}

.suggestion-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 1vw, 0.75rem);
  padding: clamp(0.75rem, 2vw, 1rem);
  border-radius: var(--radius-md);
  background: rgba(59, 130, 246, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.suggestion-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
  transform: translateY(-4px);
}

.suggestion-item i {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--color-primary);
}

.suggestion-item p {
  font-size: clamp(0.75rem, 1vw + 0.3rem, 0.875rem);
  color: var(--color-text-muted);
  line-height: 1.4;
  margin: 0;
}

.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: #000000;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: var(--font-primary);
}

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

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

.error-footer {
  font-size: clamp(0.8125rem, 1vw + 0.3rem, 0.9375rem);
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: clamp(1rem, 2vw, 1.5rem) 0 0 0;
  max-width: 450px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  .error-suggestions {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .suggestion-item:hover {
    transform: translateY(-8px);
  }

  .btn-large:hover {
    transform: translateY(-4px);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-30px);
    }
  }
}

@media (min-width: 1440px) {
  .error-content {
    gap: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-code,
  .error-decoration,
  .suggestion-item,
  .btn-large {
    animation: none;
    transition: none;
  }

  .suggestion-item:hover,
  .btn-large:hover {
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  .error-section {
    background: var(--color-bg-primary);
  }

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

  .error-message {
    color: var(--color-text-secondary);
  }
}

@media print {
  .error-decoration,
  .btn-large {
    display: none;
  }

  .error-section {
    min-height: auto;
    padding: 2rem 0;
  }
}