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

:root {
  
  
  
  
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.04);
  --color-bg-card-light: rgba(255, 255, 255, 0.8);
  
  
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  
  
  --color-text-light-primary: #0a0f1e;
  --color-text-light-secondary: #374151;
  --color-text-light-muted: #6b7280;
  
  
  --color-primary: #3b82f6;
  --color-primary-light: #60a5fa;
  --color-primary-dark: #1e40af;
  --color-accent-gold: #f59e0b;
  --color-accent-gold-light: #fbbf24;
  --color-accent-emerald: #10b981;
  
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 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);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.5rem, 2rem);
  font-weight: 700;
  line-height: 1.25;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

h5 {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: 1.4;
}

h6 {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

p {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

li {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

span {
  font-size: inherit;
}

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

.btn i {
  font-size: 1.1em;
}

.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-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.btn-secondary {
  background: var(--color-accent-gold);
  color: #000000;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
  background: var(--color-accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

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

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

a {
  transition: all 0.3s ease;
}

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1rem);
  border-radius: var(--radius-md);
  border: 2px solid;
  padding: clamp(0.625rem, 1.5vw, 0.875rem) var(--space-md);
  transition: all 0.3s ease;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

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

button[type="submit"] {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  padding: clamp(0.625rem, 1.5vw, 1rem) clamp(1.25rem, 3vw, 2rem);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

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

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

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

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

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

.mt-1 {
  margin-top: var(--space-sm);
}

.mt-2 {
  margin-top: var(--space-md);
}

.mt-3 {
  margin-top: var(--space-lg);
}

.mt-4 {
  margin-top: var(--space-xl);
}

.mb-1 {
  margin-bottom: var(--space-sm);
}

.mb-2 {
  margin-bottom: var(--space-md);
}

.mb-3 {
  margin-bottom: var(--space-lg);
}

.mb-4 {
  margin-bottom: var(--space-xl);
}

.gap-1 {
  gap: var(--space-sm);
}

.gap-2 {
  gap: var(--space-md);
}

.gap-3 {
  gap: var(--space-lg);
}

.gap-4 {
  gap: var(--space-xl);
}

.flex {
  display: flex;
}

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

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

.grid {
  display: grid;
}

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

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

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

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

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

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

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

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

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

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

@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 pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
  }
}

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

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

.slide-in-down {
  animation: slideInDown 0.6s ease-out;
}

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

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

.decoration-blob {
  position: absolute;
  border-radius: 45% 55% 60% 40% / 55% 45% 45% 55%;
  opacity: 0.08;
  pointer-events: none;
}

.decoration-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  opacity: 0.1;
  pointer-events: none;
}

.decoration-dot {
  position: absolute;
  background: var(--color-primary);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

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

@media (prefers-color-scheme: dark) {
  body {
    color-scheme: dark;
  }
}

@media print {
  body {
    background: #ffffff;
    color: #000000;
  }
  
  .no-print {
    display: none !important;
  }
}
:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-light-tertiary: #f1f5f9;
  --color-bg-card-dark: rgba(255, 255, 255, 0.04);
  --color-bg-card-light: rgba(255, 255, 255, 0.8);
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0a0f1e;
  --color-text-light-secondary: #374151;
  --color-text-light-muted: #6b7280;
  --color-primary: #3b82f6;
  --color-primary-light: #60a5fa;
  --color-primary-dark: #1e40af;
  --color-accent-gold: #f59e0b;
  --color-accent-gold-light: #fbbf24;
  --color-accent-emerald: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 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);
  --shadow-dark: 0 10px 30px rgba(0, 0, 0, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');

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

html {
  scroll-behavior: smooth;
}

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

.header-language-hub {
  background: var(--color-bg-dark-primary);
  padding: clamp(1rem, 2vw, 1.5rem) 0;
  position: relative;
  z-index: 100;
}

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

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

.header-language-hub-brand:hover {
  opacity: 0.8;
}

.header-language-hub-logo-img {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}

.header-language-hub-logo-text {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.header-language-hub-desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  flex: 1;
  justify-content: flex-end;
}

.header-language-hub-nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 300ms ease;
  position: relative;
}

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

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

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

.header-language-hub-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all 300ms ease;
  white-space: nowrap;
}

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

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

.header-language-hub-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 101;
  transition: all 300ms ease;
}

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

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

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

.header-language-hub-mobile-toggle[aria-expanded="true"] .header-language-hub-hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-language-hub-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--color-bg-dark-primary);
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 4vw, 2rem);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 1px solid var(--color-bg-dark-secondary);
}

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

.header-language-hub-mobile-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-bg-dark-tertiary);
}

.header-language-hub-mobile-close {
  background: none;
  border: none;
  color: var(--color-text-dark-primary);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 300ms ease;
}

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

.header-language-hub-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.header-language-hub-mobile-link {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-bg-dark-tertiary);
  transition: color 300ms ease;
}

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

.header-language-hub-mobile-cta {
  margin-top: auto;
  padding: 1rem;
  background: var(--color-primary);
  color: #000000;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1rem;
  transition: all 300ms ease;
}

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

