
    @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-dark: #0c1929;
  --color-bg-secondary-dark: #162d50;
  --color-bg-tertiary-dark: #1e3a5f;
  
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  
  
  --color-bg-card-dark: rgba(59, 130, 246, 0.1);
  --color-bg-card-light: #ffffff;
  
  
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #bfdbfe;
  --color-text-muted-dark: #93c5fd;
  
  
  --color-text-primary-light: #0c1929;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #0ea5e9;
  
  
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', 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: 24px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  
  
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 1rem;
}

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

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

h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  letter-spacing: -0.3px;
}

h3 {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  letter-spacing: -0.2px;
}

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

h5, h6 {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
}

p, li, span, a {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

a {
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

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

.btn-primary {
  background: var(--color-primary);
  color: #000000;
  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-outline-light {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

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

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

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

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

.dark-section h1 {
  color: #ffffff;
}

.dark-section h2 {
  color: #ffffff;
}

.dark-section h3 {
  color: #ffffff;
}

.dark-section h4 {
  color: #ffffff;
}

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

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

.dark-section a:hover {
  color: #ffffff;
}

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

.light-section h1 {
  color: #0c1929;
}

.light-section h2 {
  color: #0c1929;
}

.light-section h3 {
  color: #0c1929;
}

.light-section h4 {
  color: #0c1929;
}

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

.light-section a {
  color: var(--color-primary);
}

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

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

.light-section-alt h1 {
  color: #0c1929;
}

.light-section-alt h2 {
  color: #0c1929;
}

.light-section-alt h3 {
  color: #0c1929;
}

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

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

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

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

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

.card-light {
  background: var(--color-bg-card-light);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

.card-light:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  margin: 0;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
}

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

.grid-cols-1 {
  grid-template-columns: 1fr;
}

.grid-cols-2 {
  grid-template-columns: 1fr;
}

.grid-cols-3 {
  grid-template-columns: 1fr;
}

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

@media (min-width: 1024px) {
  .grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

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

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

.accent-line {
  width: clamp(2rem, 10vw, 4rem);
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  border-radius: 2px;
  margin: var(--space-md) 0;
}

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

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(59, 130, 246, 0.2);
  color: var(--color-primary-light);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-light {
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-color: rgba(59, 130, 246, 0.2);
}

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

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

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

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

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.animate-fade-in {
  animation: fadeIn var(--transition-slow) ease-out;
}

.animate-fade-in-up {
  animation: fadeInUp var(--transition-slow) ease-out;
}

.animate-slide-in-left {
  animation: slideInLeft var(--transition-slow) ease-out;
}

.animate-slide-in-right {
  animation: slideInRight var(--transition-slow) ease-out;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.hide-mobile {
  display: none;
}

.hide-tablet {
  display: block;
}

.hide-desktop {
  display: block;
}

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

@media (min-width: 1024px) {
  .hide-desktop {
    display: none;
  }
}

input,
textarea,
select {
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  padding: 0.875rem 1rem;
  width: 100%;
  transition: all var(--transition-base);
}

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

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

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

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

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.text-bold {
  font-weight: 700;
}

.text-semibold {
  font-weight: 600;
}

.text-medium {
  font-weight: 500;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-50 {
  opacity: 0.5;
}

.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); }
.mt-2xl { margin-top: var(--space-2xl); }
.mt-3xl { margin-top: var(--space-3xl); }

.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); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.pt-xs { padding-top: var(--space-xs); }
.pt-sm { padding-top: var(--space-sm); }
.pt-md { padding-top: var(--space-md); }
.pt-lg { padding-top: var(--space-lg); }

.pb-xs { padding-bottom: var(--space-xs); }
.pb-sm { padding-bottom: var(--space-sm); }
.pb-md { padding-bottom: var(--space-md); }
.pb-lg { padding-bottom: var(--space-lg); }

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.5rem;
}

.icon-sm {
  width: 1rem;
  height: 1rem;
  font-size: 1rem;
}

.icon-lg {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 2.5rem;
}

.icon-xl {
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
}

@media (max-width: 767px) {
  .flex-reverse-mobile {
    flex-direction: column-reverse;
  }
  
  .hide-on-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-on-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-on-desktop {
    display: none !important;
  }
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary-light);
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-hover);
}

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

::-moz-selection {
  background: var(--color-primary);
  color: #000000;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800&display=swap');

  .header-mobile-flow {
    position: relative;
    background: var(--color-bg-primary-dark);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    z-index: 1000;
  }

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

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

  .header-mobile-flow-brand:hover {
    opacity: 0.8;
  }

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

  .header-mobile-flow-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
  }

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

  .header-mobile-flow-nav-link {
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw, 1rem);
    color: #bfdbfe;
    text-decoration: none;
    font-weight: 500;
    transition: color 300ms ease-in-out;
    position: relative;
  }

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

  .header-mobile-flow-nav-link:hover {
    color: #ffffff;
  }

  .header-mobile-flow-nav-link:hover::after {
    width: 100%;
  }

  .header-mobile-flow-cta-button {
    padding: clamp(0.625rem, 1.5vw, 0.875rem) clamp(1.25rem, 3vw, 1.75rem);
    background: var(--color-primary);
    color: #0c1929;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1vw, 1rem);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 300ms ease-in-out;
    white-space: nowrap;
  }

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

  .header-mobile-flow-cta-button:active {
    transform: translateY(0);
  }

  .header-mobile-flow-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.25rem;
    transition: color 300ms ease-in-out;
    padding: 0;
    margin: 0;
  }

  .header-mobile-flow-mobile-toggle:hover {
    color: var(--color-primary);
  }

  .header-mobile-flow-mobile-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .header-mobile-flow-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    height: 100vh;
    background: var(--color-bg-secondary-dark);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

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

  .header-mobile-flow-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    flex-shrink: 0;
  }

  .header-mobile-flow-mobile-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
  }

  .header-mobile-flow-mobile-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #bfdbfe;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease-in-out;
    padding: 0;
    margin: 0;
  }

  .header-mobile-flow-mobile-close:hover {
    color: #ffffff;
  }

  .header-mobile-flow-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .header-mobile-flow-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    padding: 1rem 0;
  }

  .header-mobile-flow-mobile-link {
    padding: 1rem 1.5rem;
    color: #bfdbfe;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    transition: all 300ms ease-in-out;
    border-left: 3px solid transparent;
  }

  .header-mobile-flow-mobile-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #ffffff;
    border-left-color: var(--color-primary);
  }

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

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

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

  .header-mobile-flow-mobile-cta:active {
    transform: translateY(0);
  }

  .header-mobile-flow-mobile-cta:focus-visible {
    outline: 2px solid var(--color-primary-light);
    outline-offset: 2px;
  }

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

    .header-mobile-flow-mobile-toggle {
      display: none;
    }

    .header-mobile-flow-mobile-menu {
      display: none;
    }
  }

  @media (max-width: 768px) {
    .header-mobile-flow-desktop-nav {
      display: none;
    }

    .header-mobile-flow-mobile-toggle {
      display: flex;
    }
  }

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

    

