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

:root {
  --color-bg-primary: #0a0f1e;
  --color-bg-secondary: #0d1526;
  --color-bg-tertiary: #111d2f;
  --color-bg-card: rgba(13, 21, 38, 0.6);
  --color-bg-card-hover: rgba(17, 29, 47, 0.8);

  --color-text-primary: #ffffff;
  --color-text-secondary: #94a3b8;
  --color-text-muted: #64748b;

  --color-primary: #f59e0b;
  --color-primary-hover: #d97706;
  --color-primary-light: #fbbf24;
  --color-secondary: #3b82f6;
  --color-secondary-hover: #2563eb;
  --color-accent: #10b981;
  --color-accent-hover: #059669;

  --color-border: rgba(148, 163, 184, 0.2);
  --color-border-light: rgba(148, 163, 184, 0.1);

  --color-error: #ef4444;
  --color-warning: #f59e0b;
  --color-success: #10b981;
  --color-info: #3b82f6;

  --font-primary: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', 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: 24px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(245, 158, 11, 0.2);

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: var(--line-height-normal);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0;
  color: var(--color-text-primary);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
  font-weight: 600;
}

p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}

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

button {
  margin: 0;
  padding: 0;
  border: none;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--transition-base);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-base);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--color-primary-hover);
  box-shadow: var(--shadow-glow);
}

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

.btn-secondary:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-primary-hover);
}

.btn-tertiary {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border-color: var(--color-border);
}

.btn-tertiary:hover {
  background: var(--color-bg-card-hover);
  border-color: var(--color-primary);
}

.btn-sm {
  padding: var(--space-xs) var(--space-md);
  font-size: 0.875rem;
}

.btn-lg {
  padding: var(--space-md) var(--space-xl);
  font-size: 1.125rem;
}

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  transition: all var(--transition-base);
  backdrop-filter: blur(10px);
}

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