@media (min-width: 768px) {
  .header-language-hub {
    padding: clamp(1rem, 1.5vw, 1.5rem) 0;
  }

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

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

  .header-language-hub-mobile-toggle {
    display: none;
  }

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

@media (min-width: 1024px) {
  .header-language-hub-container {
    gap: 3rem;
  }

  .header-language-hub-logo-img {
    width: 44px;
    height: 44px;
  }

  .header-language-hub-logo-text {
    font-size: 1.5rem;
  }

  .header-language-hub-desktop-nav {
    gap: 2.5rem;
  }

  .header-language-hub-nav-link {
    font-size: 1rem;
  }

  .header-language-hub-cta-button {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }
}

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

    .language-hub {
  width: 100%;
}

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

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

.hero-section {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: #0a0f1e;
}

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

.hero-glow-primary {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-blob-left {
  position: absolute;
  top: 30%;
  left: -80px;
  width: 300px;
  height: 350px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-blob-right {
  position: absolute;
  bottom: 20%;
  right: -50px;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.07);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-shimmer-line {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-float-element-top {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(96, 165, 250, 0.1);
  border-radius: 16px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.hero-pulse-orb {
  position: absolute;
  bottom: 15%;
  right: 12%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.hero-stat-number {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.hero-stat-label {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: #94a3b8;
  font-weight: 500;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1.125rem) clamp(1.5rem, 3vw, 2.25rem);
  font-size: clamp(0.875rem, 1vw, 1.0625rem);
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  white-space: nowrap;
}

.btn i {
  font-size: 1.1em;
}

.btn-primary {
  background: #3b82f6;
  color: #0a0f1e;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.btn-secondary {
  background: #f59e0b;
  color: #0a0f1e;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-secondary:hover {
  background: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.btn-secondary:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

.btn:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

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

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

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

.features-glow-right {
  position: absolute;
  top: 30%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.features-accent-shape {
  position: absolute;
  bottom: 10%;
  right: -40px;
  width: 300px;
  height: 350px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50% 30% 60% 40% / 30% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.features-line-accent {
  position: absolute;
  top: 35%;
  left: 12%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.features-float-panel {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 200px;
  height: 150px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 14px;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

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

.features-tag {
  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 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.features-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

.features-card-icon {
  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 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.features-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

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

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

.process-ambient-glow {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.process-shape-accent {
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 300px;
  height: 320px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 40% 60% 35% 65% / 60% 40% 65% 35%;
  z-index: 2;
  pointer-events: none;
}

.process-line-element {
  position: absolute;
  top: 40%;
  left: 15%;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.process-float-card {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 190px;
  height: 140px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(96, 165, 250, 0.08);
  border-radius: 12px;
  transform: rotate(-6deg);
  z-index: 1;
  pointer-events: none;
}

.process-corner-blob {
  position: absolute;
  bottom: -50px;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

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

.process-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.process-steps {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.1);
  transition: all 350ms ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(96, 165, 250, 0.2);
  transform: translateX(8px);
}

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

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

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

.process-step-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin: 0;
}

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

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

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

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

.featured-glow-center {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.featured-accent-left {
  position: absolute;
  top: 35%;
  left: -50px;
  width: 280px;
  height: 320px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50% 30% 60% 40% / 30% 50% 40% 60%;
  z-index: 2;
  pointer-events: none;
}

.featured-accent-right {
  position: absolute;
  bottom: 15%;
  right: -40px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.featured-line-top {
  position: absolute;
  top: 25%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.featured-tag {
  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 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.featured-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

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

.featured-card-title {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
  margin: 0;
}

.featured-card-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

.featured-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 300ms ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.featured-card-link:hover {
  gap: 1rem;
  color: #1e40af;
}

.featured-card-link::after {
  content: '';
}

.featured-cta {
  position: relative;
  z-index: 10;
  text-align: center;
  padding-top: clamp(2rem, 3vw, 3rem);
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.featured-cta-text {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #0a0f1e;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

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

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

.benefits-color-field {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

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

.benefits-glow-bottom {
  position: absolute;
  bottom: 20%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.benefits-shape-accent {
  position: absolute;
  bottom: 10%;
  right: -60px;
  width: 320px;
  height: 350px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

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

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

.benefits-text {
  flex: 1 1 350px;
}

.benefits-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.benefits-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

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

.benefits-list-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefits-list-icon {
  color: #10b981;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.benefits-list-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.benefits-image-wrapper {
  flex: 1 1 350px;
  min-width: 300px;
}

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

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

  .benefits-image-wrapper {
    width: 100%;
  }
}

.methodology-section {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0;
  background: #0d1526;
}

.methodology-gradient-mesh {
  position: absolute;
  bottom: 0;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.methodology-glow-primary {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 320px;
  height: 320px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.methodology-accent-shape {
  position: absolute;
  top: 15%;
  right: -50px;
  width: 300px;
  height: 350px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 40% 60% 35% 65% / 60% 40% 65% 35%;
  z-index: 2;
  pointer-events: none;
}

.methodology-float-accent {
  position: absolute;
  top: 45%;
  left: 12%;
  width: 190px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(96, 165, 250, 0.08);
  border-radius: 12px;
  transform: rotate(-5deg);
  z-index: 1;
  pointer-events: none;
}

.methodology-line-element {
  position: absolute;
  bottom: 35%;
  right: 20%;
  width: 220px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.methodology-corner-blob {
  position: absolute;
  bottom: -40px;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

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

.methodology-title {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

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

.methodology-text {
  flex: 1 1 350px;
}

.methodology-intro {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #cbd5e1;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.7;
}

.methodology-quote {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid #f59e0b;
  background: rgba(255, 255, 255, 0.03);
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
  border-radius: 0 8px 8px 0;
}

.methodology-quote p {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-style: italic;
  color: #f1f5f9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.methodology-quote cite {
  font-size: 0.875rem;
  color: #94a3b8;
  font-style: normal;
}

.methodology-explanation {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.methodology-principles {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
}

.methodology-principles-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.methodology-principle {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.1);
  transition: all 350ms ease;
}

.methodology-principle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(96, 165, 250, 0.2);
}

.methodology-principle-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
  flex-shrink: 0;
}

.methodology-principle-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.methodology-principle-heading {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.methodology-principle-text {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

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

.cta-section {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: #0a0f1e;
}

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

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

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

.cta-accent-right {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(20, 184, 166, 0.05);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  z-index: 2;
  pointer-events: none;
}

.cta-shimmer-element {
  position: absolute;
  top: 35%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.cta-title {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.25rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #cbd5e1;
  margin-bottom: clamp(2rem, 3vw, 3rem);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-large {
  padding: clamp(1rem, 2vw, 1.375rem) clamp(2rem, 4vw, 3rem);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

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

.contact-color-field {
  position: absolute;
  top: 5%;
  left: 8%;
  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;
}

.contact-glow-left {
  position: absolute;
  bottom: 25%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(20, 184, 166, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

.contact-accent-shape {
  position: absolute;
  bottom: 15%;
  right: -60px;
  width: 300px;
  height: 350px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

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

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

.contact-tag {
  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;
}

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

.contact-subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

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

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

.contact-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1e293b;
}

.contact-input,
.contact-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 0.9375rem;
  color: #0a0f1e;
  transition: all 300ms ease;
}

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

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

.contact-form-privacy {
  margin-top: 0.5rem;
}

.contact-privacy-text {
  font-size: 0.8125rem;
  color: #64748b;
  margin: 0;
}

.contact-privacy-link {
  color: #3b82f6;
  text-decoration: none;
  transition: all 300ms ease;
}

.contact-privacy-link:hover {
  color: #1e40af;
  text-decoration: underline;
}

.contact-submit {
  padding: 1rem 2rem;
  background: #3b82f6;
  color: #0a0f1e;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 350ms ease;
  font-family: var(--font-primary);
  align-self: flex-start;
}

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

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

.contact-submit:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 3px;
}

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

.contact-info-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: #0a0f1e;
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
}

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

.contact-faq-question {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.contact-faq-answer {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
  margin: 0;
}

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

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

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

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

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

.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

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

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

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

.cookie-btn-decline {
  background: transparent;
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.2);
}

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

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

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    padding: 1rem;
  }

  .cookie-banner-text {
    width: 100%;
    text-align: center;
  }

  .cookie-banner-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-stats {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .process-step {
    flex-direction: column;
    gap: 1rem;
  }

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

  .methodology-content {
    flex-direction: column;
  }
}

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

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

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

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

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

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

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

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

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

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

  .footer-nav-link {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    color: var(--color-text-dark-muted);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

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

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

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

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

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

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

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

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

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

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

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

  .footer-legal-link {
    font-size: clamp(0.8125rem, 1.5vw, 0.9375rem);
    color: var(--color-text-dark-muted);
    text-decoration: none;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

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

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

  .footer-copyright-section {
    flex: 1 1 100%;
    text-align: center;
    padding-top: clamp(1.5rem, 3vw, 2rem);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: clamp(0.5rem, 2vw, 1rem);
  }

  .footer-copyright-text {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: var(--color-text-dark-muted);
    margin: 0;
    line-height: 1.5;
  }

  @media (max-width: 767px) {
    .footer-content {
      flex-direction: column;
      gap: clamp(2rem, 4vw, 2.5rem);
    }

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

    .footer-about-title,
    .footer-nav-title,
    .footer-contact-title,
    .footer-legal-title {
      margin-bottom: 1rem;
    }
  }

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

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

.category-page-intensive-dutch {
  width: 100%;
}

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

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

.hero-gradient-field-intensive-dutch {
  position: absolute;
  top: 20%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(120px);
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape-1-intensive-dutch {
  position: absolute;
  bottom: 5%;
  left: 5%;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 45% 55% 60% 40% / 55% 45% 45% 55%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-shape-2-intensive-dutch {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 320px;
  height: 320px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 60% 40% 45% 55% / 40% 55% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.hero-accent-orb-intensive-dutch {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.08);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-line-element-intensive-dutch {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

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

.hero-title-intensive-dutch {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle-intensive-dutch {
  color: var(--color-text-dark-secondary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.stat-number-intensive-dutch {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent-gold);
  display: block;
  line-height: 1;
}

.stat-label-intensive-dutch {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-dark-muted);
  opacity: 0.9;
}

.hero-cta-group-intensive-dutch {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.posts-section-intensive-dutch {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.posts-header-intensive-dutch {
  text-align: center;
  margin-bottom: 3rem;
}

.posts-tag-intensive-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

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

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

.card-intensive-dutch {
  flex: 1 1 300px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.card-intensive-dutch:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: rgba(59, 130, 246, 0.2);
}

.card-image-intensive-dutch {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}

.card-title-intensive-dutch {
  color: var(--color-text-light-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  line-height: 1.3;
  min-height: 3.5rem;
}

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

.card-meta-intensive-dutch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0.5rem 0;
}

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

.meta-badge-intensive-dutch i {
  font-size: 0.875rem;
}

.card-link-intensive-dutch {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 0.5rem;
}

.card-link-intensive-dutch:hover {
  color: var(--color-primary-dark);
  transform: translateX(4px);
}

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

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

.methodology-section-intensive-dutch {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-dark-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.methodology-header-intensive-dutch {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-tag-intensive-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-accent-gold);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

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

.methodology-subtitle-intensive-dutch {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.methodology-steps-intensive-dutch {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.methodology-step-intensive-dutch {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.methodology-step-intensive-dutch:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(245, 158, 11, 0.2);
}

.methodology-step-number-intensive-dutch {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-accent-gold);
  line-height: 1;
  flex-shrink: 0;
  min-width: 60px;
}

.methodology-step-content-intensive-dutch {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.methodology-step-title-intensive-dutch {
  color: var(--color-text-dark-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 600;
  line-height: 1.3;
}

.methodology-step-text-intensive-dutch {
  color: var(--color-text-dark-muted);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methodology-step-intensive-dutch {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .methodology-step-number-intensive-dutch {
    font-size: clamp(1.75rem, 3vw, 2rem);
    min-width: 50px;
  }
}

.insights-section-intensive-dutch {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-light-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  width: 100%;
}

.insights-header-intensive-dutch {
  text-align: center;
  margin-bottom: 2.5rem;
}

.insights-tag-intensive-dutch {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  color: var(--color-accent-emerald);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.insights-title-intensive-dutch {
  color: var(--color-text-light-primary);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.featured-quote-intensive-dutch {
  padding: 2.5rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-bg-light-primary);
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.insights-content-intensive-dutch {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.insights-paragraph-intensive-dutch {
  color: var(--color-text-light-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  text-align: center;
}

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

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

  .methodology-section-intensive-dutch {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

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

  .card-meta-intensive-dutch {
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-intensive-dutch {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .posts-section-intensive-dutch {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .methodology-section-intensive-dutch {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .insights-section-intensive-dutch {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  .card-intensive-dutch,
  .methodology-step-intensive-dutch,
  .card-link-intensive-dutch {
    transition: none;
  }
}

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

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

.main-daily-vocabulary-building {
  width: 100%;
}

.main-daily-vocabulary-building section,
[class*="-section-daily-vocabulary-building"] {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-daily-vocabulary-building {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-daily-vocabulary-building a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-daily-vocabulary-building a:hover {
  color: #60a5fa;
  text-decoration: underline;
}

.breadcrumbs-daily-vocabulary-building span {
  color: #64748b;
}

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

.hero-text-wrapper-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-daily-vocabulary-building {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.hero-meta-daily-vocabulary-building {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.meta-badge-daily-vocabulary-building {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #e2e8f0;
}

.meta-badge-daily-vocabulary-building i {
  color: #3b82f6;
  font-size: 0.9em;
}

.hero-stats-daily-vocabulary-building {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-daily-vocabulary-building {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.stat-label-daily-vocabulary-building {
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-wrapper-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-daily-vocabulary-building {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-content-daily-vocabulary-building {
    flex-direction: column;
  }

  .hero-text-wrapper-daily-vocabulary-building,
  .hero-image-wrapper-daily-vocabulary-building {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-daily-vocabulary-building {
    gap: 1.5rem;
    border-top: none;
    margin-top: 1.5rem;
    padding-top: 0;
  }

  .stat-item-daily-vocabulary-building {
    flex: 1 1 auto;
  }
}

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

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

.introduction-text-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-daily-vocabulary-building {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.introduction-description-daily-vocabulary-building {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.introduction-image-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-element-daily-vocabulary-building {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-daily-vocabulary-building {
    flex-direction: column;
  }

  .introduction-text-daily-vocabulary-building,
  .introduction-image-daily-vocabulary-building {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.methods-header-daily-vocabulary-building {
  text-align: center;
  margin-bottom: 3rem;
}

.methods-tag-daily-vocabulary-building {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.methods-title-daily-vocabulary-building {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.methods-subtitle-daily-vocabulary-building {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.methods-steps-daily-vocabulary-building {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methods-step-daily-vocabulary-building {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
}

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

.methods-step-content-daily-vocabulary-building {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.methods-step-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .methods-step-daily-vocabulary-building {
    flex-direction: column;
    gap: 1rem;
  }

  .methods-step-number-daily-vocabulary-building {
    min-width: auto;
  }
}

.daily-routine-section-daily-vocabulary-building {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.daily-routine-wrapper-daily-vocabulary-building {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.daily-routine-text-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.daily-routine-title-daily-vocabulary-building {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.daily-routine-description-daily-vocabulary-building {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.daily-routine-block-daily-vocabulary-building {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.daily-routine-block-daily-vocabulary-building:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.daily-routine-block-title-daily-vocabulary-building {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.daily-routine-block-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

.daily-routine-image-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.daily-routine-image-element-daily-vocabulary-building {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .daily-routine-wrapper-daily-vocabulary-building {
    flex-direction: column;
  }

  .daily-routine-text-daily-vocabulary-building,
  .daily-routine-image-daily-vocabulary-building {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.tools-header-daily-vocabulary-building {
  text-align: center;
  margin-bottom: 3rem;
}

.tools-tag-daily-vocabulary-building {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 500;
  margin-bottom: 1rem;
}

.tools-title-daily-vocabulary-building {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.tools-cards-daily-vocabulary-building {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.tools-card-daily-vocabulary-building {
  flex: 1 1 280px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tools-card-daily-vocabulary-building:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.tools-card-title-daily-vocabulary-building {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0a0f1e;
}

.tools-card-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

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

.key-principles-section-daily-vocabulary-building {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.key-principles-wrapper-daily-vocabulary-building {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.key-principles-image-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.key-principles-image-element-daily-vocabulary-building {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.key-principles-text-daily-vocabulary-building {
  flex: 1 1 50%;
  max-width: 50%;
}

.key-principles-title-daily-vocabulary-building {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.key-principles-item-daily-vocabulary-building {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.key-principles-item-daily-vocabulary-building:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.key-principles-item-title-daily-vocabulary-building {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 600;
  color: #0a0f1e;
  margin-bottom: 0.75rem;
}

.key-principles-item-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .key-principles-wrapper-daily-vocabulary-building {
    flex-direction: column;
  }

  .key-principles-image-daily-vocabulary-building,
  .key-principles-text-daily-vocabulary-building {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.progress-section-daily-vocabulary-building {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.progress-content-daily-vocabulary-building {
  max-width: 900px;
  margin: 0 auto;
}

.progress-title-daily-vocabulary-building {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
}

.progress-subtitle-daily-vocabulary-building {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.featured-quote-daily-vocabulary-building {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
  margin: 2.5rem 0;
  border-radius: 8px;
  font-style: italic;
}

.featured-quote-daily-vocabulary-building p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #f1f5f9;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.featured-quote-daily-vocabulary-building cite {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #94a3b8;
  font-style: normal;
  display: block;
}

.progress-timeline-daily-vocabulary-building {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.progress-week-daily-vocabulary-building {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.progress-week-title-daily-vocabulary-building {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.progress-week-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.conclusion-content-daily-vocabulary-building {
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-title-daily-vocabulary-building {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  text-align: center;
  margin-bottom: 2rem;
}

.conclusion-text-daily-vocabulary-building {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.conclusion-cta-daily-vocabulary-building {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: 16px;
  text-align: center;
  margin-top: 3rem;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.conclusion-cta-title-daily-vocabulary-building {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.conclusion-cta-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #e0f2fe;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.conclusion-cta-daily-vocabulary-building .btn {
  background: #ffffff;
  color: #3b82f6;
  font-weight: 600;
}

.conclusion-cta-daily-vocabulary-building .btn:hover {
  background: #f0f9ff;
  transform: translateY(-2px);
}

.related-posts-section-daily-vocabulary-building {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.related-posts-header-daily-vocabulary-building {
  text-align: center;
  margin-bottom: 3rem;
}

.related-posts-title-daily-vocabulary-building {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 0.5rem;
}

.related-posts-subtitle-daily-vocabulary-building {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #64748b;
}

.related-posts-cards-daily-vocabulary-building {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-post-card-daily-vocabulary-building {
  flex: 1 1 320px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.related-post-card-daily-vocabulary-building:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-post-image-daily-vocabulary-building {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-post-image-element-daily-vocabulary-building {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-post-content-daily-vocabulary-building {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.related-post-title-daily-vocabulary-building {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0a0f1e;
  line-height: 1.3;
}

.related-post-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.6;
}

.related-post-arrow-daily-vocabulary-building {
  color: #3b82f6;
  font-weight: 600;
  font-size: 1.25rem;
  transition: transform 0.2s ease;
  align-self: flex-start;
  margin-top: auto;
}

.related-post-card-daily-vocabulary-building:hover .related-post-arrow-daily-vocabulary-building {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .related-post-card-daily-vocabulary-building {
    flex: 1 1 100%;
    max-width: none;
  }
}

.disclaimer-section-daily-vocabulary-building {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-daily-vocabulary-building {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.disclaimer-title-daily-vocabulary-building {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.disclaimer-text-daily-vocabulary-building {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.disclaimer-text-daily-vocabulary-building:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .hero-stats-daily-vocabulary-building {
    border-top: none;
    padding-top: 0;
    margin-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .methods-step-daily-vocabulary-building {
    align-items: center;
  }
}

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

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

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

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

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

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

.btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.main-conversation-skills-development {
  width: 100%;
  background: #ffffff;
}

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

.hero-section-conversation-skills-development {
  background: #0a0f1e;
  padding: clamp(2rem, 6vw, 5rem) 0;
  overflow: hidden;
}

.breadcrumbs-conversation-skills-development {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-conversation-skills-development a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-conversation-skills-development a:hover {
  color: #93c5fd;
}

.breadcrumbs-conversation-skills-development span {
  color: #64748b;
}

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

.hero-text-block-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-conversation-skills-development {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-subtitle-conversation-skills-development {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.article-meta-conversation-skills-development {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-conversation-skills-development i {
  color: #60a5fa;
}

.hero-description-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.hero-image-block-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-conversation-skills-development {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
  .hero-content-conversation-skills-development {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-text-block-conversation-skills-development,
  .hero-image-block-conversation-skills-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

.introduction-section-conversation-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.introduction-text-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.introduction-description-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  color: #374151;
  margin-bottom: 1.5rem;
}

.introduction-image-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-image-conversation-skills-development {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .introduction-content-conversation-skills-development {
    flex-direction: column;
    gap: 2rem;
  }

  .introduction-text-conversation-skills-development,
  .introduction-image-conversation-skills-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

.methods-section-conversation-skills-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-header-conversation-skills-development {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-conversation-skills-development {
  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;
}

.methods-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.methods-steps-conversation-skills-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.methods-step-conversation-skills-development {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

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

.methods-step-content-conversation-skills-development {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

.methods-step-text-conversation-skills-development {
  font-size: clamp(0.875rem, 1vw, 1rem);
  line-height: 1.7;
  color: #475569;
}

@media (max-width: 768px) {
  .methods-step-conversation-skills-development {
    flex-direction: column;
    gap: 1rem;
  }
}

.strategies-section-conversation-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-wrapper-conversation-skills-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.strategies-text-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.strategies-description-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  color: #374151;
  margin-bottom: 2rem;
}

.strategies-highlights-conversation-skills-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.strategy-highlight-conversation-skills-development {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #10b981;
}

.highlight-title-conversation-skills-development {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0a0f1e;
  margin-bottom: 0.5rem;
}

.highlight-text-conversation-skills-development {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

.strategies-image-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategies-image-conversation-skills-development {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .strategies-wrapper-conversation-skills-development {
    flex-direction: column;
    gap: 2rem;
  }

  .strategies-text-conversation-skills-development,
  .strategies-image-conversation-skills-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

.obstacles-section-conversation-skills-development {
  background: #0f172a;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.obstacles-wrapper-conversation-skills-development {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.obstacles-image-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacles-image-conversation-skills-development {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.obstacles-text-conversation-skills-development {
  flex: 1 1 50%;
  max-width: 50%;
}

.obstacles-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.featured-quote-conversation-skills-development {
  padding: 2rem;
  border-left: 4px solid #f59e0b;
  background: rgba(245, 158, 11, 0.08);
  margin: 2rem 0;
  border-radius: 8px;
}

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

.quote-cite-conversation-skills-development {
  font-size: 0.875rem;
  color: #cbd5e1;
  font-style: normal;
}

.obstacles-description-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.obstacles-subheading-conversation-skills-development {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.obstacles-text-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .obstacles-wrapper-conversation-skills-development {
    flex-direction: column;
    gap: 2rem;
  }

  .obstacles-image-conversation-skills-development,
  .obstacles-text-conversation-skills-development {
    flex: 1 1 100%;
    max-width: none;
  }
}

.resources-section-conversation-skills-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.resources-header-conversation-skills-development {
  text-align: center;
  margin-bottom: 3rem;
}

.resources-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.resources-subtitle-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.resources-grid-conversation-skills-development {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.resource-card-conversation-skills-development {
  flex: 1 1 280px;
  max-width: 350px;
  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;
}

.resource-card-conversation-skills-development:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.resource-icon-conversation-skills-development {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eff6ff;
  color: #3b82f6;
  border-radius: 10px;
  font-size: 1.5rem;
}

.resource-title-conversation-skills-development {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0f1e;
}

.resource-text-conversation-skills-development {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

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

.timeline-section-conversation-skills-development {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.timeline-header-conversation-skills-development {
  text-align: center;
  margin-bottom: 3rem;
}

.timeline-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.timeline-subtitle-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.timeline-content-conversation-skills-development {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-item-conversation-skills-development {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.timeline-marker-conversation-skills-development {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 80px;
}

.timeline-details-conversation-skills-development {
  flex: 1;
}

.timeline-phase-conversation-skills-development {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0a0f1e;
  margin-bottom: 0.5rem;
}

.timeline-description-conversation-skills-development {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475569;
}

@media (max-width: 768px) {
  .timeline-item-conversation-skills-development {
    flex-direction: column;
    gap: 1rem;
  }
}

.conclusion-section-conversation-skills-development {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-conversation-skills-development {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.cta-section-conversation-skills-development {
  background: rgba(59, 130, 246, 0.1);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  text-align: center;
  margin-top: 2rem;
}

.cta-title-conversation-skills-development {
  font-size: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.cta-text-conversation-skills-development {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
}

.cta-button-conversation-skills-development {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 10px;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-conversation-skills-development:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.related-section-conversation-skills-development {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-header-conversation-skills-development {
  text-align: center;
  margin-bottom: 3rem;
}

.related-title-conversation-skills-development {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.related-subtitle-conversation-skills-development {
  font-size: clamp(0.9375rem, 1vw, 1.0625rem);
  color: #475569;
}

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

.related-card-conversation-skills-development {
  flex: 1 1 300px;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-conversation-skills-development:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.related-card-image-conversation-skills-development {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-card-image-conversation-skills-development img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-conversation-skills-development {
  padding: clamp(1.25rem, 3vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.related-card-title-conversation-skills-development {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #0a0f1e;
  line-height: 1.3;
}

.related-card-text-conversation-skills-development {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #475569;
}

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

.disclaimer-section-conversation-skills-development {
  background: #ffffff;
  padding: clamp(2rem, 4vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-conversation-skills-development {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-conversation-skills-development {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.disclaimer-text-conversation-skills-development {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #475569;
}

@media (min-width: 768px) {
  .hero-section-conversation-skills-development {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }

  .introduction-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .methods-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .strategies-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .obstacles-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .resources-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .timeline-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .conclusion-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }

  .related-section-conversation-skills-development {
    padding: clamp(4rem, 8vw, 6rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .introduction-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .methods-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .strategies-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .obstacles-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .resources-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .timeline-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .conclusion-section-conversation-skills-development {
    padding: 6rem 0;
  }

  .related-section-conversation-skills-development {
    padding: 6rem 0;
  }
}

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

.hero-section-conversation-skills-development {
  animation: fadeIn 0.8s ease-out;
}

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

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

.main-grammar-structures-guide {
  width: 100%;
  background: #ffffff;
}

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

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

.hero-text-block-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-grammar-structures-guide {
  color: #ffffff;
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
}

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

.hero-meta-grammar-structures-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-grammar-structures-guide i {
  font-size: 1em;
}

.hero-stats-grammar-structures-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 5vw, 3rem);
  margin-top: 3rem;
}

.stat-item-grammar-structures-guide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-grammar-structures-guide {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.stat-label-grammar-structures-guide {
  font-size: 0.875rem;
  color: #94a3b8;
  font-weight: 500;
}

.hero-image-block-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

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

.intro-text-block-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.intro-text-grammar-structures-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.intro-image-block-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.section-header-grammar-structures-guide {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag-grammar-structures-guide {
  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;
}

.section-title-grammar-structures-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle-grammar-structures-guide {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  max-width: 600px;
  margin: 0 auto;
}

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

.fundamentals-text-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-subheading-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.fundamentals-paragraph-grammar-structures-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.fundamentals-list-grammar-structures-guide {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.list-item-grammar-structures-guide {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
}

.list-number-grammar-structures-guide {
  font-size: 1.75rem;
  font-weight: 800;
  color: #3b82f6;
  flex-shrink: 0;
  min-width: 50px;
}

.list-content-grammar-structures-guide {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.list-title-grammar-structures-guide {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
}

.list-text-grammar-structures-guide {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.fundamentals-image-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-image-grammar-structures-guide {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.structures-text-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.structures-subheading-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.structures-intro-grammar-structures-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.structures-description-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
  font-weight: 500;
}

.structures-text-grammar-structures-guide {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
}

.structures-image-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.structures-image-grammar-structures-guide {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-section-grammar-structures-guide {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.featured-quote-grammar-structures-guide {
  padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.quote-text-grammar-structures-guide {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-author-grammar-structures-guide {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
  font-weight: 500;
}

.application-section-grammar-structures-guide {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.application-text-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-subheading-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(1.25rem, 3vw + 0.5rem, 1.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.application-paragraph-grammar-structures-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.application-text-grammar-structures-guide {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.application-highlight-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.7;
  padding: 1rem 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 3px solid #3b82f6;
  border-radius: 4px;
  font-weight: 500;
}

.application-image-grammar-structures-guide {
  flex: 1 1 50%;
  max-width: 50%;
}

.application-image-grammar-structures-guide {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategies-section-grammar-structures-guide {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-cards-grammar-structures-guide {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.strategies-card-grammar-structures-guide {
  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;
}

.strategies-card-grammar-structures-guide:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.strategies-card-icon-grammar-structures-guide {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
  border-radius: 12px;
  font-size: 1.75rem;
}

.strategies-card-title-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
}

.strategies-card-text-grammar-structures-guide {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.conclusion-section-grammar-structures-guide {
  background: #f1f5f9;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.conclusion-content-grammar-structures-guide {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-grammar-structures-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.conclusion-text-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-paragraph-grammar-structures-guide {
  color: #475569;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.conclusion-highlight-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  line-height: 1.8;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  margin-bottom: 2rem;
  font-weight: 500;
}

.conclusion-cta-grammar-structures-guide {
  text-align: center;
}

.btn-cta-grammar-structures-guide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem);
  background: #3b82f6;
  color: #ffffff;
  border: 2px solid transparent;
  border-radius: 10px;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-grammar-structures-guide:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.related-section-grammar-structures-guide {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

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

.related-card-grammar-structures-guide:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-grammar-structures-guide {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-card-img-grammar-structures-guide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-content-grammar-structures-guide {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
}

.related-card-title-grammar-structures-guide {
  color: #1e293b;
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
}

.related-card-text-grammar-structures-guide {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.related-card-link-grammar-structures-guide {
  color: #3b82f6;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.related-card-link-grammar-structures-guide:hover {
  color: #1e40af;
  text-decoration: underline;
}

.related-title-grammar-structures-guide {
  color: #0a0f1e;
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
}

.related-subtitle-grammar-structures-guide {
  color: #64748b;
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
}

.disclaimer-section-grammar-structures-guide {
  background: #f8fafc;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.disclaimer-content-grammar-structures-guide {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.disclaimer-title-grammar-structures-guide {
  color: #1e293b;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.disclaimer-text-grammar-structures-guide {
  color: #64748b;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.breadcrumbs-grammar-structures-guide {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.breadcrumbs-grammar-structures-guide a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-grammar-structures-guide a:hover {
  color: #f59e0b;
  text-decoration: underline;
}

.breadcrumbs-grammar-structures-guide span {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-content-grammar-structures-guide,
  .intro-content-grammar-structures-guide,
  .fundamentals-wrapper-grammar-structures-guide,
  .structures-content-grammar-structures-guide,
  .application-content-grammar-structures-guide {
    flex-direction: column;
  }

  .hero-text-block-grammar-structures-guide,
  .hero-image-block-grammar-structures-guide,
  .intro-text-block-grammar-structures-guide,
  .intro-image-block-grammar-structures-guide,
  .fundamentals-text-grammar-structures-guide,
  .fundamentals-image-grammar-structures-guide,
  .structures-text-grammar-structures-guide,
  .structures-image-grammar-structures-guide,
  .application-text-grammar-structures-guide,
  .application-image-grammar-structures-guide {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-grammar-structures-guide {
    gap: 1.5rem;
  }

  .stat-number-grammar-structures-guide {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }

  .strategies-card-grammar-structures-guide {
    flex: 1 1 100%;
    max-width: none;
  }

  .related-card-grammar-structures-guide {
    flex: 1 1 100%;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hero-stats-grammar-structures-guide {
    flex-direction: column;
    gap: 1rem;
  }

  .meta-badge-grammar-structures-guide {
    font-size: 0.8125rem;
    padding: 0.4rem 0.75rem;
  }

  .list-item-grammar-structures-guide {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .list-number-grammar-structures-guide {
    min-width: auto;
  }
}

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

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

.main-listening-comprehension-immersion {
  width: 100%;
  background: #ffffff;
}

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

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

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

.breadcrumbs-listening-comprehension-immersion a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-listening-comprehension-immersion a:hover {
  color: #60a5fa;
}

.breadcrumbs-listening-comprehension-immersion span {
  color: #64748b;
}

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

.hero-text-listening-comprehension-immersion {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-listening-comprehension-immersion {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-listening-comprehension-immersion {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.meta-badge-listening-comprehension-immersion i {
  font-size: 0.9em;
}

.hero-img-listening-comprehension-immersion {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

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

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

.intro-section-listening-comprehension-immersion .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

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

.intro-text-listening-comprehension-immersion,
.intro-image-listening-comprehension-immersion {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-description-listening-comprehension-immersion {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.intro-text-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
}

.intro-img-listening-comprehension-immersion {
  max-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-listening-comprehension-immersion {
    flex-direction: column;
  }
  
  .intro-text-listening-comprehension-immersion,
  .intro-image-listening-comprehension-immersion {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.methodology-section-listening-comprehension-immersion .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.methodology-header-listening-comprehension-immersion {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.methodology-tag-listening-comprehension-immersion {
  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;
}

.methodology-title-listening-comprehension-immersion {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.methodology-subtitle-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.methodology-steps-listening-comprehension-immersion {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.methodology-step-listening-comprehension-immersion {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  align-items: flex-start;
}

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

.methodology-step-content-listening-comprehension-immersion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.methodology-step-title-listening-comprehension-immersion {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: #0a0f1e;
}

.methodology-step-text-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .methodology-step-listening-comprehension-immersion {
    flex-direction: column;
  }
}

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

.techniques-section-listening-comprehension-immersion .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.techniques-content-listening-comprehension-immersion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.techniques-text-listening-comprehension-immersion {
  flex: 1 1 50%;
  max-width: 50%;
}

.techniques-image-listening-comprehension-immersion {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.techniques-description-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.techniques-list-listening-comprehension-immersion {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.technique-item-listening-comprehension-immersion {
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 3px solid #3b82f6;
}

.technique-name-listening-comprehension-immersion {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0f1e;
  margin-bottom: 0.5rem;
}

.technique-detail-listening-comprehension-immersion {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
}

.techniques-img-listening-comprehension-immersion {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.tools-section-listening-comprehension-immersion {
  background: #0a0f1e;
  padding: clamp(3rem, 8vw, 6rem) 0;
  position: relative;
  overflow: hidden;
}

.tools-section-listening-comprehension-immersion .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.tools-header-listening-comprehension-immersion {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.tools-title-listening-comprehension-immersion {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tools-subtitle-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

.tools-grid-listening-comprehension-immersion {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.tool-card-listening-comprehension-immersion {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.tool-card-listening-comprehension-immersion:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.1);
}

.tool-icon-listening-comprehension-immersion {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  color: #3b82f6;
  font-size: 1.5rem;
}

.tool-card-title-listening-comprehension-immersion {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #ffffff;
}

.tool-card-text-listening-comprehension-immersion {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #cbd5e1;
  line-height: 1.6;
}

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

.progress-section-listening-comprehension-immersion .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.progress-content-listening-comprehension-immersion {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.progress-image-listening-comprehension-immersion {
  flex: 1 1 50%;
  max-width: 50%;
}

.progress-text-listening-comprehension-immersion {
  flex: 1 1 50%;
  max-width: 50%;
}

.progress-img-listening-comprehension-immersion {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.progress-description-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.progress-text-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.progress-quote-listening-comprehension-immersion {
  padding: 2rem 2.5rem;
  border-left: 4px solid #3b82f6;
  background: #ffffff;
  border-radius: 8px;
  margin-top: 2rem;
}

.progress-quote-text-listening-comprehension-immersion {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-style: italic;
  color: #1e293b;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.progress-quote-author-listening-comprehension-immersion {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

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

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

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

.conclusion-content-listening-comprehension-immersion {
  max-width: 800px;
  margin: 0 auto;
}

.conclusion-title-listening-comprehension-immersion {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-text-listening-comprehension-immersion {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.conclusion-checklist-listening-comprehension-immersion {
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #3b82f6;
  margin-top: 2rem;
}

.conclusion-checklist-title-listening-comprehension-immersion {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

.conclusion-checklist-items-listening-comprehension-immersion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-left: 1.5rem;
}

.checklist-item-listening-comprehension-immersion {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #475569;
  line-height: 1.6;
  list-style: disc;
}

.disclaimer-section-listening-comprehension-immersion {
  background: #f1f5f9;
  padding: clamp(2rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}

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

.disclaimer-content-listening-comprehension-immersion {
  background: #ffffff;
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-title-listening-comprehension-immersion {
  font-size: 1.125rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-text-listening-comprehension-immersion {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: #64748b;
  line-height: 1.7;
}

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

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

.related-header-listening-comprehension-immersion {
  text-align: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.related-title-listening-comprehension-immersion {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: 1rem;
}

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

.related-cards-listening-comprehension-immersion {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-listening-comprehension-immersion {
  flex: 1 1 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card-listening-comprehension-immersion:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.related-card-image-listening-comprehension-immersion {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-listening-comprehension-immersion {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-listening-comprehension-immersion {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 600;
  color: #0a0f1e;
  line-height: 1.3;
}

.related-card-text-listening-comprehension-immersion {
  font-size: clamp(0.8125rem, 1vw, 0.9375rem);
  color: #64748b;
  line-height: 1.5;
}

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

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

  .intro-section-listening-comprehension-immersion,
  .techniques-section-listening-comprehension-immersion,
  .progress-section-listening-comprehension-immersion,
  .conclusion-section-listening-comprehension-immersion {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }

  .methodology-section-listening-comprehension-immersion,
  .tools-section-listening-comprehension-immersion {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

@media (max-width: 320px) {
  .hero-title-listening-comprehension-immersion {
    word-break: break-word;
  }

  .breadcrumbs-listening-comprehension-immersion {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.main-group-immersion-learning {
  width: 100%;
  overflow: hidden;
}

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

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

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

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

.hero-text-wrapper-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.hero-subtitle-group-immersion-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 550px;
}

.article-meta-group-immersion-learning {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.meta-badge-group-immersion-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 20px;
  font-size: 0.875rem;
  color: #60a5fa;
}

.meta-badge-group-immersion-learning i {
  font-size: 0.95em;
}

.hero-stats-group-immersion-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-group-immersion-learning {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number-group-immersion-learning {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #f59e0b;
  line-height: 1;
}

.stat-label-group-immersion-learning {
  font-size: 0.8125rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.hero-image-wrapper-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-group-immersion-learning {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.breadcrumbs-group-immersion-learning {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: 0.9375rem;
}

.breadcrumbs-group-immersion-learning a {
  color: #60a5fa;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumbs-group-immersion-learning a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.breadcrumbs-group-immersion-learning span {
  color: #64748b;
}

@media (max-width: 768px) {
  .hero-content-group-immersion-learning {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-text-wrapper-group-immersion-learning,
  .hero-image-wrapper-group-immersion-learning {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-stats-group-immersion-learning {
    gap: 1.5rem;
  }
}

.introduction-section-group-immersion-learning {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

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

.introduction-text-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.introduction-title-group-immersion-learning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.introduction-paragraph-group-immersion-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.introduction-image-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-img-group-immersion-learning {
  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) {
  .introduction-content-group-immersion-learning {
    flex-direction: column;
    gap: 1.5rem;
  }

  .introduction-text-group-immersion-learning,
  .introduction-image-group-immersion-learning {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.learning-mechanics-section-group-immersion-learning {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.learning-mechanics-header-group-immersion-learning {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag-group-immersion-learning {
  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;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.learning-mechanics-title-group-immersion-learning {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.2;
}

.learning-mechanics-subtitle-group-immersion-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.mechanics-steps-group-immersion-learning {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.mechanics-step-group-immersion-learning {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  align-items: flex-start;
  transition: box-shadow 0.3s ease;
}

.mechanics-step-group-immersion-learning:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mechanics-step-number-group-immersion-learning {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #3b82f6;
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

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

.mechanics-step-title-group-immersion-learning {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #0a0f1e;
  line-height: 1.3;
}

.mechanics-step-text-group-immersion-learning {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mechanics-step-group-immersion-learning {
    gap: 1rem;
    padding: 1.25rem;
  }
}

.structure-benefits-section-group-immersion-learning {
  background: #111d2f;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.structure-benefits-wrapper-group-immersion-learning {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.structure-benefits-text-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.structure-benefits-title-group-immersion-learning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.structure-benefits-paragraph-group-immersion-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.benefits-list-group-immersion-learning {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.benefit-item-group-immersion-learning {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon-group-immersion-learning {
  color: #10b981;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.benefit-text-group-immersion-learning {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

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

.benefit-description-group-immersion-learning {
  font-size: 0.9375rem;
  color: #a1aec8;
  line-height: 1.5;
}

.structure-benefits-image-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-img-group-immersion-learning {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .structure-benefits-wrapper-group-immersion-learning {
    flex-direction: column;
    gap: 1.5rem;
  }

  .structure-benefits-text-group-immersion-learning,
  .structure-benefits-image-group-immersion-learning {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.implementation-section-group-immersion-learning {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.implementation-header-group-immersion-learning {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.implementation-title-group-immersion-learning {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.2;
}

.implementation-subtitle-group-immersion-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.implementation-wrapper-group-immersion-learning {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.implementation-text-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.implementation-subheading-group-immersion-learning {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.implementation-paragraph-group-immersion-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

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

.quote-text-group-immersion-learning {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: #1e293b;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.quote-cite-group-immersion-learning {
  font-size: 0.875rem;
  color: #64748b;
  font-style: normal;
}

.implementation-image-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.impl-img-group-immersion-learning {
  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) {
  .implementation-wrapper-group-immersion-learning {
    flex-direction: column;
    gap: 1.5rem;
  }

  .implementation-text-group-immersion-learning,
  .implementation-image-group-immersion-learning {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.challenges-solutions-section-group-immersion-learning {
  background: #f8fafc;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.challenges-header-group-immersion-learning {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.challenges-title-group-immersion-learning {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  line-height: 1.2;
}

.challenges-subtitle-group-immersion-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.challenges-grid-group-immersion-learning {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2rem);
  justify-content: center;
}

.challenge-card-group-immersion-learning {
  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;
}

.challenge-card-group-immersion-learning:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.challenge-card-title-group-immersion-learning {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.challenge-card-text-group-immersion-learning {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.6;
}

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

.success-metrics-section-group-immersion-learning {
  background: #0d1526;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.success-metrics-wrapper-group-immersion-learning {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.success-metrics-text-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.success-metrics-title-group-immersion-learning {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.success-metrics-paragraph-group-immersion-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.success-metrics-list-group-immersion-learning {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.metrics-list-item-group-immersion-learning {
  font-size: 0.9375rem;
  color: #cbd5e1;
  line-height: 1.6;
  padding-left: 1.75rem;
  position: relative;
}

.metrics-list-item-group-immersion-learning::before {
  content: "";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 800;
}

.success-metrics-image-group-immersion-learning {
  flex: 1 1 50%;
  max-width: 50%;
}

.metrics-img-group-immersion-learning {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .success-metrics-wrapper-group-immersion-learning {
    flex-direction: column;
    gap: 1.5rem;
  }

  .success-metrics-text-group-immersion-learning,
  .success-metrics-image-group-immersion-learning {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.conclusion-section-group-immersion-learning {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.conclusion-content-group-immersion-learning {
  max-width: 750px;
  margin: 0 auto;
}

.conclusion-title-group-immersion-learning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  text-align: center;
}

.conclusion-paragraph-group-immersion-learning {
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}

.conclusion-cta-group-immersion-learning {
  text-align: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.cta-button-group-immersion-learning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
  background: #3b82f6;
  color: #ffffff;
  border-radius: 12px;
  font-size: clamp(0.9375rem, 1vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cta-button-group-immersion-learning:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.cta-button-group-immersion-learning:active {
  transform: translateY(0);
}

.disclaimer-section-group-immersion-learning {
  background: #f1f5f9;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  border-top: 1px solid #e2e8f0;
}

.disclaimer-content-group-immersion-learning {
  max-width: 750px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  border-radius: 12px;
  border-left: 4px solid #f59e0b;
}

.disclaimer-title-group-immersion-learning {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.disclaimer-text-group-immersion-learning {
  font-size: 0.9375rem;
  color: #475569;
  line-height: 1.7;
}

.related-section-group-immersion-learning {
  background: #ffffff;
  padding: clamp(3rem, 8vw, 6rem) 0;
  border-top: 1px solid #e2e8f0;
}

.related-header-group-immersion-learning {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.related-title-group-immersion-learning {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: 1.2;
}

.related-subtitle-group-immersion-learning {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.125rem);
  color: #64748b;
  line-height: 1.6;
}

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

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

.related-card-group-immersion-learning:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.related-card-image-group-immersion-learning {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-img-group-immersion-learning {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.related-card-title-group-immersion-learning {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}

.related-card-text-group-immersion-learning {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  flex-grow: 1;
}

.related-card-link-group-immersion-learning {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #3b82f6;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
}

.related-card-link-group-immersion-learning:hover {
  color: #1e40af;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .hero-stats-group-immersion-learning {
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .challenges-grid-group-immersion-learning {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }
}

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

  .learning-mechanics-section-group-immersion-learning {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

@media print {
  .breadcrumbs-group-immersion-learning,
  .related-section-group-immersion-learning {
    display: none;
  }

  .main-group-immersion-learning {
    background: #ffffff;
    color: #000000;
  }
}

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0d1526;
  --color-bg-dark-tertiary: #111d2f;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-text-dark-primary: #ffffff;
  --color-text-dark-secondary: #e2e8f0;
  --color-text-dark-muted: #94a3b8;
  --color-text-light-primary: #0a0f1e;
  --color-text-light-secondary: #374151;
  --color-text-light-muted: #6b7280;
  --color-primary: #3b82f6;
  --color-primary-light: #60a5fa;
  --color-accent-emerald: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --radius-md: 8px;
  --radius-lg: 12px;
}

.dutch-immersion-about {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-text-dark-primary);
}

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

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

.hero-vision-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-vision-title-about {
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark-primary);
  line-height: 1.15;
  margin: 0;
}

.hero-vision-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.3rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  max-width: 700px;
  line-height: 1.7;
  margin: 0;
}

.hero-stats-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 3rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.stat-box-about {
  flex: 1 1 150px;
}

.stat-number-about {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

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

.hero-visual-about {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: 2rem;
}

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

.methodology-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 6vw, 4rem);
}

.section-header-about {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-tag-about {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(59, 130, 246, 0.15);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.section-description-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

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

.step-card-about {
  display: flex;
  align-items: flex-start;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-dark-tertiary);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card-about:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

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

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

.step-title-about {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0;
}

.step-description-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  line-height: 1.6;
}

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

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

.strength-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  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);
  transition: transform 0.3s ease, background 0.3s ease;
}

.strength-card-about:hover {
  transform: translateY(-5px);
  background: rgba(59, 130, 246, 0.1);
}

.strength-icon-about {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-md);
  color: var(--color-accent-emerald);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.strength-title-about {
  font-size: clamp(1.0625rem, 2vw, 1.1875rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0;
}

.strength-text-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  line-height: 1.6;
}

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

.impact-wrapper-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.impact-text-about {
  max-width: 800px;
}

.impact-intro-about {
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.featured-quote-about {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.1);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.quote-text-about {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--color-text-dark-primary);
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.quote-author-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-muted);
  font-style: normal;
  display: block;
}

.story-image-about {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

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

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

.commitment-item-about {
  flex: 1 1 260px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: rgba(16, 185, 129, 0.08);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  text-align: center;
}

.commitment-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent-emerald);
  line-height: 1;
  margin: 0;
}

.commitment-label-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-weight: 500;
}

.disclaimer-section-about {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disclaimer-heading-about {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 600;
  color: var(--color-text-dark-primary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

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

@media (min-width: 768px) {
  .hero-stats-grid-about {
    gap: 3rem;
  }

  .stat-box-about {
    flex: 0 1 auto;
  }

  .approach-steps-about {
    gap: 1.5rem;
  }

  .step-card-about {
    gap: 2rem;
  }

  .strengths-grid-about {
    gap: 2rem;
  }

  .commitment-cards-about {
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .step-card-about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number-about {
    min-width: auto;
  }

  .strength-card-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .commitment-item-about {
    flex: 1 1 100%;
    max-width: none;
  }
}

.language-hub {
  width: 100%;
  font-family: var(--font-primary);
}

.language-hub-hero {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.language-hub-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.language-hub-hero h1 {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.language-hub-hero-meta {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.language-hub-section {
  width: 100%;
  background: var(--color-bg-light-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.language-hub-section:nth-child(even) {
  background: var(--color-bg-light-secondary);
}

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

.language-hub-section-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.language-hub-section h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #0a0f1e;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.language-hub-section p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #374151;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.language-hub-section ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-left: 1.5rem;
}

.language-hub-section li {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #374151;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.language-hub-section strong {
  color: #0a0f1e;
  font-weight: 600;
}

.language-hub-contact {
  width: 100%;
  background: var(--color-bg-dark-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.language-hub-contact-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.language-hub-contact h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.language-hub-contact p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  color: #e2e8f0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.language-hub-contact strong {
  color: #ffffff;
  font-weight: 600;
}

@media (min-width: 768px) {
  .language-hub-hero {
    padding: 5rem 0;
  }

  .language-hub-section {
    padding: 5rem 0;
  }

  .language-hub-contact {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .language-hub-hero {
    padding: 6rem 0;
  }

  .language-hub-section {
    padding: 6rem 0;
  }

  .language-hub-contact {
    padding: 6rem 0;
  }
}

.thank-page {
  width: 100%;
}

.thank-section {
  background: var(--color-bg-dark-primary);
  padding: clamp(2.5rem, 8vw, 6rem) 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.thank-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(60px, 12vw, 120px);
  height: clamp(60px, 12vw, 120px);
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.thank-icon i {
  font-size: clamp(2rem, 6vw, 4rem);
  color: var(--color-accent-emerald);
}

.thank-section h1 {
  color: var(--color-text-dark-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-lead {
  color: var(--color-accent-emerald);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-family: var(--font-primary);
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

.thank-description,
.thank-expectation {
  color: var(--color-text-dark-secondary);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.125rem);
  font-family: var(--font-primary);
  line-height: 1.7;
  margin: 0;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.thank-expectation {
  color: var(--color-text-dark-muted);
  font-style: italic;
}

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

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

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

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

  .thank-content {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: clamp(5rem, 12vw, 10rem) 0;
  }

  .thank-content {
    gap: clamp(2.5rem, 5vw, 3.5rem);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: 8rem 0;
  }

  .thank-content {
    gap: 3.5rem;
  }
}

.error-page {
  width: 100%;
}

.error-section {
  background: var(--color-bg-dark-primary);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
  position: relative;
}

.error-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.error-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
  pointer-events: none;
}

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

.error-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  width: 100%;
}

.error-code-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 12vw + 1rem, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-scale 3s ease-in-out infinite;
  margin: 0;
  line-height: 1;
}

.error-decoration {
  width: clamp(60px, 30vw, 150px);
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent-gold) 50%, var(--color-accent-emerald) 100%);
  border-radius: var(--radius-xl);
  animation: slide-in 0.8s ease-out 0.2s both;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-dark-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw + 0.25rem, 1.25rem);
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.5;
  max-width: 500px;
  font-weight: 500;
}

.error-message {
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.0625rem);
  color: var(--color-text-dark-muted);
  margin: 0;
  line-height: 1.7;
  max-width: 550px;
  letter-spacing: 0.3px;
}

.error-content .btn-primary {
  background: var(--color-primary);
  color: #000000;
  padding: clamp(0.875rem, 2vw, 1.125rem) clamp(2rem, 5vw, 2.5rem);
  font-size: clamp(0.9375rem, 1vw + 0.5rem, 1.0625rem);
  border-radius: var(--radius-lg);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
  margin-top: clamp(0.5rem, 2vw, 1rem);
  border: 2px solid var(--color-primary);
  cursor: pointer;
}

.error-content .btn-primary:hover {
  background: var(--color-primary-light);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.35);
  transform: translateY(-2px);
}

.error-content .btn-primary:active {
  transform: translateY(0);
}

.error-icons {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(1.5rem, 4vw, 2.5rem);
  justify-content: center;
  flex-wrap: wrap;
}

.icon-item {
  width: clamp(50px, 10vw, 70px);
  height: clamp(50px, 10vw, 70px);
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
  font-size: clamp(1.5rem, 4vw, 2rem);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float 4s ease-in-out infinite;
}

.icon-item:nth-child(2) {
  animation-delay: 0.2s;
}

.icon-item:nth-child(3) {
  animation-delay: 0.4s;
}

.icon-item:hover {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--color-primary);
  transform: translateY(-4px);
}

@keyframes pulse-scale {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }
}

@keyframes slide-in {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: clamp(60px, 30vw, 150px);
    opacity: 1;
  }
}

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

@media (min-width: 768px) {
  .error-section {
    padding: clamp(2rem, 6vw, 4rem) 0;
  }

  .error-code {
    animation: pulse-scale 3s ease-in-out infinite;
  }

  .error-icons {
    gap: 2.5rem;
  }

  .icon-item {
    width: 80px;
    height: 80px;
  }
}

@media (min-width: 1024px) {
  .error-section {
    padding: 4rem 0;
  }

  .error-content {
    gap: 2.5rem;
  }

  .error-code-wrapper {
    margin-bottom: 1.5rem;
  }

  .icon-item {
    width: 90px;
    height: 90px;
    font-size: 2rem;
  }

  .error-message {
    max-width: 600px;
  }
}

@media (min-width: 1440px) {
  .error-section {
    padding: 6rem 0;
  }

  .error-content {
    gap: 3rem;
  }

  .error-code-wrapper {
    margin-bottom: 2rem;
  }
}

.error-content .btn-primary:focus {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

.icon-item:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

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

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.header-language-hub-mobile-toggle[aria-expanded="true"]{
  display: none;
} 