.responsive-design-hub {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-gradient-mesh-index {
  position: absolute;
  top: 50%;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape-left-index {
  position: absolute;
  bottom: 50px;
  left: 5%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-right-index {
  position: absolute;
  top: 100px;
  right: 5%;
  width: 180px;
  height: 180px;
  background: rgba(34, 211, 238, 0.1);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-index {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: rgba(96, 165, 250, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

.hero-content-index {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.hero-title-index {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

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

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

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

.hero-stat-number-index {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

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

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

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

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

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

.btn-secondary-hero-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #60a5fa;
  color: #60a5fa;
}

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

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

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

.featured-shape-two-index {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-glow-index {
  position: absolute;
  bottom: 5%;
  right: 20%;
  width: 150px;
  height: 150px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.featured-header-index {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.featured-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;
}

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

.featured-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 420px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

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

.featured-card-content-index {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.featured-card-title-index {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.featured-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.featured-card-link-index {
  color: #3b82f6;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  display: inline-block;
}

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

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

.btn-outline-featured-index {
  background: transparent;
  color: #3b82f6;
  padding: 0.875rem 2rem;
  border: 2px solid #3b82f6;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 300ms ease;
  display: inline-flex;
  align-items: center;
}

.btn-outline-featured-index:hover {
  background: #3b82f6;
  color: #ffffff;
}

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

.learning-glow-left-index {
  position: absolute;
  top: 5%;
  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;
}

.learning-glow-right-index {
  position: absolute;
  bottom: 10%;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.learning-shape-center-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.learning-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

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

.learning-step-index {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.2);
  transition: all 350ms ease;
}

.learning-step-index:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(96, 165, 250, 0.4);
}

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

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

.learning-step-title-index {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.learning-step-text-index {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
}

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

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

.features-accent-blob-index {
  position: absolute;
  bottom: 15%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 35% 65% 76% 24% / 57% 33% 67% 43%;
  z-index: 1;
  pointer-events: none;
}

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

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

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

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

.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.5rem);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}

.features-subtitle-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

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

.features-card-index {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.features-card-index:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.features-card-icon-index {
  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;
  flex-shrink: 0;
}

.features-card-title-index {
  font-size: clamp(1.125rem, 2vw + 0.4rem, 1.25rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.features-card-text-index {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

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

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

.why-shape-accent-index {
  position: absolute;
  bottom: 5%;
  left: 8%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.why-gradient-mesh-index {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.why-text-block-index {
  flex: 1 1 350px;
  min-width: 0;
}

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

.why-intro-text-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-benefits-index {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-benefit-index {
  display: flex;
  gap: 1rem;
}

.why-benefit-icon-index {
  font-size: 1.5rem;
  color: #3b82f6;
  font-weight: 700;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.why-benefit-text-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.why-benefit-title-index {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.why-benefit-description-index {
  font-size: 0.875rem;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}

.why-image-block-index {
  flex: 1 1 350px;
  min-width: 0;
}

.why-image-index {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

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

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

.contact-glow-accent-index {
  position: absolute;
  top: 10%;
  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;
}

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

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

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

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

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

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

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

.contact-wrapper-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3.5rem);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.contact-form-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

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

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

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

.contact-input-index:focus,
.contact-textarea-index:focus {
  outline: none;
  border-color: rgba(96, 165, 250, 0.5);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

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

.contact-privacy-index {
  font-size: 0.75rem;
  color: #93c5fd;
  margin: 0;
}

.contact-privacy-link-index {
  color: #60a5fa;
  text-decoration: none;
  font-weight: 600;
  transition: color 300ms ease;
}

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

.contact-submit-index {
  width: 100%;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #000000;
  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-info-index {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-block-index {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-info-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
}

.contact-info-list-index {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item-index {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info-icon-index {
  font-size: 1.25rem;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.contact-info-text-index {
  font-size: 0.9375rem;
  color: #bfdbfe;
  line-height: 1.5;
  margin: 0;
}

.contact-faq-block-index {
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: 12px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.contact-faq-title-index {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
}

.contact-faq-item-index {
  margin-bottom: 1.5rem;
}

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

.contact-faq-question-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #60a5fa;
  margin: 0 0 0.5rem 0;
}

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

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

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

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

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

.testimonials-line-index {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

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

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

.testimonials-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;
}

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

.testimonials-quotes-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.testimonial-quote-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: #f8fafc;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-text-index {
  font-size: clamp(0.9375rem, 1.5vw + 0.4rem, 1.125rem);
  font-style: italic;
  color: #334155;
  line-height: 1.7;
  margin: 0;
}

.testimonial-author-index {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author-initial-index {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.testimonial-author-info-index {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-author-name-index {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
}

.testimonial-author-role-index {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.cta-section-index {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.cta-glow-right-index {
  position: absolute;
  right: -80px;
  bottom: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-center-index {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 45% 55% 50% 50% / 55% 45% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.cta-accent-line-index {
  position: absolute;
  bottom: 30%;
  left: 10%;
  width: 180px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.4), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.cta-title-index {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.15;
}

.cta-subtitle-index {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: #bfdbfe;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.btn-primary-cta-index {
  background: #3b82f6;
  color: #000000;
  padding: clamp(0.875rem, 2vw, 1.25rem) clamp(2rem, 5vw, 3rem);
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(0.9375rem, 1.5vw + 0.4rem, 1.125rem);
  border: 2px solid #3b82f6;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

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

.cookie-banner-index {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 3vw, 1.5rem);
  background: #1e293b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

.cookie-banner-text-index {
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9375rem);
  color: #cbd5e1;
  margin: 0;
  max-width: 600px;
  text-align: center;
}

.cookie-banner-buttons-index {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  flex-wrap: wrap;
  justify-content: center;
}

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

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

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

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

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

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

@media (max-width: 768px) {
  .hero-buttons-index {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary-hero-index,
  .btn-secondary-hero-index {
    width: 100%;
  }
  
  .featured-cards-index {
    justify-content: center;
  }
  
  .featured-card-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .hero-buttons-index {
    gap: 1.5rem;
  }
  
  .featured-card-index {
    flex: 1 1 calc(50% - 1rem);
  }
  
  .contact-wrapper-index {
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .featured-card-index {
    flex: 1 1 calc(33.333% - 1.5rem);
    max-width: 100%;
  }
}

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

.btn-primary-hero-index:focus-visible,
.btn-secondary-hero-index:focus-visible,
.contact-submit-index:focus-visible,
.btn-primary-cta-index:focus-visible,
.cookie-btn-accept-index:focus-visible,
.cookie-btn-decline-index:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

    .footer {
    background: var(--color-bg-primary-dark);
    padding: clamp(2.5rem, 6vw, 5rem) 0;
    position: relative;
    overflow: hidden;
  }

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

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

  
  .footer-about-section {
    flex: 1 1 250px;
  }

  .footer-about-title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

  .footer-about-text {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.7;
    color: var(--color-text-secondary-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .footer-nav-section {
    flex: 1 1 200px;
  }

  .footer-nav-title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

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

  .footer-nav-link {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-secondary-dark);
    text-decoration: none;
    transition: color var(--transition-base), transform var(--transition-base);
    display: inline-block;
    position: relative;
  }

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

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

  .footer-contact-title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

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

  .footer-contact-item {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    line-height: 1.6;
    color: var(--color-text-secondary-dark);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .footer-legal-section {
    flex: 1 1 200px;
  }

  .footer-legal-title {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.25rem;
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
  }

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

  .footer-legal-link {
    font-size: clamp(0.875rem, 1vw, 0.9375rem);
    color: var(--color-text-secondary-dark);
    text-decoration: none;
    transition: color var(--transition-base);
    display: inline-block;
  }

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

  
  .footer-copyright-section {
    flex: 1 1 100%;
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    border-top: 1px solid rgba(59, 130, 246, 0.15);
    margin-top: clamp(0.5rem, 2vw, 1rem);
  }

  .footer-copyright-text {
    font-size: clamp(0.8125rem, 0.9vw, 0.875rem);
    color: var(--color-text-muted-dark);
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  @media (min-width: 768px) {
    .footer-content {
      gap: clamp(2.5rem, 5vw, 4rem);
    }

    .footer-about-section {
      flex: 1 1 300px;
    }

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

    .footer-copyright-section {
      flex: 1 1 100%;
    }
  }

  
  @media (max-width: 767px) {
    .footer-content {
      flex-direction: column;
    }

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

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

    .footer-nav-link,
    .footer-legal-link {
      margin-right: 0.5rem;
    }
  }

  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 1;
    pointer-events: none;
  }

  .footer::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
  }

  .footer .container {
    position: relative;
    z-index: 10;
  }

  
  .footer-copyright-section {
    border-top: 1px solid rgba(96, 165, 250, 0.2);
  }

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

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

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

.main-mobile-optimization-techniques {
  width: 100%;
  display: block;
}

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

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

.breadcrumbs-mobile-optimization-techniques {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.875rem;
}

.breadcrumb-link-mobile-optimization-techniques {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-link-mobile-optimization-techniques:hover {
  color: #93c5fd;
  text-decoration: underline;
}

.breadcrumb-separator-mobile-optimization-techniques {
  color: #475569;
}

.breadcrumb-current-mobile-optimization-techniques {
  color: #bfdbfe;
}

.hero-content-mobile-optimization-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.hero-text-wrapper-mobile-optimization-techniques {
  flex: 1 1 300px;
  min-width: 300px;
}

.hero-title-mobile-optimization-techniques {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.meta-badges-mobile-optimization-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.meta-badge-mobile-optimization-techniques i {
  font-size: 0.875rem;
}

.hero-image-wrapper-mobile-optimization-techniques {
  flex: 1 1 300px;
  min-width: 300px;
}

.hero-image-mobile-optimization-techniques {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

.stat-item-mobile-optimization-techniques {
  flex: 0 1 auto;
  text-align: center;
}

.stat-number-mobile-optimization-techniques {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-mobile-optimization-techniques {
  display: block;
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

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

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

.intro-content-mobile-optimization-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-mobile-optimization-techniques {
  flex: 1 1 300px;
  min-width: 300px;
}

.intro-title-mobile-optimization-techniques {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.intro-description-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.intro-image-mobile-optimization-techniques {
  flex: 1 1 300px;
  min-width: 300px;
}

.intro-image-display-mobile-optimization-techniques {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.process-header-mobile-optimization-techniques {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.process-tag-mobile-optimization-techniques {
  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-mobile-optimization-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.process-subtitle-mobile-optimization-techniques {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-mobile-optimization-techniques {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.process-step-mobile-optimization-techniques {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

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

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

.process-step-title-mobile-optimization-techniques {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
}

.process-step-text-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

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

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

.features-header-mobile-optimization-techniques {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.features-tag-mobile-optimization-techniques {
  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-mobile-optimization-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

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

.features-card-mobile-optimization-techniques {
  flex: 1 1 280px;
  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: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-card-mobile-optimization-techniques:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}

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

.features-card-title-mobile-optimization-techniques {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
}

.features-card-text-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.content-section-mobile-optimization-techniques {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

.content-text-mobile-optimization-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-mobile-optimization-techniques {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-description-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.highlight-box-mobile-optimization-techniques {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-mobile-optimization-techniques {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0c1929;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.content-image-mobile-optimization-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-display-mobile-optimization-techniques {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.tips-header-mobile-optimization-techniques {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.tips-title-mobile-optimization-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.tips-subtitle-mobile-optimization-techniques {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

.tips-wrapper-mobile-optimization-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.tips-content-mobile-optimization-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-list-mobile-optimization-techniques {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tips-item-mobile-optimization-techniques {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
}

.tips-item-number-mobile-optimization-techniques {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.tips-item-text-mobile-optimization-techniques {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tips-item-title-mobile-optimization-techniques {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
}

.tips-item-description-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  color: #64748b;
}

.tips-image-mobile-optimization-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.tips-image-display-mobile-optimization-techniques {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advanced-section-mobile-optimization-techniques {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.advanced-content-mobile-optimization-techniques {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.advanced-image-mobile-optimization-techniques {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.advanced-image-display-mobile-optimization-techniques {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.advanced-text-mobile-optimization-techniques {
  flex: 1 1 50%;
  max-width: 50%;
}

.advanced-title-mobile-optimization-techniques {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.advanced-description-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.advanced-checklist-mobile-optimization-techniques {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.checklist-item-mobile-optimization-techniques {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #0c1929;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
}

.checklist-item-mobile-optimization-techniques i {
  color: #3b82f6;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.checklist-text-mobile-optimization-techniques {
  line-height: 1.6;
}

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

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

.conclusion-content-mobile-optimization-techniques {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-mobile-optimization-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.conclusion-text-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.cta-box-mobile-optimization-techniques {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
}

.cta-title-mobile-optimization-techniques {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-description-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-button-mobile-optimization-techniques {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  color: #3b82f6;
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button-mobile-optimization-techniques:hover {
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.related-section-mobile-optimization-techniques {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.related-header-mobile-optimization-techniques {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.related-title-mobile-optimization-techniques {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.related-subtitle-mobile-optimization-techniques {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
}

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

.related-card-mobile-optimization-techniques {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-mobile-optimization-techniques:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-mobile-optimization-techniques {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-img-mobile-optimization-techniques {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-mobile-optimization-techniques {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.related-card-title-mobile-optimization-techniques {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
  line-height: 1.3;
}

.related-card-text-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.related-card-link-mobile-optimization-techniques {
  display: inline-flex;
  align-items: center;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  transition: color 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-mobile-optimization-techniques:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.disclaimer-section-mobile-optimization-techniques {
  background: #ffffff;
  padding: clamp(2rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

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

.disclaimer-content-mobile-optimization-techniques {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.disclaimer-title-mobile-optimization-techniques {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 1rem;
}

.disclaimer-text-mobile-optimization-techniques {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .hero-content-mobile-optimization-techniques,
  .intro-content-mobile-optimization-techniques,
  .content-wrapper-mobile-optimization-techniques,
  .tips-wrapper-mobile-optimization-techniques,
  .advanced-content-mobile-optimization-techniques {
    flex-direction: column;
  }

  .content-text-mobile-optimization-techniques,
  .content-image-mobile-optimization-techniques,
  .tips-content-mobile-optimization-techniques,
  .tips-image-mobile-optimization-techniques,
  .advanced-image-mobile-optimization-techniques,
  .advanced-text-mobile-optimization-techniques,
  .intro-text-mobile-optimization-techniques,
  .intro-image-mobile-optimization-techniques,
  .hero-text-wrapper-mobile-optimization-techniques,
  .hero-image-wrapper-mobile-optimization-techniques {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .advanced-image-mobile-optimization-techniques {
    order: 0;
  }

  .related-card-mobile-optimization-techniques {
    flex: 1 1 100%;
    max-width: none;
  }

  .hero-stats-mobile-optimization-techniques {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (min-width: 768px) {
  .process-step-mobile-optimization-techniques {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .related-card-mobile-optimization-techniques {
    flex: 1 1 calc(33.333% - 1.33rem);
    max-width: 400px;
  }
}

.main-responsive-grid-systems {
  width: 100%;
}

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

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

.hero-content-responsive-grid-systems {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-text-block-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.breadcrumbs-responsive-grid-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.875rem);
  margin-bottom: 2rem;
  color: #93c5fd;
}

.breadcrumbs-responsive-grid-systems a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-responsive-grid-systems a:hover {
  color: #bfdbfe;
}

.breadcrumbs-responsive-grid-systems span {
  color: #475569;
}

.hero-title-responsive-grid-systems {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.meta-badges-responsive-grid-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.meta-badge-responsive-grid-systems {
  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: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-responsive-grid-systems i {
  color: #60a5fa;
}

.hero-stats-responsive-grid-systems {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item-responsive-grid-systems {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.stat-label-responsive-grid-systems {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-block-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.hero-image-responsive-grid-systems {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

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

  .hero-text-block-responsive-grid-systems,
  .hero-image-block-responsive-grid-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.intro-section-responsive-grid-systems {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-wrapper-responsive-grid-systems {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.intro-text-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.intro-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0c1929;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.intro-description-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-image-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.intro-image-img-responsive-grid-systems {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-wrapper-responsive-grid-systems {
    flex-direction: column;
  }

  .intro-text-responsive-grid-systems,
  .intro-image-responsive-grid-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.fundamentals-section-responsive-grid-systems {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.section-header-responsive-grid-systems {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-responsive-grid-systems {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.fundamentals-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0c1929;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.fundamentals-subtitle-responsive-grid-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.fundamentals-steps-responsive-grid-systems {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.fundamentals-step-responsive-grid-systems {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}

.fundamentals-step-number-responsive-grid-systems {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.fundamentals-step-content-responsive-grid-systems {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.fundamentals-step-title-responsive-grid-systems {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0c1929;
}

.fundamentals-step-text-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.fundamentals-content-wrapper-responsive-grid-systems {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.fundamentals-content-text-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.fundamentals-content-heading-responsive-grid-systems {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.fundamentals-content-description-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.fundamentals-content-image-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.fundamentals-content-img-responsive-grid-systems {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .fundamentals-step-responsive-grid-systems {
    flex-direction: column;
  }

  .fundamentals-step-number-responsive-grid-systems {
    min-width: auto;
  }

  .fundamentals-content-wrapper-responsive-grid-systems {
    flex-direction: column;
  }

  .fundamentals-content-text-responsive-grid-systems,
  .fundamentals-content-image-responsive-grid-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.grid-section-responsive-grid-systems {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.grid-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.grid-subtitle-responsive-grid-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.grid-content-wrapper-responsive-grid-systems {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

.grid-content-text-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.grid-content-description-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.featured-quote-responsive-grid-systems {
  padding: 1.5rem 2rem;
  border-left: 4px solid #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin: 1.5rem 0;
}

.quote-text-responsive-grid-systems {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-cite-responsive-grid-systems {
  font-size: 0.875rem;
  color: #93c5fd;
  font-style: normal;
}

.grid-content-image-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.grid-content-img-responsive-grid-systems {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

.grid-features-responsive-grid-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
}

.grid-feature-card-responsive-grid-systems {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.grid-feature-icon-responsive-grid-systems {
  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;
}

.grid-feature-title-responsive-grid-systems {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.grid-feature-text-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .grid-content-wrapper-responsive-grid-systems {
    flex-direction: column;
  }

  .grid-content-text-responsive-grid-systems,
  .grid-content-image-responsive-grid-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .grid-feature-card-responsive-grid-systems {
    flex: 1 1 100%;
    max-width: none;
  }
}

.breakpoints-section-responsive-grid-systems {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breakpoints-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0c1929;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.breakpoints-subtitle-responsive-grid-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.breakpoints-content-wrapper-responsive-grid-systems {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}

.breakpoints-content-text-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.breakpoints-content-description-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.breakpoints-content-image-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.breakpoints-content-img-responsive-grid-systems {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.breakpoints-strategies-responsive-grid-systems {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.breakpoints-strategies-title-responsive-grid-systems {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.strategy-item-responsive-grid-systems {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.strategy-label-responsive-grid-systems {
  font-size: 1rem;
  font-weight: 700;
  color: #0c1929;
}

.strategy-description-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .breakpoints-content-wrapper-responsive-grid-systems {
    flex-direction: column;
  }

  .breakpoints-content-text-responsive-grid-systems,
  .breakpoints-content-image-responsive-grid-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.best-practices-section-responsive-grid-systems {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.best-practices-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.best-practices-subtitle-responsive-grid-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto;
}

.best-practices-content-wrapper-responsive-grid-systems {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(2rem, 5vw, 4rem);
}

.best-practices-tips-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.best-practice-item-responsive-grid-systems {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
}

.practice-icon-responsive-grid-systems {
  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;
}

.practice-title-responsive-grid-systems {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
}

.practice-text-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

.best-practices-image-responsive-grid-systems {
  flex: 1 1 45%;
  max-width: 50%;
}

.best-practices-img-responsive-grid-systems {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
}

@media (max-width: 768px) {
  .best-practices-content-wrapper-responsive-grid-systems {
    flex-direction: column;
  }

  .best-practices-tips-responsive-grid-systems,
  .best-practices-image-responsive-grid-systems {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-section-responsive-grid-systems {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0c1929;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.tools-subtitle-responsive-grid-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-responsive-grid-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.tools-card-responsive-grid-systems {
  flex: 1 1 280px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.tools-card-responsive-grid-systems:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.tools-card-title-responsive-grid-systems {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0c1929;
}

.tools-card-text-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

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

.conclusion-section-responsive-grid-systems {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-responsive-grid-systems {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.conclusion-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0c1929;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

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

.cta-box-responsive-grid-systems {
  background: linear-gradient(135deg, #3b82f6, #0ea5e9);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
  margin-top: 2rem;
}

.cta-title-responsive-grid-systems {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.cta-text-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.btn-primary-cta-responsive-grid-systems {
  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: #3b82f6;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary-cta-responsive-grid-systems:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.disclaimer-section-responsive-grid-systems {
  background: #0c1929;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-responsive-grid-systems {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-responsive-grid-systems {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

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

.related-posts-section-responsive-grid-systems {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-title-responsive-grid-systems {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #0c1929;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.related-subtitle-responsive-grid-systems {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.related-cards-responsive-grid-systems {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2rem;
}

.related-card-responsive-grid-systems {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.related-card-responsive-grid-systems:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.related-card-image-responsive-grid-systems {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.related-card-title-responsive-grid-systems {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0c1929;
  line-height: 1.3;
}

.related-card-text-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.related-card-link-responsive-grid-systems {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: color 0.2s ease;
}

.related-card-link-responsive-grid-systems:hover {
  color: #0ea5e9;
}

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

@media (min-width: 768px) {
  .section-header-responsive-grid-systems {
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-responsive-grid-systems {
    gap: 4rem;
  }

  .intro-wrapper-responsive-grid-systems,
  .fundamentals-content-wrapper-responsive-grid-systems,
  .grid-content-wrapper-responsive-grid-systems,
  .breakpoints-content-wrapper-responsive-grid-systems,
  .best-practices-content-wrapper-responsive-grid-systems {
    gap: 4rem;
  }
}

.main-responsive-testing-debugging {
  width: 100%;
  background: #ffffff;
}

.hero-section-responsive-testing-debugging {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

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

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

.breadcrumbs-responsive-testing-debugging a:hover {
  color: #bfdbfe;
  text-decoration: underline;
}

.breadcrumbs-responsive-testing-debugging span {
  color: #93c5fd;
}

.hero-content-responsive-testing-debugging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-block-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-responsive-testing-debugging {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
}

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

.hero-meta-responsive-testing-debugging {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-responsive-testing-debugging {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #bfdbfe;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-responsive-testing-debugging i {
  color: #60a5fa;
}

.hero-stats-responsive-testing-debugging {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.stat-item-responsive-testing-debugging {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-responsive-testing-debugging {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.stat-label-responsive-testing-debugging {
  font-size: 0.875rem;
  color: #93c5fd;
  font-weight: 500;
}

.hero-image-block-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

  .hero-text-block-responsive-testing-debugging,
  .hero-image-block-responsive-testing-debugging {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-responsive-testing-debugging {
    gap: 1.5rem;
  }
}

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

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

.intro-content-responsive-testing-debugging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-title-responsive-testing-debugging {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
}

.intro-description-responsive-testing-debugging,
.intro-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.intro-image-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-responsive-testing-debugging {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-responsive-testing-debugging {
    flex-direction: column;
  }

  .intro-text-responsive-testing-debugging,
  .intro-image-responsive-testing-debugging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testing-tools-section-responsive-testing-debugging {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.testing-tools-header-responsive-testing-debugging {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-responsive-testing-debugging {
  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;
}

.testing-tools-title-responsive-testing-debugging {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.testing-tools-subtitle-responsive-testing-debugging {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.testing-tools-content-responsive-testing-debugging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.testing-tools-text-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testing-tools-description-responsive-testing-debugging,
.testing-tools-paragraph-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.tools-list-responsive-testing-debugging {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1rem;
}

.tool-item-responsive-testing-debugging {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tool-name-responsive-testing-debugging {
  font-size: 1rem;
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 0.5rem;
}

.tool-detail-responsive-testing-debugging {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

.testing-tools-image-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-img-responsive-testing-debugging {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .testing-tools-content-responsive-testing-debugging {
    flex-direction: column;
  }

  .testing-tools-text-responsive-testing-debugging,
  .testing-tools-image-responsive-testing-debugging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.breakpoints-header-responsive-testing-debugging {
  text-align: center;
  margin-bottom: 3rem;
}

.breakpoints-header-responsive-testing-debugging .section-tag-responsive-testing-debugging {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.breakpoints-title-responsive-testing-debugging {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.breakpoints-steps-responsive-testing-debugging {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.breakpoint-step-responsive-testing-debugging {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: rgba(96, 165, 250, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.2);
}

.breakpoint-number-responsive-testing-debugging {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.breakpoint-content-responsive-testing-debugging {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.breakpoint-title-responsive-testing-debugging {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.breakpoint-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .breakpoint-step-responsive-testing-debugging {
    flex-direction: column;
    gap: 1rem;
  }
}

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

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

.debugging-content-responsive-testing-debugging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.debugging-text-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.debugging-title-responsive-testing-debugging {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
}

.debugging-intro-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.debugging-highlight-responsive-testing-debugging {
  padding: 1.5rem;
  background: #f1f5f9;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin: 0.5rem 0;
}

.highlight-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #0c1929;
  line-height: 1.6;
}

.debugging-paragraph-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

.debugging-image-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
}

.debugging-img-responsive-testing-debugging {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .debugging-content-responsive-testing-debugging {
    flex-direction: column;
  }

  .debugging-text-responsive-testing-debugging,
  .debugging-image-responsive-testing-debugging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.testing-methods-section-responsive-testing-debugging {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.testing-methods-header-responsive-testing-debugging {
  text-align: center;
  margin-bottom: 3rem;
}

.testing-methods-title-responsive-testing-debugging {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
}

.testing-methods-cards-responsive-testing-debugging {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.method-card-responsive-testing-debugging {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card-responsive-testing-debugging:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.method-icon-responsive-testing-debugging {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.method-card-title-responsive-testing-debugging {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
}

.method-card-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .method-card-responsive-testing-debugging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.tools-deep-dive-responsive-testing-debugging {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.tools-deep-content-responsive-testing-debugging {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tools-deep-image-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
}

.tools-deep-img-responsive-testing-debugging {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tools-deep-text-responsive-testing-debugging {
  flex: 1 1 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tools-deep-title-responsive-testing-debugging {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
}

.tools-deep-paragraph-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .tools-deep-content-responsive-testing-debugging {
    flex-direction: column;
  }

  .tools-deep-image-responsive-testing-debugging,
  .tools-deep-text-responsive-testing-debugging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-responsive-testing-debugging {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.conclusion-content-responsive-testing-debugging {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conclusion-title-responsive-testing-debugging {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.conclusion-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.conclusion-highlight-responsive-testing-debugging {
  padding: 2rem;
  background: rgba(96, 165, 250, 0.1);
  border-left: 4px solid #60a5fa;
  border-radius: 8px;
  margin: 1rem 0;
  text-align: left;
}

.conclusion-highlight-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #bfdbfe;
  line-height: 1.8;
  font-style: italic;
}

.conclusion-final-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
}

.conclusion-cta-responsive-testing-debugging {
  display: inline-block;
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #0c1929;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 0.3s ease;
  margin-top: 1rem;
  align-self: center;
}

.conclusion-cta-responsive-testing-debugging:hover {
  background: #60a5fa;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-responsive-testing-debugging {
  background: #f8fafc;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-responsive-testing-debugging {
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-responsive-testing-debugging {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
  margin-bottom: 1rem;
}

.disclaimer-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #475569;
  line-height: 1.8;
}

.related-posts-section-responsive-testing-debugging {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

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

.related-posts-header-responsive-testing-debugging {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-title-responsive-testing-debugging {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  line-height: 1.2;
}

.related-posts-subtitle-responsive-testing-debugging {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.related-posts-grid-responsive-testing-debugging {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.related-post-card-responsive-testing-debugging {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-post-card-responsive-testing-debugging:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.related-post-image-responsive-testing-debugging {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  background: #f1f5f9;
}

.related-img-responsive-testing-debugging {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-content-responsive-testing-debugging {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-post-title-responsive-testing-debugging {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0c1929;
  line-height: 1.3;
}

.related-post-text-responsive-testing-debugging {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.related-post-link-responsive-testing-debugging {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  align-self: flex-start;
}

.related-post-link-responsive-testing-debugging:hover {
  color: #1e40af;
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .related-post-card-responsive-testing-debugging {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section-responsive-testing-debugging {
    padding: clamp(2rem, 5vw, 3rem) 0;
  }
}

.main-media-queries-breakpoints {
  width: 100%;
}

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

.hero-section-media-queries-breakpoints {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.hero-content-media-queries-breakpoints {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-media-queries-breakpoints {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-title-media-queries-breakpoints {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

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

.breadcrumbs-media-queries-breakpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.875rem, 1vw, 1rem);
}

.breadcrumbs-media-queries-breakpoints a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-media-queries-breakpoints a:hover {
  color: #ffffff;
}

.breadcrumbs-media-queries-breakpoints span {
  color: #93c5fd;
}

.hero-meta-media-queries-breakpoints {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.meta-badge-media-queries-breakpoints {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #bfdbfe;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-media-queries-breakpoints i {
  font-size: 0.875rem;
}

.hero-stats-media-queries-breakpoints {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  margin-top: 1rem;
}

.stat-item-media-queries-breakpoints {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.stat-label-media-queries-breakpoints {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-image-wrapper-media-queries-breakpoints {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 768px) {
  .hero-content-media-queries-breakpoints {
    flex-direction: column;
  }

  .hero-text-wrapper-media-queries-breakpoints,
  .hero-image-wrapper-media-queries-breakpoints {
    flex: 1 1 100%;
  }

  .hero-stats-media-queries-breakpoints {
    gap: 1rem;
  }
}

.intro-section-media-queries-breakpoints {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.intro-content-media-queries-breakpoints {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.intro-text-media-queries-breakpoints {
  flex: 1 1 50%;
}

.intro-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1.5rem;
}

.intro-description-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-media-queries-breakpoints {
  flex: 1 1 50%;
}

.intro-img-media-queries-breakpoints {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .intro-content-media-queries-breakpoints {
    flex-direction: column;
  }

  .intro-text-media-queries-breakpoints,
  .intro-image-media-queries-breakpoints {
    flex: 1 1 100%;
  }
}

.section-header-media-queries-breakpoints {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-media-queries-breakpoints {
  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;
}

.fundamentals-section-media-queries-breakpoints {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.fundamentals-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  text-align: center;
}

.fundamentals-wrapper-media-queries-breakpoints {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.fundamentals-text-media-queries-breakpoints {
  flex: 1 1 50%;
}

.fundamentals-subtitle-media-queries-breakpoints {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.fundamentals-description-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.feature-highlight-media-queries-breakpoints {
  padding: 1.5rem;
  background: #ffffff;
  border-left: 4px solid #3b82f6;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.highlight-text-media-queries-breakpoints {
  color: #1e293b;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.fundamentals-image-media-queries-breakpoints {
  flex: 1 1 50%;
}

.fundamentals-img-media-queries-breakpoints {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .fundamentals-wrapper-media-queries-breakpoints {
    flex-direction: column;
  }

  .fundamentals-text-media-queries-breakpoints,
  .fundamentals-image-media-queries-breakpoints {
    flex: 1 1 100%;
  }
}

.breakpoints-section-media-queries-breakpoints {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.breakpoints-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.breakpoints-content-media-queries-breakpoints {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.breakpoints-text-media-queries-breakpoints {
  flex: 1 1 50%;
}

.breakpoints-description-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.breakpoints-image-media-queries-breakpoints {
  flex: 1 1 50%;
}

.breakpoints-img-media-queries-breakpoints {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.breakpoints-steps-media-queries-breakpoints {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.breakpoints-step-media-queries-breakpoints {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  align-items: flex-start;
}

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

.step-content-media-queries-breakpoints {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.step-title-media-queries-breakpoints {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.step-text-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .breakpoints-content-media-queries-breakpoints {
    flex-direction: column;
  }

  .breakpoints-text-media-queries-breakpoints,
  .breakpoints-image-media-queries-breakpoints {
    flex: 1 1 100%;
  }

  .breakpoints-step-media-queries-breakpoints {
    flex-direction: row;
  }
}

.advanced-section-media-queries-breakpoints {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.advanced-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  text-align: center;
}

.advanced-wrapper-media-queries-breakpoints {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.advanced-text-media-queries-breakpoints {
  flex: 1 1 50%;
}

.advanced-subtitle-media-queries-breakpoints {
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1rem;
}

.advanced-description-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.featured-quote-media-queries-breakpoints {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #f8fafc;
  margin: 2rem 0;
  border-radius: 8px;
}

.quote-text-media-queries-breakpoints {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-style: italic;
  color: #0c1929;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.quote-author-media-queries-breakpoints {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.advanced-image-media-queries-breakpoints {
  flex: 1 1 50%;
}

.advanced-img-media-queries-breakpoints {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .advanced-wrapper-media-queries-breakpoints {
    flex-direction: column;
  }

  .advanced-text-media-queries-breakpoints,
  .advanced-image-media-queries-breakpoints {
    flex: 1 1 100%;
  }
}

.practices-section-media-queries-breakpoints {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.practices-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0c1929;
  text-align: center;
}

.practices-cards-media-queries-breakpoints {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.practices-card-media-queries-breakpoints {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.practices-card-media-queries-breakpoints:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.practices-card-icon-media-queries-breakpoints {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b82f6;
  font-size: 1.5rem;
}

.practices-card-title-media-queries-breakpoints {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #1e293b;
}

.practices-card-text-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.tools-section-media-queries-breakpoints {
  background: #0c1929;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.tools-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.tools-wrapper-media-queries-breakpoints {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: 3rem;
}

.tools-text-media-queries-breakpoints {
  flex: 1 1 50%;
}

.tools-description-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.tools-image-media-queries-breakpoints {
  flex: 1 1 50%;
}

.tools-img-media-queries-breakpoints {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.tools-list-media-queries-breakpoints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

.tool-item-media-queries-breakpoints {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.tool-name-media-queries-breakpoints {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.tool-desc-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .tools-wrapper-media-queries-breakpoints {
    flex-direction: column;
  }

  .tools-text-media-queries-breakpoints,
  .tools-image-media-queries-breakpoints {
    flex: 1 1 100%;
  }

  .tools-list-media-queries-breakpoints {
    grid-template-columns: 1fr;
  }
}

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

.cta-box-media-queries-breakpoints {
  background: linear-gradient(135deg, #0c1929 0%, #162d50 100%);
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 16px;
  text-align: center;
  color: #ffffff;
}

.cta-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-description-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.cta-button-media-queries-breakpoints {
  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: #0c1929;
  border-radius: 12px;
  font-weight: 700;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #3b82f6;
}

.cta-button-media-queries-breakpoints:hover {
  background: #ffffff;
  color: #0c1929;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

.disclaimer-section-media-queries-breakpoints {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-media-queries-breakpoints {
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.disclaimer-title-media-queries-breakpoints {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #92400e;
  margin-bottom: 1rem;
}

.disclaimer-text-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #78350f;
  line-height: 1.8;
}

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

.related-title-media-queries-breakpoints {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.related-subtitle-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: #bfdbfe;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.related-card-media-queries-breakpoints:hover {
  transform: translateY(-5px);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
}

.related-card-image-media-queries-breakpoints {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-card-image-media-queries-breakpoints img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-media-queries-breakpoints {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.related-card-description-media-queries-breakpoints {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #93c5fd;
  line-height: 1.6;
}

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

@media (min-width: 768px) {
  .tools-list-media-queries-breakpoints {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tools-list-media-queries-breakpoints {
    grid-template-columns: repeat(4, 1fr);
  }
}

.main-touch-friendly-interface-design {
  width: 100%;
  display: block;
}

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

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

.breadcrumbs-touch-friendly-interface-design a {
  color: #38bdf8;
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-touch-friendly-interface-design a:hover {
  color: #0ea5e9;
  text-decoration: underline;
}

.breadcrumbs-touch-friendly-interface-design span {
  color: #93c5fd;
}

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

.hero-content-touch-friendly-interface-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-text-wrapper-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-touch-friendly-interface-design {
  color: #ffffff;
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-subtitle-touch-friendly-interface-design {
  color: #bfdbfe;
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  margin-bottom: 2rem;
  line-height: 1.5;
  font-weight: 300;
}

.meta-badges-touch-friendly-interface-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.meta-badge-touch-friendly-interface-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 20px;
  color: #bfdbfe;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.meta-badge-touch-friendly-interface-design i {
  color: #60a5fa;
}

.hero-image-wrapper-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-touch-friendly-interface-design {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .hero-content-touch-friendly-interface-design {
    flex-direction: column;
  }
  
  .hero-text-wrapper-touch-friendly-interface-design,
  .hero-image-wrapper-touch-friendly-interface-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .breadcrumbs-touch-friendly-interface-design {
    margin-bottom: 1.5rem;
  }
}

.intro-section-touch-friendly-interface-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-touch-friendly-interface-design {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-touch-friendly-interface-design img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

@media (max-width: 768px) {
  .intro-content-touch-friendly-interface-design {
    flex-direction: column;
  }
  
  .intro-text-touch-friendly-interface-design,
  .intro-image-touch-friendly-interface-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-one-touch-friendly-interface-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-one-touch-friendly-interface-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-one-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-one-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text-one-description-touch-friendly-interface-design {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-list-one-touch-friendly-interface-design {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-list-one-touch-friendly-interface-design li {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  line-height: 1.6;
}

.content-list-one-touch-friendly-interface-design li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-weight: 600;
}

.content-image-one-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-one-touch-friendly-interface-design img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-one-touch-friendly-interface-design {
    flex-direction: column;
  }
  
  .content-text-one-touch-friendly-interface-design,
  .content-image-one-touch-friendly-interface-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-two-touch-friendly-interface-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-two-touch-friendly-interface-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-two-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-image-two-touch-friendly-interface-design img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-text-two-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-two-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text-two-description-touch-friendly-interface-design {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .content-wrapper-two-touch-friendly-interface-design {
    flex-direction: column;
  }
  
  .content-image-two-touch-friendly-interface-design {
    order: 0;
  }
  
  .content-text-two-touch-friendly-interface-design,
  .content-image-two-touch-friendly-interface-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.highlight-section-touch-friendly-interface-design {
  background: #162d50;
  padding: clamp(3rem, 8vw, 5rem) 0;
  overflow: hidden;
}

.featured-quote-touch-friendly-interface-design {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3.5rem);
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  margin: 0;
  border-radius: var(--radius-lg);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.quote-text-touch-friendly-interface-design {
  color: #ffffff;
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.quote-cite-touch-friendly-interface-design {
  color: #bfdbfe;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-style: normal;
  font-weight: 500;
  display: block;
}

.content-section-three-touch-friendly-interface-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-three-touch-friendly-interface-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-text-three-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-three-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text-three-description-touch-friendly-interface-design {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.content-list-three-touch-friendly-interface-design {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.content-list-three-touch-friendly-interface-design li {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  line-height: 1.6;
}

.content-list-three-touch-friendly-interface-design li::before {
  content: "";
  position: absolute;
  left: 0;
  color: #3b82f6;
  font-size: 0.5rem;
  top: 0.5em;
}

.content-image-three-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-image-three-touch-friendly-interface-design img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .content-wrapper-three-touch-friendly-interface-design {
    flex-direction: column;
  }
  
  .content-text-three-touch-friendly-interface-design,
  .content-image-three-touch-friendly-interface-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.content-section-four-touch-friendly-interface-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.content-wrapper-four-touch-friendly-interface-design {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.content-image-four-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
  order: -1;
}

.content-image-four-touch-friendly-interface-design img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.content-text-four-touch-friendly-interface-design {
  flex: 1 1 50%;
  max-width: 50%;
}

.content-title-four-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.25rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.content-text-four-description-touch-friendly-interface-design {
  color: #475569;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .content-wrapper-four-touch-friendly-interface-design {
    flex-direction: column;
  }
  
  .content-image-four-touch-friendly-interface-design {
    order: 0;
  }
  
  .content-text-four-touch-friendly-interface-design,
  .content-image-four-touch-friendly-interface-design {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-touch-friendly-interface-design {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-touch-friendly-interface-design {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  line-height: 1.25;
}

.conclusion-checklist-touch-friendly-interface-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.checklist-item-touch-friendly-interface-design {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.checklist-icon-touch-friendly-interface-design {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #dbeafe;
  color: #3b82f6;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.25rem;
}

.checklist-text-touch-friendly-interface-design {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checklist-heading-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  margin: 0;
}

.checklist-description-touch-friendly-interface-design {
  color: #64748b;
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  line-height: 1.6;
  margin: 0;
}

.conclusion-cta-touch-friendly-interface-design {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  text-align: center;
}

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

.btn-primary-touch-friendly-interface-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  border: 2px solid #3b82f6;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  text-decoration: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

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

@media (max-width: 768px) {
  .conclusion-checklist-touch-friendly-interface-design {
    gap: 1rem;
  }
  
  .checklist-item-touch-friendly-interface-design {
    padding: 1.25rem;
    gap: 1rem;
  }
}

.disclaimer-section-touch-friendly-interface-design {
  background: #0c1929;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-touch-friendly-interface-design {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-touch-friendly-interface-design {
  color: #ffffff;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-touch-friendly-interface-design {
  color: #cbd5e1;
  font-size: clamp(0.8125rem, 0.9vw + 0.5rem, 0.9375rem);
  line-height: 1.7;
  margin: 0;
}

.related-section-touch-friendly-interface-design {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-touch-friendly-interface-design {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.related-subtitle-touch-friendly-interface-design {
  color: #64748b;
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

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

.related-card-touch-friendly-interface-design {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all var(--transition-base);
}

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

.related-card-image-touch-friendly-interface-design {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.related-image-touch-friendly-interface-design {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-touch-friendly-interface-design {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.related-card-title-touch-friendly-interface-design {
  color: #0c1929;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.related-card-description-touch-friendly-interface-design {
  color: #64748b;
  font-size: clamp(0.8125rem, 1vw + 0.4rem, 0.9375rem);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-card-link-touch-friendly-interface-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  text-decoration: none;
  transition: all var(--transition-base);
  align-self: flex-start;
}

.related-card-link-touch-friendly-interface-design:hover {
  color: #2563eb;
  gap: 0.75rem;
}

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

@media (max-width: 767px) {
  .hero-title-touch-friendly-interface-design {
    margin-bottom: 1rem;
  }
  
  .hero-subtitle-touch-friendly-interface-design {
    margin-bottom: 1.5rem;
  }
  
  .meta-badges-touch-friendly-interface-design {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .content-list-one-touch-friendly-interface-design li,
  .content-list-three-touch-friendly-interface-design li {
    padding-left: 1.25rem;
  }
}

@media (min-width: 768px) {
  .hero-section-touch-friendly-interface-design {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
  
  .intro-section-touch-friendly-interface-design,
  .content-section-one-touch-friendly-interface-design,
  .content-section-two-touch-friendly-interface-design,
  .content-section-three-touch-friendly-interface-design,
  .content-section-four-touch-friendly-interface-design {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }
}

:root {
  --color-bg-primary-dark: #0c1929;
  --color-bg-secondary-dark: #162d50;
  --color-bg-tertiary-dark: #1e3a5f;
  --color-bg-primary-light: #ffffff;
  --color-bg-secondary-light: #f8fafc;
  --color-bg-tertiary-light: #f1f5f9;
  --color-bg-card-dark: rgba(59, 130, 246, 0.1);
  --color-bg-card-light: #ffffff;
  --color-text-primary-dark: #ffffff;
  --color-text-secondary-dark: #bfdbfe;
  --color-text-muted-dark: #93c5fd;
  --color-text-primary-light: #0c1929;
  --color-text-secondary-light: #475569;
  --color-text-muted-light: #64748b;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #0ea5e9;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

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

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

.mobileflow-academy-about {
  width: 100%;
  background: var(--color-bg-primary-dark);
}

.mobileflow-academy-about section {
  width: 100%;
  overflow: hidden;
}

.mobileflow-academy-about h1,
.mobileflow-academy-about h2,
.mobileflow-academy-about h3,
.mobileflow-academy-about h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

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

.hero-intro-header-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
}

.hero-intro-title-about {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  color: #ffffff;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-intro-subtitle-about {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: #bfdbfe;
  max-width: 700px;
}

.hero-intro-stats-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: 2rem;
}

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

.hero-intro-stat-number-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

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

.hero-intro-image-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

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

  .hero-intro-stat-item-about {
    flex: 1 1 auto;
  }
}

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

.methodology-journey-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.methodology-journey-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.methodology-journey-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-light);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.methodology-journey-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.methodology-journey-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

.methodology-journey-step-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all var(--transition-base);
}

.methodology-journey-step-about:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.methodology-journey-step-number-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
}

.methodology-journey-step-content-about {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.methodology-journey-step-title-about {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.methodology-journey-step-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #bfdbfe;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .methodology-journey-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

.expertise-pillars-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.expertise-pillars-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}

.expertise-pillars-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary-light);
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.expertise-pillars-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.expertise-pillars-subtitle-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
}

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

.expertise-pillars-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.3);
  transition: all var(--transition-base);
}

.expertise-pillars-card-about:hover {
  transform: translateY(-6px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
}

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

.expertise-pillars-card-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #ffffff;
}

.expertise-pillars-card-text-about {
  font-size: clamp(0.875rem, 1.5vw, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .expertise-pillars-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .expertise-pillars-card-about {
    flex: 1 1 300px;
  }
}

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

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

.vision-impact-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-md);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

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

.vision-impact-quote-author-about {
  font-size: 0.9375rem;
  color: #bfdbfe;
  font-style: normal;
  font-weight: 500;
}

.vision-impact-narrative-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vision-impact-section-title-about {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  color: #ffffff;
  margin-bottom: 1rem;
}

.vision-impact-paragraph-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  max-width: 800px;
}

.vision-impact-image-about {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: clamp(1.5rem, 3vw, 2.5rem) auto;
}

@media (min-width: 768px) {
  .vision-impact-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

.values-framework-content-about {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.values-framework-intro-about {
  max-width: 800px;
}

.values-framework-intro-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.values-framework-intro-text-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.values-framework-principles-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.values-framework-principle-about {
  flex: 1 1 250px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.values-framework-principle-icon-about {
  font-size: 2rem;
  color: var(--color-primary);
}

.values-framework-principle-name-about {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  font-weight: 700;
  color: #ffffff;
}

.values-framework-principle-description-about {
  font-size: 0.875rem;
  color: #93c5fd;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .values-framework-section-about {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

.disclaimer-info-section-about {
  background: rgba(59, 130, 246, 0.06);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
  position: relative;
}

.disclaimer-info-content-about {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disclaimer-info-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-info-icon-about {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-info-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.disclaimer-info-text-about {
  font-size: clamp(0.8125rem, 1.25vw, 0.9375rem);
  color: #bfdbfe;
  line-height: 1.7;
  max-width: 900px;
}

@media (min-width: 768px) {
  .disclaimer-info-section-about {
    padding: clamp(3rem, 8vw, 5rem) 0;
  }
}

@media (max-width: 767px) {
  .hero-intro-stat-item-about {
    flex: 1 1 45%;
  }

  .expertise-pillars-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .values-framework-principle-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.legal-docs {
  width: 100%;
  background: var(--color-bg-primary-light);
  color: var(--color-text-primary-light);
  font-family: var(--font-body);
  line-height: 1.6;
}

.legal-docs section {
  width: 100%;
  overflow: hidden;
}

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

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

.privacy-hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.privacy-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.privacy-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-hero-updated {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-muted-light);
  font-style: italic;
}

.privacy-hero-intro {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  max-width: 800px;
}

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

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

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

.privacy-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
  line-height: 1.2;
}

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

.privacy-section-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: clamp(1rem, 2vw, 2rem);
}

.privacy-section-list-item {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-light);
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.privacy-section-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

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

.privacy-contact-content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.privacy-contact-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary-light);
  line-height: 1.2;
}

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

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

.privacy-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.privacy-contact-label {
  font-family: var(--font-heading);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  color: var(--color-text-primary-light);
}

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

@media (min-width: 768px) {
  .privacy-hero-section {
    padding: 5rem 0;
  }

  .privacy-content-section {
    padding: 4rem 0;
  }

  .privacy-contact-section {
    padding: 5rem 0;
  }

  .privacy-section-paragraph {
    line-height: 1.8;
  }

  .privacy-contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

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

  .privacy-content-section {
    padding: 6rem 0;
  }

  .privacy-contact-section {
    padding: 6rem 0;
  }

  .privacy-content-wrapper {
    gap: 4rem;
  }

  .privacy-contact-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

  .thank-you-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
  }

  
  .thank-section {
    background: var(--color-bg-primary-dark);
    width: 100%;
    padding: clamp(2rem, 6vw, 4rem) var(--space-sm);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .thank-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  
  .thank-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: var(--space-lg);
    padding: clamp(1.5rem, 4vw, 3rem);
    max-width: 600px;
    width: 100%;
  }

  
  .thank-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(80px, 15vw, 120px);
    height: clamp(80px, 15vw, 120px);
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    margin-bottom: var(--space-sm);
    animation: successPulse 0.6s ease-out;
  }

  .thank-icon i {
    font-size: clamp(2.5rem, 8vw, 4rem);
    color: var(--color-primary);
  }

  
  .thank-content h1 {
    color: var(--color-text-primary-dark);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw + 0.5rem, 3.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin: 0;
  }

  
  .thank-subtitle {
    color: var(--color-primary-light);
    font-family: var(--font-body);
    font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.3px;
  }

  
  .thank-description {
    color: var(--color-text-secondary-dark);
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
    line-height: 1.7;
    margin: var(--space-sm) 0 0 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .thank-description strong {
    color: var(--color-primary);
    font-weight: 600;
  }

  
  .thank-next-steps {
    color: var(--color-text-muted-dark);
    font-family: var(--font-body);
    font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
    line-height: 1.7;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: clamp(0.75rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
  }

  .btn-primary {
    background: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

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

  .btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
  }

  
  @keyframes successPulse {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }

  
  @media (min-width: 768px) {
    .thank-section {
      padding: clamp(3rem, 8vw, 5rem) var(--space-md);
      min-height: 100vh;
    }

    .thank-content {
      gap: var(--space-xl);
      padding: clamp(2rem, 5vw, 4rem);
    }

    .thank-icon {
      margin-bottom: var(--space-md);
    }

    .thank-description,
    .thank-next-steps {
      max-width: 550px;
      margin-left: auto;
      margin-right: auto;
    }
  }

  
  @media (min-width: 1024px) {
    .thank-section {
      padding: 6rem var(--space-lg);
    }

    .thank-content {
      gap: var(--space-2xl);
    }

    .thank-icon {
      margin-bottom: var(--space-lg);
    }

    .btn {
      font-size: 1.0625rem;
      padding: 1.125rem 2.5rem;
    }

    .btn:hover {
      box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    }
  }

  
  @media (min-width: 1440px) {
    .thank-section {
      padding: 8rem var(--space-xl);
    }

    .thank-content {
      gap: var(--space-2xl);
    }
  }

  
  @media (max-width: 480px) {
    .thank-content {
      padding: clamp(1rem, 3vw, 1.5rem);
    }

    .thank-icon {
      width: 70px;
      height: 70px;
    }

    .btn {
      width: 100%;
      max-width: 400px;
    }
  }

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

  
  @media (prefers-reduced-motion: reduce) {
    .thank-icon {
      animation: none;
    }

    .btn {
      transition: none;
    }

    .btn:hover {
      transform: none;
    }
  }

  @media (prefers-contrast: more) {
    .btn {
      border: 2px solid var(--color-primary);
    }

    .thank-icon {
      border: 2px solid var(--color-primary);
    }
  }

.error-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-section {
  width: 100%;
  background: var(--color-bg-primary-dark);
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.error-visual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1rem, 3vw, 2rem);
}

.error-code-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 15vw + 1rem, 8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.error-decoration {
  position: absolute;
  top: 50%;
  right: clamp(-2rem, -10vw, -1rem);
  transform: translateY(-50%);
  opacity: 0.15;
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-primary);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  50% {
    transform: translateY(-50%) translateX(clamp(0.5rem, 2vw, 1rem));
  }
}

.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-dark);
  line-height: 1.2;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-message {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  max-width: 500px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-submessage {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-muted-dark);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  max-width: 520px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.error-actions {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
  max-width: 300px;
  margin: clamp(0.5rem, 2vw, 1rem) 0 0 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(1.5rem, 4vw, 2rem);
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

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

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

.error-suggestions {
  margin-top: clamp(2rem, 5vw, 3rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 450px;
}

.suggestions-label {
  font-family: var(--font-heading);
  font-size: clamp(0.9375rem, 1.5vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  color: var(--color-text-primary-dark);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  padding: 0;
}

.suggestions-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1rem);
}

.suggestions-list li {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1rem);
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1rem);
  color: var(--color-text-secondary-dark);
  line-height: 1.5;
}

.suggestions-list i {
  flex-shrink: 0;
  color: var(--color-secondary);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.suggestions-list span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .error-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    min-height: 100vh;
  }

  .error-content {
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .error-code-wrapper {
    margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  }

  .error-decoration {
    right: clamp(-1.5rem, -5vw, -0.5rem);
  }

  .error-actions {
    max-width: 350px;
  }

  .error-suggestions {
    margin-top: clamp(2.5rem, 5vw, 4rem);
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: clamp(4rem, 10vw, 6rem) 0;
  }

  .error-content {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .error-code-wrapper {
    margin-bottom: clamp(2rem, 4vw, 3rem);
  }

  .error-decoration {
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .error-actions {
    max-width: 380px;
  }

  .error-suggestions {
    max-width: 500px;
  }

  .suggestions-list {
    gap: clamp(1rem, 2vw, 1.5rem);
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 4rem;
  }

  .error-code {
    font-size: 8rem;
  }

  .error-title {
    font-size: 2.75rem;
  }

  .error-message {
    font-size: 1.125rem;
  }

  .error-submessage {
    font-size: 1rem;
  }

  .btn {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
  }

  .error-suggestions {
    margin-top: 4rem;
    padding: 2.5rem;
  }

  .suggestions-label {
    font-size: 1.0625rem;
    margin-bottom: 1.5rem;
  }

  .suggestions-list li {
    font-size: 1rem;
    gap: 1rem;
  }

  .suggestions-list i {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .error-decoration {
    animation: none;
  }

  .btn {
    transition: none;
  }
}

@media (prefers-contrast: more) {
  .error-code {
    font-weight: 900;
    letter-spacing: -0.03em;
  }

  .error-suggestions {
    border-width: 2px;
  }

  .btn {
    box-shadow: 0 0 0 2px var(--color-primary);
  }
}

.category-page-mobile-web-design {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-mobile-web-design .container {
  position: relative;
  z-index: 10;
}

.hero-content-mobile-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
}

.hero-badge-mobile-web-design {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid rgba(59, 130, 246, 0.3);
  align-self: flex-start;
}

.hero-title-mobile-web-design {
  font-size: clamp(2rem, 6vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 0;
}

.hero-description-mobile-web-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #bfdbfe;
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

.hero-stats-mobile-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin: clamp(1rem, 2vw, 2rem) 0;
}

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

.hero-stat-number-mobile-web-design {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

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

.hero-buttons-mobile-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-glow-mobile-web-design {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.15) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-mobile-web-design {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-shape-mobile-web-design {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

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

.posts-section-mobile-web-design .container {
  position: relative;
  z-index: 10;
}

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

.posts-title-mobile-web-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.posts-subtitle-mobile-web-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.posts-grid-mobile-web-design {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.post-card-mobile-web-design {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.post-card-mobile-web-design:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.post-card-image-mobile-web-design {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.post-card-title-mobile-web-design {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0c1929;
  margin: 1.5rem 1.5rem 0.75rem;
  line-height: 1.3;
}

.post-card-description-mobile-web-design {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0 1.5rem 1rem;
  flex-grow: 1;
}

.post-card-meta-mobile-web-design {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 1.5rem 1.5rem;
}

.post-meta-badge-mobile-web-design {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  background: #f1f5f9;
  color: #64748b;
  border-radius: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
}

.post-meta-badge-mobile-web-design i {
  font-size: 0.75rem;
}

.post-card-link-mobile-web-design {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  margin: 0 1.5rem 1.5rem;
  transition: all 0.2s ease;
}

.post-card-link-mobile-web-design:hover {
  color: #2563eb;
  gap: 0.75rem;
}

.posts-glow-mobile-web-design {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

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

.process-section-mobile-web-design .container {
  position: relative;
  z-index: 10;
}

.process-header-mobile-web-design {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.process-title-mobile-web-design {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0c1929;
  margin-bottom: 1rem;
}

.process-subtitle-mobile-web-design {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.process-steps-mobile-web-design {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

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

.process-step-mobile-web-design:hover {
  border-color: #3b82f6;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
}

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

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

.process-step-title-mobile-web-design {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #0c1929;
  margin: 0;
}

.process-step-text-mobile-web-design {
  font-size: clamp(0.875rem, 1vw + 0.4rem, 1rem);
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.process-accent-mobile-web-design {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

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

.insights-section-mobile-web-design .container {
  position: relative;
  z-index: 10;
}

.insights-content-mobile-web-design {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.insights-quote-mobile-web-design {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 4px solid #60a5fa;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
}

.insights-quote-text-mobile-web-design {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: #ffffff;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.insights-quote-author-mobile-web-design {
  font-size: 0.9375rem;
  color: #93c5fd;
  font-style: normal;
  font-weight: 600;
}

.insights-highlight-mobile-web-design {
  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);
}

.insights-highlight-title-mobile-web-design {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.insights-highlight-text-mobile-web-design {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: #bfdbfe;
  line-height: 1.7;
  margin: 0;
}

.insights-glow-mobile-web-design {
  position: absolute;
  top: 50%;
  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;
}

@media (max-width: 768px) {
  .hero-buttons-mobile-web-design {
    flex-direction: column;
  }

  .hero-buttons-mobile-web-design .btn {
    width: 100%;
  }

  .posts-grid-mobile-web-design {
    grid-template-columns: 1fr;
  }

  .process-step-mobile-web-design {
    flex-direction: column;
    gap: 1rem;
  }

  .process-step-number-mobile-web-design {
    min-width: auto;
  }
}

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

  .posts-grid-mobile-web-design {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

@media (min-width: 1024px) {
  .posts-grid-mobile-web-design {
    grid-template-columns: repeat(3, 1fr);
  }
}