.badge {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-md);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-primary {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary-light);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-secondary {
  background: rgba(59, 130, 246, 0.15);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-success {
  background: rgba(16, 185, 129, 0.15);
  color: #a7f3d0;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

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

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

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

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

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

.flex {
  display: flex;
}

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

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

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

.gap-xs {
  gap: var(--space-xs);
}

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

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

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

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

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

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

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

.text-primary-accent {
  color: var(--color-primary);
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.font-normal {
  font-weight: 400;
}

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

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

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

.leading-tight {
  line-height: var(--line-height-tight);
}

.leading-normal {
  line-height: var(--line-height-normal);
}

.leading-relaxed {
  line-height: var(--line-height-relaxed);
}

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

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

.my-xs { margin-top: var(--space-xs); margin-bottom: var(--space-xs); }
.my-sm { margin-top: var(--space-sm); margin-bottom: var(--space-sm); }
.my-md { margin-top: var(--space-md); margin-bottom: var(--space-md); }
.my-lg { margin-top: var(--space-lg); margin-bottom: var(--space-lg); }
.my-xl { margin-top: var(--space-xl); margin-bottom: var(--space-xl); }
.my-2xl { margin-top: var(--space-2xl); margin-bottom: var(--space-2xl); }
.my-3xl { margin-top: var(--space-3xl); margin-bottom: var(--space-3xl); }

.p-xs { padding: var(--space-xs); }
.p-sm { padding: var(--space-sm); }
.p-md { padding: var(--space-md); }
.p-lg { padding: var(--space-lg); }
.p-xl { padding: var(--space-xl); }
.p-2xl { padding: var(--space-2xl); }
.p-3xl { padding: var(--space-3xl); }

.px-sm { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-md { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-lg { padding-left: var(--space-lg); padding-right: var(--space-lg); }
.px-xl { padding-left: var(--space-xl); padding-right: var(--space-xl); }

.py-sm { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-md { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-lg { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-xl { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

.border {
  border: 1px solid var(--color-border);
}

.border-top {
  border-top: 1px solid var(--color-border);
}

.border-bottom {
  border-bottom: 1px solid var(--color-border);
}

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

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

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

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

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

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: var(--shadow-sm);
}

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

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

.shadow-xl {
  box-shadow: var(--shadow-xl);
}

.shadow-glow {
  box-shadow: var(--shadow-glow);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-full {
  max-width: 100%;
}

.overflow-hidden {
  overflow: hidden;
}

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

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

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

.list-none {
  list-style: none;
  margin: 0;
  padding: 0;
}

input,
textarea,
select {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
}

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

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

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--color-text-primary);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

th {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: var(--space-md);
  text-align: left;
  font-weight: 600;
  border-bottom: 1px solid var(--color-border);
}

td {
  padding: var(--space-md);
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-secondary);
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background: rgba(245, 158, 11, 0.05);
}

code {
  background: var(--color-bg-tertiary);
  color: var(--color-primary-light);
  padding: 0.2em 0.4em;
  border-radius: var(--radius-sm);
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

pre {
  background: var(--color-bg-tertiary);
  color: var(--color-text-primary);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow-x: auto;
  border: 1px solid var(--color-border);
}

blockquote {
  margin: 0;
  padding-left: var(--space-lg);
  border-left: 4px solid var(--color-primary);
  color: var(--color-text-secondary);
  font-style: italic;
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--space-lg) 0;
}

::selection {
  background: rgba(245, 158, 11, 0.3);
  color: var(--color-text-primary);
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

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

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

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

@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;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .container {
    padding: 0 var(--space-md);
  }
}
.header-currency-vault {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: static;
  z-index: 100;
  overflow: hidden;
}

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

.header-currency-vault-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.75rem;
  flex-shrink: 0;
}

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

.header-currency-vault-logo-text {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.header-currency-vault-brand:hover .header-currency-vault-logo-text {
  color: var(--color-accent);
  transition: color var(--transition-fast);
}

.header-currency-vault-desktop-nav {
  display: none;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  flex-grow: 1;
  margin-left: clamp(1rem, 3vw, 2rem);
}

.header-currency-vault-nav-link {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
  white-space: nowrap;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.header-currency-vault-nav-link:hover {
  color: var(--color-accent);
}

.header-currency-vault-cta-button {
  display: none;
  padding: 0.75rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-currency-vault-cta-button:hover {
  background: var(--color-accent-hover);
  opacity: 0.9;
}

.header-currency-vault-mobile-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 0.35rem;
  flex-shrink: 0;
}

.header-currency-vault-hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.header-currency-vault-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
}

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

.header-currency-vault-mobile-header {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 2rem);
  border-bottom: 1px solid var(--color-border-light);
}

.header-currency-vault-mobile-close {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  font-size: 1.5rem;
  transition: color var(--transition-fast);
}

.header-currency-vault-mobile-close:hover {
  color: var(--color-accent);
}

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

.header-currency-vault-mobile-link {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-light);
  transition: all var(--transition-fast);
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.header-currency-vault-mobile-link:hover {
  background: var(--color-bg-secondary);
  color: var(--color-accent);
}

.header-currency-vault-mobile-cta {
  padding: 1rem clamp(1rem, 4vw, 2rem);
  margin: 1rem clamp(1rem, 4vw, 2rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  text-decoration: none;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all var(--transition-fast);
  display: block;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.header-currency-vault-mobile-cta:hover {
  background: var(--color-accent-hover);
  opacity: 0.9;
}

@media (min-width: 768px) {
  .header-currency-vault-container {
    height: 80px;
    gap: 2rem;
  }

  .header-currency-vault-desktop-nav {
    display: flex;
  }

  .header-currency-vault-cta-button {
    display: block;
  }

  .header-currency-vault-mobile-toggle {
    display: none;
  }

  .header-currency-vault-mobile-menu {
    display: none;
  }
}

@media (min-width: 1024px) {
  .header-currency-vault-container {
    height: 85px;
  }

  .header-currency-vault-logo-text {
    font-size: 1.25rem;
  }

  .header-currency-vault-nav-link {
    font-size: 1rem;
  }

  .header-currency-vault-cta-button {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }
}

    

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block !important;
}

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

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

.hero-text-block-index {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.hero-image-block-index {
  flex: 1 1 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-index {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 0;
}

.hero-title-index {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.hero-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
}

.hero-buttons-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  padding-top: 0.5rem;
}

.btn-primary-index,
.btn-secondary-index {
  padding: 0.875rem 2rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition-base);
}

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

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

.btn-secondary-index {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-secondary-index:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: var(--color-primary-hover);
}

.hero-stats-index {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

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

.stat-number-index {
  color: var(--color-primary);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.25rem);
  font-weight: 800;
  font-family: var(--font-heading);
}

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

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

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

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

  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
    text-align: center;
  }

  .hero-image-index {
    max-height: 350px;
  }
}

.benefits-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.benefits-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.benefits-header-index {
  text-align: center;
}

.benefits-title-index {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

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

.benefit-card-index {
  flex: 1 1 280px;
  max-width: 320px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-base);
}

.benefit-card-index:hover {
  transform: translateY(-4px);
  background: var(--color-bg-tertiary);
}

.card-icon-index {
  font-size: clamp(1.75rem, 3vw + 0.5rem, 2.5rem);
  color: var(--color-primary);
}

.card-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.how-it-works-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.how-it-works-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.how-it-works-header-index {
  text-align: center;
}

.how-it-works-title-index {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.how-it-works-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.how-it-works-steps-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.process-step-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-index {
  color: var(--color-primary);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 800;
  font-family: var(--font-heading);
  flex-shrink: 0;
  min-width: clamp(3rem, 8vw, 5rem);
}

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

.step-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

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

.features-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.features-header-index {
  text-align: center;
}

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

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

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

.feature-card-index {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-base);
}

.feature-card-index:hover {
  transform: translateY(-5px);
  background: var(--color-bg-tertiary);
}

.statistics-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.statistics-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.statistics-header-index {
  text-align: center;
}

.statistics-title-index {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

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

.stat-block-index {
  flex: 1 1 280px;
  max-width: 350px;
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 0;
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.stat-number-large-index {
  color: var(--color-primary);
  font-size: clamp(2rem, 4vw + 1rem, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
}

.stat-description-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  line-height: 1.6;
}

.blog-preview-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.blog-preview-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.blog-preview-header-index {
  text-align: center;
}

.blog-preview-title-index {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.blog-preview-subtitle-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  max-width: 600px;
  margin: 0 auto;
}

.blog-preview-category-tag-index {
  text-align: center;
  padding: 0 0 1rem 0;
}

.category-tag-index {
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-primary);
  border-radius: 0;
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  font-weight: 600;
}

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

.featured-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-base);
}

.featured-card-index:hover {
  transform: translateY(-5px);
}

.card-image-wrapper-index {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
  overflow: hidden;
}

.featured-card-image-index {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.featured-card-title-index {
  color: var(--color-text-primary);
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.375rem);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.4;
}

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

.card-link-index {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  transition: var(--transition-base);
  display: inline-block;
}

.card-link-index:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.blog-preview-cta-index {
  display: flex;
  justify-content: center;
  padding-top: 1rem;
}

.faq-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.faq-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.faq-header-index {
  text-align: center;
}

.faq-title-index {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

.faq-list-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}

.faq-item-index {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: 0;
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-question-index {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 700;
  font-family: var(--font-heading);
}

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

.testimonials-section-index {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.testimonials-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.testimonials-header-index {
  text-align: center;
}

.testimonials-title-index {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

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

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

.testimonial-card-index {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: 0;
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
}

.testimonial-quote-index {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.testimonial-quote-index p {
  color: var(--color-text-primary);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.025rem);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 0.9vw + 0.25rem, 0.875rem);
  font-weight: 600;
  display: block;
}

.cta-final-section-index {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.cta-final-content-index {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
  align-items: center;
}

.cta-box-index {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 0;
  text-align: center;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.cta-box-title-index {
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  font-weight: 800;
}

.cta-box-text-index {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(0.875rem, 1.5vw + 0.5rem, 1.125rem);
  line-height: 1.6;
}

.cta-box-index .btn-primary-index {
  background: #ffffff;
  color: #000000;
  align-self: center;
}

.cta-box-index .btn-primary-index:hover {
  background: rgba(255, 255, 255, 0.9);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: clamp(1rem, 2vw, 1.5rem);
  background: var(--color-bg-secondary);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  border-top: 1px solid var(--color-border);
}

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

.cookie-banner-text-index {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  line-height: 1.5;
  max-width: 400px;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: 0.5rem 1.25rem;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: clamp(0.75rem, 1vw + 0.25rem, 0.875rem);
  transition: var(--transition-base);
  font-family: var(--font-primary);
}

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

.cookie-btn-accept-index:hover {
  background: var(--color-primary-hover);
}

.cookie-btn-decline-index {
  background: transparent;
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-light);
}

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

@media (max-width: 1024px) {
  .hero-content-index {
    flex-direction: column;
  }

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

  .benefits-cards-index,
  .features-cards-index,
  .featured-cards-index,
  .statistics-grid-index {
    flex-direction: column;
    align-items: center;
  }

  .benefit-card-index,
  .feature-card-index,
  .featured-card-index,
  .stat-block-index {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

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

@media (max-width: 480px) {
  .hero-buttons-index {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-index,
  .btn-secondary-index {
    width: 100%;
    text-align: center;
  }

  .hero-stats-index {
    flex-direction: column;
    gap: 1rem;
  }

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

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

    .footer {
  background: var(--color-bg-secondary);
  color: var(--color-text-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3.5rem);
}

.footer-about {
  max-width: 500px;
}

.footer-about h3,
.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  color: var(--color-text-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  letter-spacing: -0.5px;
}

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

.footer-nav-list,
.footer-legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1.5vw, 0.875rem);
}

.footer-nav-list li,
.footer-legal-list li {
  margin: 0;
  padding: 0;
}

.footer-nav a,
.footer-legal a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--color-accent);
  transform: translateX(4px);
}

.footer-contact p {
  color: var(--color-text-secondary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  margin: 0;
  padding: 0;
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.footer-contact p + p {
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.footer-copyright {
  text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
  border-top: 1px solid var(--color-border-light);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.footer-copyright p {
  color: var(--color-text-muted);
  font-size: clamp(0.8125rem, 0.95vw, 0.9375rem);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (min-width: 768px) {
  .footer-content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(2.5rem, 6vw, 4rem);
    align-items: flex-start;
  }

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

  .footer-nav {
    flex: 0 1 auto;
  }

  .footer-contact {
    flex: 0 1 auto;
  }

  .footer-legal {
    flex: 0 1 auto;
  }

  .footer-copyright {
    flex: 1 1 100%;
    text-align: center;
    border-top: 1px solid var(--color-border-light);
    padding-top: clamp(1.5rem, 3vw, 2.5rem);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .footer-nav-list,
  .footer-legal-list {
    gap: clamp(0.625rem, 1.5vw, 1rem);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    gap: clamp(3rem, 7vw, 5rem);
  }

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

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

.category-page-wechselkurs {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

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

.hero-content-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

.hero-text-wechselkurs {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title-wechselkurs {
  font-size: clamp(2rem, 6vw + 0.5rem, 4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-subtitle-wechselkurs {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-wechselkurs {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-section-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.posts-content-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.posts-header-wechselkurs {
  text-align: center;
}

.posts-title-wechselkurs {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 2vw, 1rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.posts-subtitle-wechselkurs {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.card-wechselkurs {
  display: flex;
  flex-direction: column;
  flex: 1 1 clamp(280px, 45vw, 380px);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: clamp(1.25rem, 3vw, 2rem);
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all var(--transition-base);
  box-shadow: var(--shadow-md);
}

.card-wechselkurs:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-image-wechselkurs {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.card-inner-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 2vw, 1.25rem);
  flex: 1;
}

.card-title-wechselkurs {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-wechselkurs {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-meta-wechselkurs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  align-items: center;
  margin-top: auto;
  padding-top: clamp(0.75rem, 1.5vw, 1rem);
  border-top: 1px solid var(--color-border-light);
}

.card-reading-time-wechselkurs,
.card-level-wechselkurs,
.card-date-wechselkurs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-muted);
}

.card-reading-time-wechselkurs i,
.card-level-wechselkurs i,
.card-date-wechselkurs i {
  color: var(--color-accent);
}

.card-link-wechselkurs {
  display: inline-block;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-base);
  align-self: flex-start;
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.card-link-wechselkurs:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

.trends-content-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 5vw, 4rem);
}

.trends-header-wechselkurs {
  text-align: center;
}

.trends-title-wechselkurs {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trends-list-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.trend-item-wechselkurs {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
}

.trend-item-title-wechselkurs {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trend-item-text-wechselkurs {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.context-section-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(4rem, 10vw, 8rem) 0;
  overflow: hidden;
}

.context-content-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.context-header-wechselkurs {
  text-align: center;
}

.context-title-wechselkurs {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.context-text-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2vw, 1.75rem);
}

.context-paragraph-wechselkurs {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .hero-section-wechselkurs {
    padding: 3rem 0;
  }

  .posts-section-wechselkurs {
    padding: 3rem 0;
  }

  .trends-section-wechselkurs {
    padding: 3rem 0;
  }

  .context-section-wechselkurs {
    padding: 3rem 0;
  }

  .card-wechselkurs {
    flex: 1 1 100%;
  }

  .card-meta-wechselkurs {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .card-wechselkurs {
    flex: 1 1 calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .card-wechselkurs {
    flex: 1 1 calc(25% - 1.875rem);
    max-width: 380px;
  }

  .card-wechselkurs:hover {
    box-shadow: var(--shadow-xl);
  }
}

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

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

.main-realer-effektiver-wechselkurs {
  width: 100%;
}

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

.hero-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.hero-text-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.hero-subtitle-realer-effektiver-wechselkurs {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  line-height: var(--line-height-relaxed);
}

.hero-meta-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-realer-effektiver-wechselkurs {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.meta-item-realer-effektiver-wechselkurs i {
  color: var(--color-accent);
}

.hero-img-realer-effektiver-wechselkurs {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
}

.breadcrumbs-realer-effektiver-wechselkurs a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumbs-realer-effektiver-wechselkurs a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-realer-effektiver-wechselkurs span {
  color: var(--color-text-muted);
}

.intro-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.intro-text-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.intro-paragraph-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.intro-image-realer-effektiver-wechselkurs img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.components-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.components-content-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.components-text-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-image-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.components-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.components-paragraph-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.components-highlight-realer-effektiver-wechselkurs {
  background: var(--color-bg-card);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-normal);
}

.components-image-realer-effektiver-wechselkurs img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.impact-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-content-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impact-image-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-text-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.impact-paragraph-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.impact-image-realer-effektiver-wechselkurs img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.monitoring-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.monitoring-content-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: flex-start;
}

.monitoring-text-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.monitoring-image-realer-effektiver-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.monitoring-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-tight);
}

.monitoring-paragraph-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.monitoring-tips-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  margin-top: clamp(1.5rem, 3vw, 2rem);
}

.tip-item-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: flex-start;
}

.tip-number-realer-effektiver-wechselkurs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--color-accent);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.95rem;
}

.tip-text-realer-effektiver-wechselkurs {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
}

.monitoring-image-realer-effektiver-wechselkurs img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.strategy-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategy-content-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.strategy-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.strategy-intro-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: var(--line-height-relaxed);
}

.strategy-cards-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-realer-effektiver-wechselkurs {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  transition: var(--transition-base);
}

.strategy-card-realer-effektiver-wechselkurs:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.card-text-realer-effektiver-wechselkurs {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.conclusion-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.conclusion-text-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.conclusion-quote-realer-effektiver-wechselkurs {
  margin: clamp(1.5rem, 3vw, 2.5rem) 0;
}

.featured-quote-realer-effektiver-wechselkurs {
  padding: clamp(1.5rem, 2vw, 2rem);
  border-left: 4px solid var(--color-accent);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  font-style: italic;
  color: var(--color-text-primary);
  font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.2rem);
  line-height: var(--line-height-relaxed);
}

.featured-quote-realer-effektiver-wechselkurs p {
  margin: 0;
}

.conclusion-action-realer-effektiver-wechselkurs {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.action-text-realer-effektiver-wechselkurs {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.disclaimer-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-box-realer-effektiver-wechselkurs {
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-info);
}

.disclaimer-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 1.5vw, 1rem);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.disclaimer-title-realer-effektiver-wechselkurs i {
  color: var(--color-info);
}

.disclaimer-text-realer-effektiver-wechselkurs {
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.related-section-realer-effektiver-wechselkurs {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.related-content-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-realer-effektiver-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: var(--line-height-tight);
}

.related-cards-realer-effektiver-wechselkurs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-realer-effektiver-wechselkurs {
  flex: 1 1 320px;
  max-width: 420px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition-base);
  box-shadow: var(--shadow-md);
}

.related-card-realer-effektiver-wechselkurs:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-image-realer-effektiver-wechselkurs {
  width: 100%;
  height: auto;
  max-height: 250px;
  overflow: hidden;
}

.related-img-realer-effektiver-wechselkurs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-realer-effektiver-wechselkurs {
  padding: clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  flex: 1;
}

.related-card-title-realer-effektiver-wechselkurs {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
}

.related-card-text-realer-effektiver-wechselkurs {
  font-size: clamp(0.8rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.related-link-realer-effektiver-wechselkurs {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  transition: var(--transition-base);
  align-self: flex-start;
}

.related-link-realer-effektiver-wechselkurs:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .hero-content-realer-effektiver-wechselkurs,
  .intro-content-realer-effektiver-wechselkurs,
  .components-content-realer-effektiver-wechselkurs,
  .impact-content-realer-effektiver-wechselkurs,
  .monitoring-content-realer-effektiver-wechselkurs {
    flex-direction: column;
  }

  .hero-text-realer-effektiver-wechselkurs,
  .hero-image-realer-effektiver-wechselkurs,
  .intro-text-realer-effektiver-wechselkurs,
  .intro-image-realer-effektiver-wechselkurs,
  .components-text-realer-effektiver-wechselkurs,
  .components-image-realer-effektiver-wechselkurs,
  .impact-text-realer-effektiver-wechselkurs,
  .impact-image-realer-effektiver-wechselkurs,
  .monitoring-text-realer-effektiver-wechselkurs,
  .monitoring-image-realer-effektiver-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-cards-realer-effektiver-wechselkurs {
    flex-direction: column;
  }

  .strategy-card-realer-effektiver-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-cards-realer-effektiver-wechselkurs {
    flex-direction: column;
  }

  .related-card-realer-effektiver-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-meta-realer-effektiver-wechselkurs {
    flex-direction: column;
    gap: 0.75rem;
  }

  .breadcrumbs-realer-effektiver-wechselkurs {
    flex-direction: column;
    gap: 0.25rem;
  }

  .monitoring-tips-realer-effektiver-wechselkurs {
    gap: 1rem;
  }
}

.main-eur-usd-exportchancen {
    width: 100%;
  }

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

  .hero-section-eur-usd-exportchancen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .breadcrumbs-eur-usd-exportchancen {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: clamp(2rem, 5vw, 3rem);
    font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  }

  .breadcrumbs-eur-usd-exportchancen a {
    color: var(--color-accent);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .breadcrumbs-eur-usd-exportchancen a:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
  }

  .breadcrumbs-eur-usd-exportchancen span {
    color: var(--color-text-secondary);
  }

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

  .hero-text-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .hero-subtitle-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.2vw + 0.5rem, 1.2rem);
    line-height: 1.6;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
  }

  .hero-meta-eur-usd-exportchancen {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .meta-item-eur-usd-exportchancen {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
  }

  .meta-item-eur-usd-exportchancen i {
    color: var(--color-accent);
  }

  .hero-image-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .hero-img-eur-usd-exportchancen {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .intro-section-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .intro-text-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .intro-paragraph-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .intro-image-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .intro-img-eur-usd-exportchancen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .mechanism-section-eur-usd-exportchancen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .mechanism-content-eur-usd-exportchancen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .mechanism-image-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .mechanism-img-eur-usd-exportchancen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .mechanism-text-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .mechanism-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .mechanism-paragraph-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .highlight-box-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(1rem, 2vw, 1.5rem);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    margin-top: clamp(1rem, 2vw, 1.5rem);
  }

  .highlight-text-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
  }

  .impact-section-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .impact-content-eur-usd-exportchancen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .impact-text-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .impact-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .impact-paragraph-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .impact-list-eur-usd-exportchancen {
    list-style: none;
    padding: 0;
    margin: clamp(1.5rem, 2vw, 2rem) 0;
  }

  .impact-item-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    position: relative;
  }

  .impact-item-eur-usd-exportchancen::before {
    content: "";
    color: var(--color-accent);
    font-weight: bold;
    position: absolute;
    left: 0;
  }

  .impact-image-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .impact-img-eur-usd-exportchancen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .real-effective-section-eur-usd-exportchancen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .real-effective-content-eur-usd-exportchancen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
  }

  .real-effective-image-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .real-effective-img-eur-usd-exportchancen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .real-effective-text-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .real-effective-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .real-effective-paragraph-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .stats-box-eur-usd-exportchancen {
    display: flex;
    flex-direction: row;
    gap: clamp(1rem, 2vw, 2rem);
    margin-top: clamp(1.5rem, 3vw, 2rem);
  }

  .stat-item-eur-usd-exportchancen {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  .stat-number-eur-usd-exportchancen {
    color: var(--color-accent);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
  }

  .stat-label-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
    line-height: 1.4;
  }

  .strategies-section-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .strategies-content-eur-usd-exportchancen {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .strategies-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .strategies-intro-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
  }

  .strategies-cards-eur-usd-exportchancen {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2rem);
    justify-content: center;
  }

  .strategy-card-eur-usd-exportchancen {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-primary);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
  }

  .strategy-card-eur-usd-exportchancen:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .card-header-eur-usd-exportchancen {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .card-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .card-text-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
    line-height: 1.6;
  }

  .practical-section-eur-usd-exportchancen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .practical-content-eur-usd-exportchancen {
    display: flex;
    flex-direction: row;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: flex-start;
  }

  .practical-text-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .practical-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .practical-paragraph-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
  }

  .practical-quote-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(1.5rem, 2vw, 2rem);
    border-left: 4px solid var(--color-accent);
    border-radius: var(--radius-md);
    margin-top: clamp(1.5rem, 2vw, 2rem);
  }

  .quote-text-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.95rem, 1.1vw + 0.5rem, 1.15rem);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
  }

  .quote-author-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.8rem, 1vw + 0.4rem, 1rem);
    display: block;
  }

  .practical-image-eur-usd-exportchancen {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .practical-img-eur-usd-exportchancen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    display: block;
  }

  .conclusion-section-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

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

  .conclusion-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .conclusion-paragraph-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.7;
  }

  .cta-box-eur-usd-exportchancen {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
    padding: clamp(2rem, 4vw, 3rem);
    border-radius: var(--radius-lg);
    text-align: center;
  }

  .cta-title-eur-usd-exportchancen {
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .cta-text-eur-usd-exportchancen {
    color: #ffffff;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.6;
  }

  .disclaimer-section-eur-usd-exportchancen {
    background: var(--color-bg-primary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .disclaimer-content-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(2rem, 3vw, 2.5rem);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-info);
    max-width: 900px;
    margin: 0 auto;
  }

  .disclaimer-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.1rem, 2vw + 0.5rem, 1.4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .disclaimer-text-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.85rem, 1vw + 0.45rem, 1rem);
    line-height: 1.7;
  }

  .related-section-eur-usd-exportchancen {
    background: var(--color-bg-secondary);
    padding: clamp(3rem, 8vw, 6rem) 0;
    overflow: hidden;
  }

  .related-content-eur-usd-exportchancen {
    display: flex;
    flex-direction: column;
    gap: clamp(2rem, 4vw, 3rem);
  }

  .related-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-cards-eur-usd-exportchancen {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    justify-content: center;
  }

  .related-card-eur-usd-exportchancen {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    max-width: 380px;
    background: var(--color-bg-primary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: all 0.3s ease;
  }

  .related-card-eur-usd-exportchancen:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }

  .related-image-eur-usd-exportchancen {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .related-card-img-eur-usd-exportchancen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .related-text-eur-usd-exportchancen {
    padding: clamp(1rem, 2vw, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
  }

  .related-card-title-eur-usd-exportchancen {
    color: var(--color-text-primary);
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
    font-weight: 700;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .related-card-description-eur-usd-exportchancen {
    color: var(--color-text-secondary);
    font-size: clamp(0.8rem, 0.95vw + 0.45rem, 1rem);
    line-height: 1.5;
    flex: 1;
  }

  .related-link-eur-usd-exportchancen {
    color: var(--color-accent);
    text-decoration: none;
    font-weight: 600;
    font-size: clamp(0.8rem, 1vw + 0.45rem, 0.95rem);
    transition: all 0.3s ease;
    display: inline-block;
  }

  .related-link-eur-usd-exportchancen:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
  }

  @media (max-width: 1023px) {
    .hero-content-eur-usd-exportchancen,
    .intro-content-eur-usd-exportchancen,
    .mechanism-content-eur-usd-exportchancen,
    .impact-content-eur-usd-exportchancen,
    .real-effective-content-eur-usd-exportchancen,
    .practical-content-eur-usd-exportchancen {
      flex-direction: column;
    }

    .hero-text-eur-usd-exportchancen,
    .hero-image-eur-usd-exportchancen,
    .intro-text-eur-usd-exportchancen,
    .intro-image-eur-usd-exportchancen,
    .mechanism-text-eur-usd-exportchancen,
    .mechanism-image-eur-usd-exportchancen,
    .impact-text-eur-usd-exportchancen,
    .impact-image-eur-usd-exportchancen,
    .real-effective-text-eur-usd-exportchancen,
    .real-effective-image-eur-usd-exportchancen,
    .practical-text-eur-usd-exportchancen,
    .practical-image-eur-usd-exportchancen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .strategy-card-eur-usd-exportchancen {
      flex: 1 1 calc(50% - 0.75rem);
      max-width: 100%;
    }

    .related-card-eur-usd-exportchancen {
      flex: 1 1 calc(50% - 0.75rem);
      max-width: 100%;
    }
  }

  @media (max-width: 767px) {
    .breadcrumbs-eur-usd-exportchancen {
      font-size: 0.75rem;
    }

    .strategy-card-eur-usd-exportchancen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .related-card-eur-usd-exportchancen {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .stats-box-eur-usd-exportchancen {
      flex-direction: column;
    }

    .impact-content-eur-usd-exportchancen,
    .practical-content-eur-usd-exportchancen {
      align-items: stretch;
    }
  }

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

html, body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
}

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

p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

.main-exportwettbewerb-wechselkurs {
  width: 100%;
  background: var(--color-bg-primary);
}

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

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

.breadcrumbs-exportwettbewerb-wechselkurs a {
  color: var(--color-accent);
  font-weight: 600;
}

.breadcrumbs-exportwettbewerb-wechselkurs a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-exportwettbewerb-wechselkurs span {
  color: var(--color-text-secondary);
}

.breadcrumbs-exportwettbewerb-wechselkurs span:last-child {
  color: var(--color-text-secondary);
  font-weight: 500;
}

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

.hero-text-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-subtitle-exportwettbewerb-wechselkurs {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.hero-meta-exportwettbewerb-wechselkurs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.meta-item-exportwettbewerb-wechselkurs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
}

.meta-item-exportwettbewerb-wechselkurs i {
  color: var(--color-accent);
  font-size: 1.1em;
}

.hero-img-exportwettbewerb-wechselkurs {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .hero-text-exportwettbewerb-wechselkurs,
  .hero-image-exportwettbewerb-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .breadcrumbs-exportwettbewerb-wechselkurs {
    font-size: 0.75rem;
  }
}

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

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

.intro-text-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.intro-paragraph-exportwettbewerb-wechselkurs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.intro-img-exportwettbewerb-wechselkurs {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .intro-text-exportwettbewerb-wechselkurs,
  .intro-image-exportwettbewerb-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mechanism-section-exportwettbewerb-wechselkurs {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mechanism-content-exportwettbewerb-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.mechanism-text-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.mechanism-image-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.mechanism-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.mechanism-paragraph-exportwettbewerb-wechselkurs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.mechanism-img-exportwettbewerb-wechselkurs {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .mechanism-text-exportwettbewerb-wechselkurs,
  .mechanism-image-exportwettbewerb-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.reer-section-exportwettbewerb-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.reer-content-exportwettbewerb-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.reer-text-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.reer-image-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.reer-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.reer-paragraph-exportwettbewerb-wechselkurs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.reer-img-exportwettbewerb-wechselkurs {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .reer-text-exportwettbewerb-wechselkurs,
  .reer-image-exportwettbewerb-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.strategies-section-exportwettbewerb-wechselkurs {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.strategies-content-exportwettbewerb-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.strategies-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.strategies-intro-exportwettbewerb-wechselkurs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.8;
}

.strategies-cards-exportwettbewerb-wechselkurs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.strategy-card-exportwettbewerb-wechselkurs {
  flex: 1 1 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.strategy-card-exportwettbewerb-wechselkurs:hover {
  transform: translateY(-4px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.15);
}

.card-icon-exportwettbewerb-wechselkurs {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  color: var(--color-accent);
  font-size: 1.5rem;
}

.card-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0;
}

.card-text-exportwettbewerb-wechselkurs {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .strategy-card-exportwettbewerb-wechselkurs {
    flex: 1 1 100%;
  }
}

.impact-section-exportwettbewerb-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.impact-content-exportwettbewerb-wechselkurs {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.impact-text-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-image-exportwettbewerb-wechselkurs {
  flex: 1 1 50%;
  max-width: 50%;
}

.impact-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.impact-paragraph-exportwettbewerb-wechselkurs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.impact-img-exportwettbewerb-wechselkurs {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

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

  .impact-text-exportwettbewerb-wechselkurs,
  .impact-image-exportwettbewerb-wechselkurs {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.conclusion-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}

.conclusion-text-exportwettbewerb-wechselkurs {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.conclusion-quote-exportwettbewerb-wechselkurs {
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  margin: clamp(1rem, 3vw, 2rem) 0;
}

.quote-text-exportwettbewerb-wechselkurs {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-primary);
  font-style: italic;
  margin: 0 0 1rem 0;
  line-height: 1.6;
}

.quote-author-exportwettbewerb-wechselkurs {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-accent);
  display: block;
  font-style: normal;
  font-weight: 600;
}

.disclaimer-section-exportwettbewerb-wechselkurs {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-exportwettbewerb-wechselkurs {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

.disclaimer-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.disclaimer-text-exportwettbewerb-wechselkurs {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

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

.related-content-exportwettbewerb-wechselkurs {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.related-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.related-cards-exportwettbewerb-wechselkurs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.related-card-exportwettbewerb-wechselkurs {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.related-card-exportwettbewerb-wechselkurs:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.1);
}

.related-card-image-exportwettbewerb-wechselkurs {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.related-img-exportwettbewerb-wechselkurs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-card-exportwettbewerb-wechselkurs:hover .related-img-exportwettbewerb-wechselkurs {
  transform: scale(1.05);
}

.related-card-body-exportwettbewerb-wechselkurs {
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-exportwettbewerb-wechselkurs {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.3;
}

.related-card-text-exportwettbewerb-wechselkurs {
  font-size: clamp(0.85rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.related-link-exportwettbewerb-wechselkurs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw, 1rem);
  margin-top: auto;
}

.related-link-exportwettbewerb-wechselkurs:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .related-card-exportwettbewerb-wechselkurs {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .hero-section-exportwettbewerb-wechselkurs,
  .intro-section-exportwettbewerb-wechselkurs,
  .mechanism-section-exportwettbewerb-wechselkurs,
  .reer-section-exportwettbewerb-wechselkurs,
  .strategies-section-exportwettbewerb-wechselkurs,
  .impact-section-exportwettbewerb-wechselkurs,
  .conclusion-section-exportwettbewerb-wechselkurs,
  .disclaimer-section-exportwettbewerb-wechselkurs,
  .related-section-exportwettbewerb-wechselkurs {
    padding: 2rem 0;
  }

  .breadcrumbs-exportwettbewerb-wechselkurs {
    font-size: 0.7rem;
    margin-bottom: 1rem;
  }

  .meta-item-exportwettbewerb-wechselkurs {
    font-size: 0.75rem;
  }
}

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

::-webkit-scrollbar-track {
  background: transparent;
}

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

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

* {
  box-sizing: border-box;
}

.main-waehrungshedging-exporteure {
  width: 100%;
  margin: 0;
  padding: 0;
}

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

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

.breadcrumbs-waehrungshedging-exporteure {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-waehrungshedging-exporteure a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-base);
}

.breadcrumbs-waehrungshedging-exporteure a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-waehrungshedging-exporteure span {
  color: var(--color-text-secondary);
}

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

.hero-text-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  font-weight: 800;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-description-waehrungshedging-exporteure {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1.5rem, 2vw, 2rem) 0;
}

.hero-meta-waehrungshedging-exporteure {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
}

.meta-item-waehrungshedging-exporteure {
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  color: var(--color-text-muted);
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: rgba(var(--color-primary-rgb, 59, 130, 246), 0.08);
  border-radius: var(--radius-md);
}

.hero-image-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-image-waehrungshedging-exporteure img {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

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

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

.intro-text-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.intro-paragraph-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.intro-paragraph-waehrungshedging-exporteure:last-child {
  margin-bottom: 0;
}

.intro-image-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.intro-image-waehrungshedging-exporteure img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

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

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

.fundamentals-text-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
}

.fundamentals-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fundamentals-paragraph-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.fundamentals-paragraph-waehrungshedging-exporteure:last-of-type {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.fundamentals-highlight-waehrungshedging-exporteure {
  background: rgba(var(--color-primary-rgb, 59, 130, 246), 0.1);
  border-left: 4px solid var(--color-primary);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: var(--radius-md);
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.highlight-text-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
  margin: 0;
}

.fundamentals-image-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.fundamentals-image-waehrungshedging-exporteure img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.methods-section-waehrungshedging-exporteure {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.methods-content-waehrungshedging-exporteure {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.methods-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.methods-grid-waehrungshedging-exporteure {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.method-card-waehrungshedging-exporteure {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--color-border-light);
}

.method-card-waehrungshedging-exporteure:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.method-number-waehrungshedging-exporteure {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
}

.method-name-waehrungshedging-exporteure {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
}

.method-text-waehrungshedging-exporteure {
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

.strategy-section-waehrungshedging-exporteure {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.strategy-text-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
}

.strategy-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.strategy-paragraph-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

.strategy-image-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.strategy-image-waehrungshedging-exporteure img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.example-section-waehrungshedging-exporteure {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.example-content-waehrungshedging-exporteure {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
}

.example-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.example-cards-waehrungshedging-exporteure {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.example-card-waehrungshedging-exporteure {
  flex: 1 1 calc(50% - 1rem);
  min-width: 300px;
  max-width: 500px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.example-name-waehrungshedging-exporteure {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.4rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
}

.example-text-waehrungshedging-exporteure {
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

.practical-section-waehrungshedging-exporteure {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

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

.practical-text-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
}

.practical-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1.5rem, 2vw, 2rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.list-item-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  padding: 0;
  margin: 0;
}

.list-item-waehrungshedging-exporteure strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.practical-image-waehrungshedging-exporteure {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.practical-image-waehrungshedging-exporteure img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

.costs-section-waehrungshedging-exporteure {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.costs-content-waehrungshedging-exporteure {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
}

.costs-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.costs-paragraph-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

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

.conclusion-content-waehrungshedging-exporteure {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 2vw, 2rem);
  max-width: 900px;
  margin: 0 auto;
}

.conclusion-text-waehrungshedging-exporteure {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.conclusion-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.conclusion-paragraph-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

.cta-box-waehrungshedging-exporteure {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.cta-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw + 0.5rem, 1.8rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: #ffffff;
  margin: 0;
}

.cta-text-waehrungshedging-exporteure {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  line-height: var(--line-height-relaxed);
  color: #ffffff;
  margin: 0;
}

.btn-waehrungshedging-exporteure {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  background: #ffffff;
  color: var(--color-primary);
  text-decoration: none;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: clamp(0.85rem, 1vw + 0.5rem, 1rem);
  transition: all var(--transition-base);
  border: 2px solid #ffffff;
  cursor: pointer;
  text-align: center;
}

.btn-waehrungshedging-exporteure:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
}

.disclaimer-section-waehrungshedging-exporteure {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.disclaimer-content-waehrungshedging-exporteure {
  background: rgba(var(--color-info-rgb, 15, 23, 42), 0.05);
  border-left: 4px solid var(--color-info);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-md);
  max-width: 900px;
  margin: 0 auto;
}

.disclaimer-title-waehrungshedging-exporteure {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.3rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin: 0 0 clamp(0.75rem, 1.5vw, 1rem) 0;
}

.disclaimer-text-waehrungshedging-exporteure {
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 1rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
}

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

.related-content-waehrungshedging-exporteure {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 4vw, 3.5rem);
}

.related-title-waehrungshedging-exporteure {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0;
  text-align: center;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-cards-waehrungshedging-exporteure {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
}

.related-card-waehrungshedging-exporteure {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  max-width: 400px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.related-card-waehrungshedging-exporteure:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.related-image-waehrungshedging-exporteure {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-border-light);
}

.related-image-waehrungshedging-exporteure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-waehrungshedging-exporteure {
  padding: clamp(1.25rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

.related-card-title-waehrungshedging-exporteure {
  font-size: clamp(1rem, 1.5vw + 0.5rem, 1.25rem);
  font-weight: 600;
  line-height: var(--line-height-tight);
  color: var(--color-text-primary);
  margin: 0;
}

.related-card-description-waehrungshedging-exporteure {
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-secondary);
  margin: 0;
  flex-grow: 1;
}

.related-link-waehrungshedging-exporteure {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.9vw + 0.5rem, 0.95rem);
  transition: color var(--transition-base);
  margin-top: clamp(0.5rem, 1vw, 0.75rem);
}

.related-link-waehrungshedging-exporteure:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

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

  .hero-text-waehrungshedging-exporteure,
  .hero-image-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-waehrungshedging-exporteure {
    flex-direction: column;
  }

  .intro-text-waehrungshedging-exporteure,
  .intro-image-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .fundamentals-content-waehrungshedging-exporteure {
    flex-direction: column;
  }

  .fundamentals-text-waehrungshedging-exporteure,
  .fundamentals-image-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .method-card-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .strategy-content-waehrungshedging-exporteure {
    flex-direction: column;
  }

  .strategy-text-waehrungshedging-exporteure,
  .strategy-image-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .example-card-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .practical-content-waehrungshedging-exporteure {
    flex-direction: column;
  }

  .practical-text-waehrungshedging-exporteure,
  .practical-image-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .related-card-waehrungshedging-exporteure {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 1023px) {
  .method-card-waehrungshedging-exporteure {
    flex: 1 1 calc(50% - 1rem);
  }

  .example-card-waehrungshedging-exporteure {
    flex: 1 1 100%;
  }

  .related-card-waehrungshedging-exporteure {
    flex: 1 1 calc(50% - 1rem);
  }
}

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

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

html, body {
  width: 100%;
  height: 100%;
}

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

.currency-analytics-about {
  width: 100%;
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: block !important;
}

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

.hero-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  text-align: center;
}

.hero-header-about h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.hero-subtitle-about {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
}

.hero-visual-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

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

.mission-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.mission-header-about {
  text-align: center;
}

.section-tag-about {
  display: inline-block;
  padding: 0.35rem 1.2rem;
  background: rgba(var(--color-primary-rgb, 59, 130, 246), 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.mission-header-about h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.mission-description-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 750px;
  margin: 0 auto;
}

.mission-cards-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.mission-card-about {
  flex: 1 1 280px;
  max-width: 340px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: all 0.3s ease;
}

.mission-card-about:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mission-card-about h3 {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.mission-card-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.expertise-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.expertise-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.expertise-header-about {
  text-align: center;
}

.expertise-header-about h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.expertise-intro-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.expertise-grid-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.expertise-item-about {
  flex: 1 1 260px;
  max-width: 320px;
  padding: clamp(1.75rem, 3vw, 2.25rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.expertise-item-about:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}

.expertise-item-about h4 {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.3rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.expertise-item-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.approach-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2.5rem, 5vw, 4rem);
}

.approach-header-about {
  text-align: center;
}

.approach-header-about h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.approach-intro-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.steps-container-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
  max-width: 900px;
  margin: 0 auto;
}

.process-step-about {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: flex-start;
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  min-width: 80px;
  line-height: 1;
}

.step-content-about {
  flex: 1;
}

.step-title-about {
  font-size: clamp(1.15rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-text-about {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.story-image-about {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  margin: 2rem auto 0;
  object-fit: cover;
}

.values-section-about {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.values-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 4vw, 3rem);
}

.values-header-about {
  text-align: center;
}

.values-header-about h2 {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.values-intro-about {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.values-list-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  margin-top: 2rem;
}

.value-badge-about {
  flex: 1 1 200px;
  max-width: 260px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 2px solid var(--color-border-light);
  transition: all 0.3s ease;
}

.value-badge-about:hover {
  border-color: var(--color-primary);
  background: var(--color-bg-secondary);
}

.value-icon-about {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.value-badge-about h3 {
  font-size: clamp(1.05rem, 2vw + 0.5rem, 1.3rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.value-badge-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.disclaimer-section-about {
  background: var(--color-bg-secondary);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  overflow: hidden;
  border-top: 1px solid var(--color-border-light);
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
}

.disclaimer-section-about h3 {
  font-size: clamp(1.2rem, 2.5vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.disclaimer-icon-about {
  color: var(--color-primary);
  font-size: 1.35rem;
}

.disclaimer-section-about p {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .process-step-about {
    gap: clamp(2rem, 4vw, 3rem);
  }

  .step-number-about {
    font-size: clamp(3rem, 6vw, 4rem);
    min-width: 100px;
  }

  .hero-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }

  .mission-section-about,
  .expertise-section-about,
  .approach-section-about,
  .values-section-about {
    padding: clamp(4rem, 10vw, 7rem) 0;
  }
}

@media (min-width: 1024px) {
  .hero-section-about,
  .mission-section-about,
  .expertise-section-about,
  .approach-section-about,
  .values-section-about {
    padding: clamp(5rem, 12vw, 8rem) 0;
  }

  .mission-cards-about,
  .expertise-grid-about,
  .values-list-about {
    gap: clamp(2rem, 4vw, 3rem);
  }
}

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

  .step-number-about {
    font-size: 2.5rem;
    min-width: auto;
  }

  .hero-visual-about,
  .story-image-about {
    margin: 1.5rem 0;
  }
}

.portfolio-page {
  background-color: var(--color-bg-primary);
  overflow: hidden;
}

.portfolio-hero {
  background-color: var(--color-bg-secondary);
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.portfolio-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-hero-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  font-weight: 700;
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.portfolio-hero-subtitle {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw + 0.25rem, 1.25rem);
  margin: 0;
  font-weight: 400;
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: grid;
  grid-template-columns: 1fr;
}

.portfolio-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.portfolio-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: var(--color-bg-tertiary);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.portfolio-card-tag {
  color: var(--color-accent);
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-card-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.portfolio-card-description {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  margin: 0;
  line-height: var(--line-height-normal);
}

.portfolio-card-meta {
  color: var(--color-text-muted);
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  margin-top: var(--space-xs);
  font-weight: 500;
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem 1.5rem;
  overflow: hidden;
}

.portfolio-cta-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.portfolio-cta-title {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw + 0.5rem, 2.5rem);
  margin: 0;
  font-weight: 700;
  line-height: var(--line-height-tight);
}

.portfolio-cta-text {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  margin: 0;
  line-height: var(--line-height-normal);
  max-width: 600px;
}

.portfolio-cta-button {
  display: inline-block;
  background-color: var(--color-accent);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  font-weight: 600;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
}

.portfolio-cta-button:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: 5rem 2rem;
  }

  .portfolio-projects {
    padding: 4rem 2rem;
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card-image {
    height: 280px;
  }

  .portfolio-cta {
    padding: 4rem 2rem;
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: 6rem 3rem;
  }

  .portfolio-projects {
    padding: 5rem 3rem;
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card {
    grid-template-columns: 1fr;
  }

  .portfolio-card-image {
    height: 300px;
  }

  .portfolio-card-content {
    padding: var(--space-xl);
  }

  .portfolio-cta {
    padding: 6rem 3rem;
  }

  .portfolio-cta-content {
    gap: var(--space-lg);
  }
}

@media (min-width: 1200px) {
  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.faq-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: var(--line-height-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-intro {
  margin-bottom: var(--space-2xl);
}

.faq-intro-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.faq-item {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-light);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
  transition: background-color var(--transition-base), color var(--transition-base);
}

.faq-question:hover {
  background-color: var(--color-bg-card-hover);
  color: var(--color-primary);
}

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

.faq-question-text {
  flex: 1;
  margin-right: var(--space-md);
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-md) var(--space-md) var(--space-md);
  border-top: 1px solid var(--color-border-light);
  background-color: var(--color-bg-card);
  animation: slideDown var(--transition-base) ease-out;
}

.faq-answer[hidden] {
  display: none;
}

.faq-answer-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

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

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

.faq-cta-button {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base);
  width: fit-content;
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: white;
}

.faq-cta-button:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-cta-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.faq-cta-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-lg);
  }

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

  .faq-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .faq-cta-container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}

@media (min-width: 1024px) {
  .faq-hero {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-content {
    padding: var(--space-3xl) var(--space-xl);
  }

  .faq-cta {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.legal-docs {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.legal-docs .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.legal-docs .legal-docs-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-md);
}

.legal-docs h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs .last-updated {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-2xl);
  font-style: italic;
}

.legal-docs h2 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.legal-docs p {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
}

.legal-docs ul {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-docs li {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-sm);
}

.legal-docs .section {
  margin-bottom: var(--space-2xl);
}

.legal-docs .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-xl);
  border-radius: var(--radius-md);
  margin-top: var(--space-3xl);
  border-left: 4px solid var(--color-primary);
}

.legal-docs .contact-section h2 {
  color: var(--color-primary);
  margin-top: 0;
}

.legal-docs .contact-section p {
  margin-bottom: var(--space-md);
}

.legal-docs .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

@media (min-width: 768px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-3xl) var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .legal-docs .legal-docs-content {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

.thank-you-page {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  background-color: var(--color-bg-primary);
  width: 100%;
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.content {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.thank-wrapper {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.thank-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2xl);
}

.thank-icon svg {
  width: clamp(4rem, 15vw, 6rem);
  height: clamp(4rem, 15vw, 6rem);
  color: var(--color-success);
  stroke-width: 1.5;
}

h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
  letter-spacing: -0.5px;
}

.lead {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-normal);
}

.description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-lg);
  letter-spacing: 0.3px;
}

.next-steps {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
  letter-spacing: 0.3px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  letter-spacing: 0.3px;
  text-transform: none;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

@media (min-width: 640px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .container {
    padding: 0 var(--space-lg);
  }

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  h1 {
    margin-bottom: var(--space-md);
  }

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

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

  .next-steps {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-xl);
  }

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  h1 {
    margin-bottom: var(--space-lg);
  }

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

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

  .next-steps {
    margin-bottom: var(--space-2xl);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) 0;
    min-height: 100vh;
  }

  .container {
    padding: 0 var(--space-xl);
  }

  .thank-icon {
    margin-bottom: var(--space-2xl);
  }

  h1 {
    margin-bottom: var(--space-lg);
  }

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

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

  .next-steps {
    margin-bottom: var(--space-3xl);
  }

  .btn {
    padding: var(--space-md) var(--space-2xl);
  }

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

@media (min-width: 1440px) {
  .container {
    max-width: 1440px;
  }

  .thank-section {
    padding: var(--space-3xl) 0;
  }
}

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

html, body {
  width: 100%;
  height: 100%;
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.error-section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  padding: 0 var(--space-md);
  margin: 0 auto;
}

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

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
}

.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: 900;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  line-height: 1;
  display: block;
  animation: floatCode 3s ease-in-out infinite;
}

.currency-symbol {
  position: absolute;
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--color-secondary);
  right: -20%;
  top: 10%;
  opacity: 0.7;
  animation: rotateCurrency 4s linear infinite;
}

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

@keyframes rotateCurrency {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.error-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  margin-bottom: var(--space-md);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.error-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  font-weight: 600;
  font-family: var(--font-primary);
}

.error-description {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2xl);
  font-family: var(--font-primary);
}

.btn {
  display: inline-block;
  padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2.5rem);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  transition: var(--transition-base);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

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

.error-hints {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border-light);
}

.hint-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-base);
}

.hint-item:hover {
  background-color: var(--color-bg-card-hover);
  border-color: var(--color-primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.hint-icon {
  font-size: clamp(1.5rem, 3vw, 2rem);
  display: block;
}

.hint-text {
  font-size: clamp(0.75rem, 0.9vw, 0.9rem);
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-weight: 500;
  line-height: var(--line-height-tight);
}

@media (min-width: 640px) {
  .error-section {
    padding: var(--space-xl) var(--space-md);
  }
  
  .error-code-wrapper {
    margin-bottom: var(--space-3xl);
  }
}

@media (min-width: 768px) {
  .error-section {
    padding: var(--space-2xl) var(--space-md);
    min-height: 100vh;
  }
  
  .error-hints {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-xl);
  }
  
  .error-section {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .error-visual {
    min-height: 150px;
    margin-bottom: var(--space-2xl);
  }
  
  .currency-symbol {
    right: -10%;
    font-size: clamp(2rem, 6vw, 3rem);
  }
  
  .error-hints {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
}

.contact-write-to-us {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  overflow: hidden;
}

.contact-write-to-us-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  border-bottom: 1px solid var(--color-border-light);
  overflow: hidden;
}

.contact-write-to-us-hero-content {
  padding: 2rem 1rem;
}

.contact-write-to-us-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
}

.contact-write-to-us-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
}

@media (min-width: 768px) {
  .contact-write-to-us-hero {
    padding: 5rem 0;
  }

  .contact-write-to-us-hero-content {
    padding: 3rem 1rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-hero {
    padding: 6rem 0;
  }

  .contact-write-to-us-hero-content {
    padding: 4rem 1rem;
  }
}

.contact-write-to-us-main {
  background-color: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.contact-write-to-us-content {
  width: 100%;
  padding: 0 1rem;
}

.contact-write-to-us-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 768px) {
  .contact-write-to-us-main {
    padding: 4rem 0;
  }

  .contact-write-to-us-grid {
    flex-direction: row;
    gap: 4rem;
    align-items: flex-start;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-main {
    padding: 5rem 0;
  }

  .contact-write-to-us-grid {
    gap: 5rem;
  }
}

.contact-write-to-us-form-wrapper {
  flex: 1 1 400px;
  min-width: 0;
}

.contact-write-to-us-form-header {
  margin-bottom: 2rem;
}

.contact-write-to-us-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: var(--line-height-tight);
}

.contact-write-to-us-form-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.contact-write-to-us-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.contact-write-to-us-form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}

.contact-write-to-us-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-write-to-us-input,
.contact-write-to-us-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  background-color: var(--color-bg-card);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-base), background-color var(--transition-base), box-shadow var(--transition-base);
  line-height: var(--line-height-normal);
}

.contact-write-to-us-input::placeholder,
.contact-write-to-us-textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-write-to-us-input:focus,
.contact-write-to-us-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card-hover);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-write-to-us-textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-write-to-us-form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1rem 0;
}

.contact-write-to-us-checkbox {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.contact-write-to-us-consent-label {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  cursor: pointer;
}

.contact-write-to-us-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 600;
}

.contact-write-to-us-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-submit {
  width: 100%;
  padding: 1rem 2rem;
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 700;
  color: white;
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background-color var(--transition-base), color var(--transition-base), transform var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-write-to-us-submit:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.contact-write-to-us-info-wrapper {
  flex: 1 1 400px;
  min-width: 0;
}

.contact-write-to-us-info-header {
  margin-bottom: 2.5rem;
}

.contact-write-to-us-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: var(--line-height-tight);
}

.contact-write-to-us-info-description {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.contact-write-to-us-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-write-to-us-info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-write-to-us-info-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  flex-shrink: 0;
  font-size: 1.25rem;
  color: var(--color-primary);
}

.contact-write-to-us-info-content {
  flex: 1;
}

.contact-write-to-us-info-item-title {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.contact-write-to-us-info-item-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.contact-write-to-us-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-base);
  font-weight: 600;
}

.contact-write-to-us-info-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-write-to-us-info-highlight {
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.contact-write-to-us-highlight-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}

.contact-write-to-us-hours {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-write-to-us-hour-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.contact-write-to-us-day {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  color: var(--color-text-primary);
}

.contact-write-to-us-time {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.contact-write-to-us-expertise {
  background-color: var(--color-bg-secondary);
  padding: 3rem 0;
  border-top: 1px solid var(--color-border-light);
  overflow: hidden;
}

.contact-write-to-us-expertise-content {
  width: 100%;
  padding: 0 1rem;
}

.contact-write-to-us-expertise-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 1rem;
  line-height: var(--line-height-tight);
  text-align: center;
}

.contact-write-to-us-expertise-intro {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: var(--line-height-relaxed);
}

.contact-write-to-us-expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .contact-write-to-us-expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .contact-write-to-us-expertise {
    padding: 4rem 0;
  }

  .contact-write-to-us-expertise-intro {
    margin-bottom: 3rem;
  }

  .contact-write-to-us-expertise-grid {
    gap: 2.5rem;
  }
}

.contact-write-to-us-expertise-card {
  background-color: var(--color-bg-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-base);
}

.contact-write-to-us-expertise-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.contact-write-to-us-expertise-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  line-height: var(--line-height-tight);
}

.contact-write-to-us-expertise-card-text {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-write-to-us-form-wrapper {
    flex: 1 1 45%;
  }

  .contact-write-to-us-info-wrapper {
    flex: 1 1 45%;
  }
}
.header-currency-vault-hamburger,.header-currency-vault-mobile-close,.header-currency-vault-mobile-toggle{
  width: 34px;
}

.header-currency-vault-desktop-nav{
  justify-content: flex-end;
}

.portfolio-card{
  display: flex;
  flex-direction: column !important;
}

.portfolio-card__content{
  width: 100% !important;
}

.portfolio-card-content{
  width: 100% !important;
}

.hero-title-index{
  word-break: break-all;
}
