@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: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-bg-overlay: rgba(30, 41, 59, 0.04);

  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-text-light: #cbd5e1;

  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-primary-light: #dbeafe;
  --color-secondary: #0ea5e9;
  --color-secondary-hover: #0284c7;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;

  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;
  --color-border-dark: #cbd5e1;

  --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;
  --space-4xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 2px rgba(30, 41, 59, 0.05);
  --shadow-md: 0 4px 6px rgba(30, 41, 59, 0.1);
  --shadow-lg: 0 10px 15px rgba(30, 41, 59, 0.1);
  --shadow-xl: 0 20px 25px rgba(30, 41, 59, 0.15);
  --shadow-2xl: 0 25px 50px rgba(30, 41, 59, 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);

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;

  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;

  --letter-spacing-tight: -0.02em;
  --letter-spacing-normal: 0em;
  --letter-spacing-wide: 0.05em;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  letter-spacing: var(--letter-spacing-normal);
}

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

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

h1 {
  font-size: var(--font-size-5xl);
}

h2 {
  font-size: var(--font-size-4xl);
}

h3 {
  font-size: var(--font-size-3xl);
}

h4 {
  font-size: var(--font-size-2xl);
}

h5 {
  font-size: var(--font-size-xl);
}

h6 {
  font-size: var(--font-size-lg);
}

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

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

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

button,
input,
textarea,
select {
  font-family: var(--font-primary);
}

button {
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: var(--color-bg-secondary);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

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

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

.btn-accent:hover {
  background: var(--color-accent-hover);
}

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

.btn-ghost:hover {
  background: var(--color-primary-light);
}

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

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

.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

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

.badge {
  display: inline-flex;
  align-items: center;
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.badge-success {
  background: #dcfce7;
  color: var(--color-success);
}

.badge-warning {
  background: #fef3c7;
  color: var(--color-warning);
}

.badge-error {
  background: #fee2e2;
  color: var(--color-error);
}

.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(240px, 1fr));
}

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

  h1 {
    font-size: var(--font-size-4xl);
  }

  h2 {
    font-size: var(--font-size-3xl);
  }

  h3 {
    font-size: var(--font-size-2xl);
  }

  .container {
    padding: 0 var(--space-md);
  }
}

.flex {
  display: flex;
}

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

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

.flex-column {
  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-center {
  text-align: center;
}

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

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

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

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

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

.text-sm {
  font-size: var(--font-size-sm);
}

.text-lg {
  font-size: var(--font-size-lg);
}

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

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

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

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

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

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

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

.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-full {
  border-radius: var(--radius-full);
}

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

.transition-fast {
  transition: all var(--transition-fast);
}

.transition-base {
  transition: all var(--transition-base);
}

.transition-slow {
  transition: all var(--transition-slow);
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.cursor-pointer {
  cursor: pointer;
}

.hidden {
  display: none !important;
}

.block {
  display: block;
}

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

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: var(--space-sm);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  background: var(--color-bg-card);
  transition: border-color var(--transition-fast);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

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

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

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .flex-between {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  h1 {
    font-size: var(--font-size-3xl);
  }

  h2 {
    font-size: var(--font-size-2xl);
  }

  .btn {
    width: 100%;
  }
}
.header-ringgit-portal {
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  position: relative;
  z-index: 100;
  width: 100%;
}

.header-ringgit-portal-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: clamp(3.5rem, 8vw, 4.5rem);
  gap: clamp(1rem, 2vw, 2rem);
}

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

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

.header-ringgit-portal-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-tight);
}

.header-ringgit-portal-brand:hover .header-ringgit-portal-logo-text {
  color: var(--color-accent);
  transition: color var(--transition-base);
}

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

.header-ringgit-portal-nav-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  position: relative;
}

.header-ringgit-portal-nav-link:hover {
  color: var(--color-accent);
}

.header-ringgit-portal-nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-base);
}

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

.header-ringgit-portal-cta-button {
  display: none;
  padding: 0.75rem 1.75rem;
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

.header-ringgit-portal-cta-button:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.header-ringgit-portal-mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  z-index: 101;
}

.header-ringgit-portal-mobile-toggle span {
  width: 24px;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.header-ringgit-portal-mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.header-ringgit-portal-mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header-ringgit-portal-mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.header-ringgit-portal-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-primary);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: all var(--transition-base);
  z-index: 99;
  overflow-y: auto;
  padding-top: clamp(3.5rem, 8vw, 4.5rem);
  display: flex;
  flex-direction: column;
}

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

.header-ringgit-portal-mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-primary);
  border-bottom: 1px solid var(--color-border-light);
  height: clamp(3.5rem, 8vw, 4.5rem);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 clamp(1rem, 4vw, 2rem);
  z-index: 102;
}

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

.header-ringgit-portal-mobile-close:hover {
  color: var(--color-accent);
}

.header-ringgit-portal-mobile-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  flex-grow: 1;
}

.header-ringgit-portal-mobile-link {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border-light);
  transition: color var(--transition-base);
}

.header-ringgit-portal-mobile-link:hover {
  color: var(--color-accent);
}

.header-ringgit-portal-mobile-cta {
  display: block;
  padding: 1rem clamp(1.5rem, 4vw, 2rem);
  background: var(--color-accent);
  color: var(--color-bg-primary);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: var(--radius-md);
  margin: clamp(1rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem);
  transition: all var(--transition-base);
}

.header-ringgit-portal-mobile-cta:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

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

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

@media (min-width: 1024px) {
  .header-ringgit-portal-container {
    height: clamp(4rem, 8vw, 5rem);
  }

  .header-ringgit-portal-nav-link {
    font-size: 1rem;
  }

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

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

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

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

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

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

.currency-hub {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

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

.hero-title-index {
  font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0;
}

.hero-subtitle-index {
  font-size: clamp(0.95rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.hero-buttons-index {
  display: flex;
  flex-direction: row;
  gap: clamp(1rem, 2vw, 1.5rem);
  flex-wrap: wrap;
  margin-top: clamp(0.5rem, 2vw, 1rem);
}

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

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

.btn-primary-index:hover {
  background: var(--color-primary-hover);
  border-color: 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(var(--color-primary-rgb), 0.05);
  transform: translateY(-2px);
}

.hero-image-index {
  flex: 1 1 45%;
  min-height: 350px;
  max-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

  .hero-image-index {
    flex: 1 1 100%;
    min-height: 280px;
    max-height: 380px;
  }

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

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

.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, 4vw, 3rem);
}

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

.benefits-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
}

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

.benefits-cards-index {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  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: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  transition: all 0.3s ease;
  text-align: center;
}

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

.card-icon-index {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

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

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

@media (max-width: 768px) {
  .benefits-cards-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

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

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

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

.featured-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
}

.featured-subtitle-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
}

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

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

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

.featured-card-index {
  flex: 1 1 320px;
  max-width: 420px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.featured-card-index:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.featured-image-index {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.featured-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.featured-card-index:hover .featured-image-index img {
  transform: scale(1.05);
}

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

.featured-card-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin: 0;
  line-height: var(--line-height-snug);
}

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

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

.featured-card-link-index:hover {
  color: var(--color-primary-hover);
}

@media (max-width: 768px) {
  .featured-cards-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

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

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

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

.how-it-works-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
}

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

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

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

.step-number-index {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  flex-shrink: 0;
  min-width: 60px;
  text-align: center;
}

.step-content-index {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(0.5rem, 1vw, 1rem);
}

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

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

@media (max-width: 768px) {
  .process-step-index {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  .step-number-index {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
  }
}

.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, 4vw, 3rem);
}

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

.features-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
}

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

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

.feature-card-index {
  flex: 1 1 280px;
  max-width: 340px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  transition: all 0.3s ease;
}

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

.feature-card-index .card-icon-index {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  color: var(--color-primary);
}

.feature-card-index .card-title-index {
  font-size: clamp(1.1rem, 2vw + 0.5rem, 1.35rem);
  color: var(--color-text-primary);
}

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

@media (max-width: 768px) {
  .features-cards-index {
    gap: clamp(1rem, 2vw, 1.5rem);
  }

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

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

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

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

.about-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0;
}

.about-description-index,
.about-description-secondary-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.about-quote-index {
  background: rgba(var(--color-primary-rgb), 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: clamp(0.5rem, 2vw, 1rem) 0;
}

.quote-text-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin: 0;
}

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

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

.about-image-index {
  flex: 1 1 45%;
  min-height: 350px;
  max-height: 450px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-image-index img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

  .about-image-index {
    flex: 1 1 100%;
    min-height: 280px;
    max-height: 380px;
  }
}

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

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

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

.faq-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
}

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

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

.faq-item-index {
  background: var(--color-bg-card);
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
}

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

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

@media (max-width: 768px) {
  .faq-items-index {
    gap: clamp(1rem, 1.5vw, 1.5rem);
  }

  .faq-item-index {
    padding: clamp(1rem, 2vw, 1.5rem);
  }
}

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

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

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

.cta-title-index {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
  color: #ffffff;
  line-height: var(--line-height-tight);
  font-weight: 700;
  margin: 0;
}

.cta-text-index {
  font-size: clamp(0.95rem, 1.5vw + 0.5rem, 1.125rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.cta-box-index .btn-primary-index {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
  align-self: center;
  min-width: 200px;
}

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

@media (max-width: 768px) {
  .cta-box-index {
    padding: clamp(1.5rem, 4vw, 2.5rem);
  }

  .cta-box-index .btn-primary-index {
    width: 100%;
    min-width: auto;
  }
}

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

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

.cookie-banner-text-index {
  color: #ffffff;
  margin: 0;
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  line-height: var(--line-height-snug);
  flex: 1 1 auto;
  min-width: 200px;
}

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

.cookie-btn-accept-index,
.cookie-btn-decline-index {
  padding: clamp(0.5rem, 1vw, 0.75rem) clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw + 0.5rem, 0.95rem);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

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

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

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

.cookie-btn-decline-index:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    gap: clamp(1rem, 2vw, 1.25rem);
    padding: clamp(1rem, 2vw, 1.25rem);
  }

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

  .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 (min-width: 1200px) {
  .hero-section-index,
  .benefits-section-index,
  .featured-section-index,
  .how-it-works-section-index,
  .features-section-index,
  .about-section-index,
  .faq-section-index,
  .cta-section-index {
    padding: clamp(4rem, 10vw, 8rem) 0;
  }
}

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

.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, 3rem);
}

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

.footer-about h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

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

.footer-nav h3,
.footer-contact h3,
.footer-legal h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-tight);
}

.footer-nav-list,
.footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 1.75rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
  white-space: nowrap;
}

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

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

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

.footer-copyright p {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.95rem);
  color: var(--color-text-muted);
  margin: 0;
  letter-spacing: var(--letter-spacing-normal);
}

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

  .footer-about {
    flex: 1 1 280px;
    min-width: 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%;
    border-top: 1px solid var(--color-border-light);
    padding-top: clamp(1.5rem, 3vw, 2rem);
    margin-top: clamp(0.5rem, 2vw, 1rem);
  }
}

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

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

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

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

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

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

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

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

.hero-header-ringgit {
  text-align: center;
}

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

.hero-subtitle-ringgit {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-intro-ringgit {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
}

.hero-text-ringgit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

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

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

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

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

.posts-subtitle-ringgit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

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

.card-ringgit {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: 420px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base) ease;
  padding: 0;
}

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

.card-image-ringgit {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

.card-title-ringgit {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.375rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-description-ringgit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  padding: 0 clamp(1rem, 2vw, 1.5rem);
}

.card-meta-ringgit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 2vw, 1.5rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  border-top: 1px solid var(--color-border-light);
  margin-top: auto;
}

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

.card-time-ringgit i,
.card-level-ringgit i,
.card-date-ringgit i {
  color: var(--color-accent);
  width: 16px;
}

.card-link-ringgit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base) ease;
  margin: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
}

.card-link-ringgit:hover {
  background: var(--color-accent-hover);
  text-decoration: none;
}

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

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

.fundamentals-header-ringgit {
  text-align: center;
}

.fundamentals-title-ringgit {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fundamentals-list-ringgit {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 2.5rem);
  max-width: 950px;
  margin: 0 auto;
  width: 100%;
}

.fundamentals-item-ringgit {
  background: var(--color-bg-secondary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
}

.fundamentals-concept-ringgit {
  font-size: clamp(1.125rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 clamp(0.75rem, 1vw, 1rem) 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.fundamentals-text-ringgit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

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

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

.practical-header-ringgit {
  text-align: center;
}

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

.practical-subtitle-ringgit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.6;
}

.practical-guidance-ringgit {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.practical-block-ringgit {
  flex: 1 1 280px;
  background: var(--color-bg-primary);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  box-shadow: var(--shadow-sm);
}

.practical-heading-ringgit {
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.practical-detail-ringgit {
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 767px) {
  .posts-grid-ringgit {
    flex-direction: column;
    align-items: center;
  }

  .card-ringgit {
    width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }

  .practical-guidance-ringgit {
    flex-direction: column;
    align-items: stretch;
  }

  .practical-block-ringgit {
    flex: 1 1 100%;
  }

  .fundamentals-list-ringgit {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .posts-grid-ringgit {
    gap: clamp(1.5rem, 3vw, 2rem);
  }

  .card-ringgit {
    flex: 1 1 calc(50% - clamp(0.75rem, 1.5vw, 1rem));
    max-width: none;
  }

  .practical-guidance-ringgit {
    gap: clamp(1.5rem, 2vw, 2rem);
  }

  .practical-block-ringgit {
    flex: 1 1 calc(50% - clamp(0.75rem, 1vw, 1rem));
  }
}

@media (min-width: 1024px) {
  .posts-grid-ringgit {
    gap: clamp(1.5rem, 3vw, 2.5rem);
  }

  .card-ringgit {
    flex: 1 1 calc(25% - clamp(1rem, 2.25vw, 2rem));
    max-width: 380px;
  }

  .practical-guidance-ringgit {
    gap: clamp(1.5rem, 2vw, 2.5rem);
  }

  .practical-block-ringgit {
    flex: 1 1 calc(25% - clamp(1rem, 1.875vw, 2rem));
  }
}

.main-current-account-balance-ringgit {
background: var(--color-bg-primary);
color: var(--color-text-primary);
font-family: var(--font-primary);
overflow: hidden;
}

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

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

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

.hero-text-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.hero-image-current-account-balance-ringgit img {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
max-height: 450px;
}

.breadcrumbs-current-account-balance-ringgit {
display: flex;
align-items: center;
gap: 0.75rem;
margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
font-size: clamp(0.75rem, 1vw, 0.875rem);
color: var(--color-text-muted);
}

.breadcrumbs-current-account-balance-ringgit a {
color: var(--color-accent);
text-decoration: none;
transition: color 0.3s ease;
}

.breadcrumbs-current-account-balance-ringgit a:hover {
color: var(--color-accent-hover);
text-decoration: underline;
}

.hero-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
color: var(--color-text-primary);
margin: 0 0 clamp(0.75rem, 2vw, 1.5rem) 0;
line-height: 1.2;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-subtitle-current-account-balance-ringgit {
font-size: clamp(0.95rem, 1.5vw, 1.25rem);
color: var(--color-text-secondary);
line-height: 1.6;
margin: 0 0 clamp(1.5rem, 3vw, 2rem) 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.hero-meta-current-account-balance-ringgit {
display: flex;
flex-wrap: wrap;
gap: clamp(1rem, 2vw, 1.5rem);
}

.meta-item-current-account-balance-ringgit {
display: flex;
align-items: center;
gap: 0.5rem;
font-size: clamp(0.8rem, 1vw, 0.95rem);
color: var(--color-text-muted);
}

.meta-item-current-account-balance-ringgit i {
color: var(--color-accent);
}

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

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

.intro-text-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.intro-image-current-account-balance-ringgit img {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
max-height: 400px;
}

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

.intro-paragraph-current-account-balance-ringgit {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
line-height: 1.7;
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.mechanics-section-current-account-balance-ringgit {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.mechanics-content-current-account-balance-ringgit {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.mechanics-image-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
order: -1;
}

.mechanics-image-current-account-balance-ringgit img {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
max-height: 400px;
}

.mechanics-text-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.mechanics-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
line-height: 1.3;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.mechanics-paragraph-current-account-balance-ringgit {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
line-height: 1.7;
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.mechanics-highlight-current-account-balance-ringgit {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-primary);
background: rgba(6, 182, 212, 0.1);
padding: clamp(1rem, 2vw, 1.5rem);
border-left: 4px solid var(--color-accent);
border-radius: 4px;
line-height: 1.7;
word-wrap: break-word;
overflow-wrap: break-word;
}

.components-section-current-account-balance-ringgit {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.components-content-current-account-balance-ringgit {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 2.5rem);
}

.components-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
text-align: center;
margin: 0;
line-height: 1.3;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.components-intro-current-account-balance-ringgit {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
text-align: center;
line-height: 1.7;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.components-grid-current-account-balance-ringgit {
display: flex;
flex-wrap: wrap;
gap: clamp(1rem, 3vw, 2rem);
justify-content: center;
}

.component-card-current-account-balance-ringgit {
flex: 1 1 calc(50% - clamp(0.5rem, 1.5vw, 1rem));
max-width: 380px;
background: var(--color-bg-card);
padding: clamp(1.5rem, 3vw, 2rem);
border-radius: 12px;
border: 1px solid var(--color-border-light);
display: flex;
flex-direction: column;
gap: clamp(0.75rem, 1.5vw, 1rem);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.component-card-current-account-balance-ringgit:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.card-icon-current-account-balance-ringgit {
font-size: clamp(1.75rem, 3vw, 2.25rem);
color: var(--color-accent);
}

.card-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1.1rem, 2vw, 1.4rem);
color: var(--color-text-primary);
margin: 0;
line-height: 1.3;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.card-text-current-account-balance-ringgit {
font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
color: var(--color-text-secondary);
line-height: 1.6;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.context-section-current-account-balance-ringgit {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.context-content-current-account-balance-ringgit {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.context-text-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.context-image-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.context-image-current-account-balance-ringgit img {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
max-height: 400px;
}

.context-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
line-height: 1.3;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.context-paragraph-current-account-balance-ringgit {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
line-height: 1.7;
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.quote-section-current-account-balance-ringgit {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.featured-quote-current-account-balance-ringgit {
max-width: 800px;
margin: 0 auto;
padding: clamp(2rem, 4vw, 3rem);
border-left: 4px solid var(--color-accent);
background: var(--color-bg-primary);
border-radius: 8px;
}

.quote-text-current-account-balance-ringgit {
font-size: clamp(1rem, 1.5vw + 0.5rem, 1.3rem);
color: var(--color-text-primary);
font-style: italic;
line-height: 1.8;
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.quote-author-current-account-balance-ringgit {
font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
color: var(--color-text-muted);
display: block;
}

.integration-section-current-account-balance-ringgit {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.integration-content-current-account-balance-ringgit {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 4rem);
align-items: center;
}

.integration-image-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.integration-image-current-account-balance-ringgit img {
width: 100%;
height: auto;
border-radius: 12px;
display: block;
object-fit: cover;
max-height: 400px;
}

.integration-text-current-account-balance-ringgit {
flex: 1 1 50%;
max-width: 50%;
}

.integration-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
color: var(--color-text-primary);
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
line-height: 1.3;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.integration-paragraph-current-account-balance-ringgit {
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
color: var(--color-text-secondary);
line-height: 1.7;
margin: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-section-current-account-balance-ringgit {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.related-content-current-account-balance-ringgit {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 2.5rem);
}

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

.related-cards-current-account-balance-ringgit {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.related-card-current-account-balance-ringgit {
flex: 1 1 calc(33.333% - clamp(1rem, 2vw, 1.666rem));
max-width: 380px;
background: var(--color-bg-card);
border-radius: 12px;
overflow: hidden;
border: 1px solid var(--color-border-light);
display: flex;
flex-direction: column;
gap: 0;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-card-current-account-balance-ringgit:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px rgba(6, 182, 212, 0.15);
}

.related-image-current-account-balance-ringgit {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-image-current-account-balance-ringgit img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-card-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1rem, 2vw, 1.3rem);
color: var(--color-text-primary);
padding: clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem) clamp(0.5rem, 1vw, 1rem);
margin: 0;
line-height: 1.4;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-card-text-current-account-balance-ringgit {
font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
color: var(--color-text-secondary);
padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
line-height: 1.6;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

.related-link-current-account-balance-ringgit {
display: inline-block;
padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
margin: clamp(0.5rem, 1vw, 1rem) clamp(1rem, 2vw, 1.5rem) clamp(1rem, 2vw, 1.5rem);
color: var(--color-accent);
text-decoration: none;
font-weight: 600;
font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
transition: color 0.3s ease;
}

.related-link-current-account-balance-ringgit:hover {
color: var(--color-accent-hover);
text-decoration: underline;
}

.disclaimer-section-current-account-balance-ringgit {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 6rem) 0;
overflow: hidden;
}

.disclaimer-content-current-account-balance-ringgit {
max-width: 900px;
margin: 0 auto;
background: var(--color-bg-secondary);
border: 1px solid var(--color-border-light);
border-left: 4px solid var(--color-accent);
border-radius: 8px;
padding: clamp(1.5rem, 3vw, 2.5rem);
display: flex;
flex-direction: row;
gap: clamp(1rem, 2vw, 1.5rem);
align-items: flex-start;
}

.disclaimer-icon-current-account-balance-ringgit {
font-size: clamp(1.5rem, 2.5vw, 2rem);
color: var(--color-accent);
flex-shrink: 0;
margin-top: 0.25rem;
}

.disclaimer-text-current-account-balance-ringgit {
flex: 1;
display: flex;
flex-direction: column;
gap: clamp(0.75rem, 1.5vw, 1rem);
}

.disclaimer-title-current-account-balance-ringgit {
font-family: var(--font-heading);
font-size: clamp(1.1rem, 2vw, 1.4rem);
color: var(--color-text-primary);
margin: 0;
line-height: 1.3;
font-weight: 700;
word-wrap: break-word;
overflow-wrap: break-word;
}

.disclaimer-paragraph-current-account-balance-ringgit {
font-size: clamp(0.8rem, 0.9vw + 0.4rem, 1rem);
color: var(--color-text-secondary);
line-height: 1.7;
margin: 0;
word-wrap: break-word;
overflow-wrap: break-word;
}

@media (max-width: 768px) {
.hero-content-current-account-balance-ringgit {
flex-direction: column;
}

.hero-text-current-account-balance-ringgit,
.hero-image-current-account-balance-ringgit {
flex: 1 1 100%;
max-width: 100%;
}

.intro-content-current-account-balance-ringgit {
flex-direction: column;
}

.intro-text-current-account-balance-ringgit,
.intro-image-current-account-balance-ringgit {
flex: 1 1 100%;
max-width: 100%;
}

.mechanics-content-current-account-balance-ringgit {
flex-direction: column;
}

.mechanics-image-current-account-balance-ringgit {
order: 0;
}

.mechanics-image-current-account-balance-ringgit,
.mechanics-text-current-account-balance-ringgit {
flex: 1 1 100%;
max-width: 100%;
}

.components-grid-current-account-balance-ringgit {
flex-direction: column;
}

.component-card-current-account-balance-ringgit {
flex: 1 1 100%;
max-width: 100%;
}

.context-content-current-account-balance-ringgit {
flex-direction: column;
}

.context-text-current-account-balance-ringgit,
.context-image-current-account-balance-ringgit {
flex: 1 1 100%;
max-width: 100%;
}

.integration-content-current-account-balance-ringgit {
flex-direction: column;
}

.integration-image-current-account-balance-ringgit,
.integration-text-current-account-balance-ringgit {
flex: 1 1 100%;
max-width: 100%;
}

.related-cards-current-account-balance-ringgit {
flex-direction: column;
}

.related-card-current-account-balance-ringgit {
flex: 1 1 100%;
max-width: 100%;
}

.disclaimer-content-current-account-balance-ringgit {
flex-direction: column;
}

.disclaimer-icon-current-account-balance-ringgit {
margin-top: 0;
}
}

.main-managed-float-regime-explained {
  width: 100%;
  overflow: hidden;
}

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

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

.breadcrumbs-managed-float-regime-explained {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.breadcrumbs-managed-float-regime-explained a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-base);
}

.breadcrumbs-managed-float-regime-explained a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-managed-float-regime-explained span {
  color: var(--color-text-muted);
}

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

.hero-text-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
}

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

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

.hero-meta-managed-float-regime-explained {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.meta-item-managed-float-regime-explained {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
  color: var(--color-text-secondary);
}

.meta-item-managed-float-regime-explained i {
  color: var(--color-accent);
  font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
}

.hero-image-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: clamp(0.75rem, 1vw, 1.5rem);
}

.hero-image-managed-float-regime-explained img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero-content-managed-float-regime-explained {
    flex-direction: column;
  }

  .hero-text-managed-float-regime-explained,
  .hero-image-managed-float-regime-explained {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

.intro-text-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
}

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

.intro-paragraph-managed-float-regime-explained {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.intro-image-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: clamp(0.75rem, 1vw, 1.5rem);
}

.intro-image-managed-float-regime-explained img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .intro-content-managed-float-regime-explained {
    flex-direction: column;
  }

  .intro-text-managed-float-regime-explained,
  .intro-image-managed-float-regime-explained {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.definition-section-managed-float-regime-explained {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.definition-content-managed-float-regime-explained {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.definition-text-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
}

.definition-title-managed-float-regime-explained {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.definition-paragraph-managed-float-regime-explained {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.highlight-box-managed-float-regime-explained {
  background: rgba(6, 182, 212, 0.1);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1rem, 2vw, 1.5rem);
  border-radius: 0.5rem;
  margin-top: clamp(1.5rem, 2vw, 2rem);
}

.highlight-text-managed-float-regime-explained {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.highlight-text-managed-float-regime-explained strong {
  color: var(--color-text-primary);
}

.definition-image-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: clamp(0.75rem, 1vw, 1.5rem);
}

.definition-image-managed-float-regime-explained img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .definition-content-managed-float-regime-explained {
    flex-direction: column;
  }

  .definition-text-managed-float-regime-explained,
  .definition-image-managed-float-regime-explained {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.benefits-content-managed-float-regime-explained {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.benefits-title-managed-float-regime-explained {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-wrapper-managed-float-regime-explained {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.benefits-text-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
}

.benefits-paragraph-managed-float-regime-explained {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.benefits-subheading-managed-float-regime-explained {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.benefits-image-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: clamp(0.75rem, 1vw, 1.5rem);
}

.benefits-image-managed-float-regime-explained img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .benefits-wrapper-managed-float-regime-explained {
    flex-direction: column;
  }

  .benefits-text-managed-float-regime-explained,
  .benefits-image-managed-float-regime-explained {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.mechanics-section-managed-float-regime-explained {
  background: var(--color-bg-primary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.mechanics-content-managed-float-regime-explained {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.mechanics-title-managed-float-regime-explained {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mechanics-cards-managed-float-regime-explained {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  justify-content: center;
}

.mechanics-card-managed-float-regime-explained {
  flex: 1 1 calc(50% - clamp(0.75rem, 1vw, 1.25rem));
  max-width: 380px;
  background: var(--color-bg-card);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: clamp(0.75rem, 1vw, 1.25rem);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  transition: var(--transition-base);
}

.mechanics-card-managed-float-regime-explained:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.card-number-managed-float-regime-explained {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--color-accent);
}

.card-title-managed-float-regime-explained {
  font-size: clamp(1.1rem, 1.5vw + 0.5rem, 1.5rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-text-managed-float-regime-explained {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mechanics-card-managed-float-regime-explained {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.factors-section-managed-float-regime-explained {
  background: var(--color-bg-secondary);
  padding: clamp(3rem, 8vw, 6rem) 0;
  overflow: hidden;
}

.factors-content-managed-float-regime-explained {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

.factors-text-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
}

.factors-title-managed-float-regime-explained {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.factors-paragraph-managed-float-regime-explained {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.factors-subheading-managed-float-regime-explained {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-top: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: clamp(0.75rem, 1vw, 1rem);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.factors-image-managed-float-regime-explained {
  flex: 1 1 50%;
  max-width: 50%;
  overflow: hidden;
  border-radius: clamp(0.75rem, 1vw, 1.5rem);
}

.factors-image-managed-float-regime-explained img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .factors-content-managed-float-regime-explained {
    flex-direction: column;
  }

  .factors-text-managed-float-regime-explained,
  .factors-image-managed-float-regime-explained {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

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

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

.conclusion-paragraph-managed-float-regime-explained {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta-box-managed-float-regime-explained {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary-hover));
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: clamp(0.75rem, 1vw, 1.25rem);
  text-align: center;
  color: var(--color-text-primary);
  margin-top: clamp(1.5rem, 2vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}

.cta-title-managed-float-regime-explained {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.cta-text-managed-float-regime-explained {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-primary);
  line-height: 1.6;
}

.btn-managed-float-regime-explained {
  display: inline-block;
  padding: clamp(0.75rem, 1vw, 1rem) clamp(1.5rem, 2vw, 2rem);
  background: var(--color-text-primary);
  color: var(--color-accent);
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
}

.btn-managed-float-regime-explained:hover {
  background: var(--color-text-secondary);
  transform: translateY(-2px);
}

.btn-primary-managed-float-regime-explained {
  background: var(--color-text-primary);
  color: var(--color-accent);
}

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

.disclaimer-content-managed-float-regime-explained {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
  max-width: 900px;
  margin: 0 auto;
  background: rgba(6, 182, 212, 0.08);
  border-left: 4px solid var(--color-accent);
  padding: clamp(1.5rem, 2vw, 2rem);
  border-radius: 0.5rem;
}

.disclaimer-title-managed-float-regime-explained {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.75rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.disclaimer-text-managed-float-regime-explained {
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.related-content-managed-float-regime-explained {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

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

.related-cards-managed-float-regime-explained {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 2vw, 2.5rem);
  justify-content: center;
}

.related-card-managed-float-regime-explained {
  flex: 1 1 calc(33.333% - clamp(1rem, 1.5vw, 1.67rem));
  max-width: 380px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: clamp(0.75rem, 1vw, 1.25rem);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-managed-float-regime-explained:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
}

.related-image-managed-float-regime-explained {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.related-image-managed-float-regime-explained img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-text-managed-float-regime-explained {
  padding: clamp(1.25rem, 1.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 1vw, 1rem);
  flex: 1;
}

.related-card-title-managed-float-regime-explained {
  font-size: clamp(1.05rem, 1.5vw + 0.5rem, 1.35rem);
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.related-card-description-managed-float-regime-explained {
  font-size: clamp(0.85rem, 0.95vw + 0.4rem, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .related-card-managed-float-regime-explained {
    flex: 1 1 calc(50% - clamp(0.75rem, 1vw, 1.25rem));
  }
}

@media (max-width: 768px) {
  .related-card-managed-float-regime-explained {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

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

.main-bnm-foreign-reserves-explained {
width: 100%;
}

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

.hero-section-bnm-foreign-reserves-explained {
background: var(--color-bg-primary);
padding: clamp(2rem, 6vw, 4rem) 0;
overflow: hidden;
}

.hero-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: column;
gap: clamp(2rem, 4vw, 3rem);
}

.breadcrumbs-bnm-foreign-reserves-explained {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 1rem;
font-size: clamp(0.75rem, 1vw, 0.875rem);
}

.breadcrumbs-bnm-foreign-reserves-explained a {
color: var(--color-primary);
text-decoration: none;
transition: color var(--transition-base);
}

.breadcrumbs-bnm-foreign-reserves-explained a:hover {
color: var(--color-accent);
text-decoration: underline;
}

.breadcrumbs-bnm-foreign-reserves-explained span {
color: var(--color-text-secondary);
}

.hero-header-bnm-foreign-reserves-explained {
text-align: center;
}

.hero-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.75rem, 5vw + 1rem, 3.5rem);
font-weight: 800;
line-height: var(--line-height-tight);
margin-bottom: 1rem;
}

.hero-subtitle-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
line-height: var(--line-height-relaxed);
margin-bottom: 1.5rem;
max-width: 700px;
margin-left: auto;
margin-right: auto;
}

.hero-meta-bnm-foreign-reserves-explained {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
font-size: 0.875rem;
}

.meta-item-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
}

.meta-divider-bnm-foreign-reserves-explained {
color: var(--color-border-light);
}

.hero-image-bnm-foreign-reserves-explained {
width: 100%;
max-height: 450px;
overflow: hidden;
border-radius: var(--radius-xl);
}

.hero-img-bnm-foreign-reserves-explained {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.intro-section-bnm-foreign-reserves-explained {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.intro-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 3.5rem);
align-items: center;
}

.intro-text-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
}

.intro-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
line-height: var(--line-height-tight);
margin-bottom: 1.5rem;
}

.intro-text-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: var(--line-height-relaxed);
margin-bottom: 1.25rem;
}

.intro-image-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
height: 100%;
min-height: 300px;
border-radius: var(--radius-lg);
overflow: hidden;
}

.intro-img-bnm-foreign-reserves-explained {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

@media (max-width: 768px) {
.intro-content-bnm-foreign-reserves-explained {
flex-direction: column;
}

.intro-text-wrapper-bnm-foreign-reserves-explained,
.intro-image-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 100%;
max-width: 100%;
}

.intro-image-wrapper-bnm-foreign-reserves-explained {
min-height: 250px;
}
}

.reserves-mechanics-section-bnm-foreign-reserves-explained {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.reserves-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 3.5rem);
align-items: center;
}

.reserves-text-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
}

.reserves-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
line-height: var(--line-height-tight);
margin-bottom: 1.5rem;
}

.reserves-description-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: var(--line-height-relaxed);
margin-bottom: 1.25rem;
}

.reserves-image-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
height: 100%;
min-height: 300px;
border-radius: var(--radius-lg);
overflow: hidden;
}

.reserves-img-bnm-foreign-reserves-explained {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

@media (max-width: 768px) {
.reserves-content-bnm-foreign-reserves-explained {
flex-direction: column;
}

.reserves-text-bnm-foreign-reserves-explained,
.reserves-image-bnm-foreign-reserves-explained {
flex: 1 1 100%;
max-width: 100%;
}

.reserves-image-bnm-foreign-reserves-explained {
min-height: 250px;
}
}

.stability-section-bnm-foreign-reserves-explained {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.stability-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 3.5rem);
align-items: center;
}

.stability-image-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
height: 100%;
min-height: 300px;
border-radius: var(--radius-lg);
overflow: hidden;
}

.stability-img-bnm-foreign-reserves-explained {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.stability-text-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
}

.stability-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
line-height: var(--line-height-tight);
margin-bottom: 1.5rem;
}

.stability-description-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: var(--line-height-relaxed);
margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
.stability-content-bnm-foreign-reserves-explained {
flex-direction: column;
}

.stability-image-bnm-foreign-reserves-explained,
.stability-text-bnm-foreign-reserves-explained {
flex: 1 1 100%;
max-width: 100%;
}

.stability-image-bnm-foreign-reserves-explained {
min-height: 250px;
}
}

.current-account-section-bnm-foreign-reserves-explained {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.current-account-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 3.5rem);
align-items: center;
}

.current-account-text-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
}

.current-account-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
line-height: var(--line-height-tight);
margin-bottom: 1.5rem;
}

.current-account-description-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: var(--line-height-relaxed);
margin-bottom: 1.25rem;
}

.current-account-image-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
height: 100%;
min-height: 300px;
border-radius: var(--radius-lg);
overflow: hidden;
}

.current-account-img-bnm-foreign-reserves-explained {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

@media (max-width: 768px) {
.current-account-content-bnm-foreign-reserves-explained {
flex-direction: column;
}

.current-account-text-bnm-foreign-reserves-explained,
.current-account-image-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 100%;
max-width: 100%;
}

.current-account-image-wrapper-bnm-foreign-reserves-explained {
min-height: 250px;
}
}

.signals-section-bnm-foreign-reserves-explained {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.signals-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 3rem);
}

.signals-header-bnm-foreign-reserves-explained {
text-align: center;
}

.signals-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
line-height: var(--line-height-tight);
margin-bottom: 0.75rem;
}

.signals-subtitle-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: var(--line-height-relaxed);
}

.signals-cards-bnm-foreign-reserves-explained {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.signal-card-bnm-foreign-reserves-explained {
flex: 1 1 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: 1rem;
transition: all var(--transition-base);
}

.signal-card-bnm-foreign-reserves-explained:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}

.signal-icon-bnm-foreign-reserves-explained {
font-size: 2rem;
color: var(--color-primary);
}

.signal-card-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1rem, 2vw, 1.25rem);
font-weight: 600;
line-height: var(--line-height-tight);
}

.signal-card-text-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
line-height: var(--line-height-relaxed);
}

.forward-section-bnm-foreign-reserves-explained {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.forward-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: row;
gap: clamp(2rem, 4vw, 3.5rem);
align-items: center;
}

.forward-text-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
}

.forward-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
line-height: var(--line-height-tight);
margin-bottom: 1.5rem;
}

.forward-text-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1.125rem);
line-height: var(--line-height-relaxed);
margin-bottom: 1.25rem;
}

.forward-image-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 50%;
max-width: 50%;
height: 100%;
min-height: 300px;
border-radius: var(--radius-lg);
overflow: hidden;
}

.forward-img-bnm-foreign-reserves-explained {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

@media (max-width: 768px) {
.forward-content-bnm-foreign-reserves-explained {
flex-direction: column;
}

.forward-text-wrapper-bnm-foreign-reserves-explained,
.forward-image-wrapper-bnm-foreign-reserves-explained {
flex: 1 1 100%;
max-width: 100%;
}

.forward-image-wrapper-bnm-foreign-reserves-explained {
min-height: 250px;
}
}

.disclaimer-section-bnm-foreign-reserves-explained {
background: var(--color-bg-secondary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.disclaimer-content-bnm-foreign-reserves-explained {
max-width: 800px;
margin: 0 auto;
padding: clamp(2rem, 3vw, 3rem);
background: var(--color-bg-card);
border-radius: var(--radius-lg);
border-left: 4px solid var(--color-warning);
display: flex;
flex-direction: column;
gap: 1rem;
}

.disclaimer-icon-bnm-foreign-reserves-explained {
font-size: 1.75rem;
color: var(--color-warning);
}

.disclaimer-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1rem, 2vw, 1.25rem);
font-weight: 600;
line-height: var(--line-height-tight);
}

.disclaimer-text-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
line-height: var(--line-height-relaxed);
}

.related-section-bnm-foreign-reserves-explained {
background: var(--color-bg-primary);
padding: clamp(3rem, 8vw, 5rem) 0;
overflow: hidden;
}

.related-content-bnm-foreign-reserves-explained {
display: flex;
flex-direction: column;
gap: clamp(2rem, 3vw, 3rem);
}

.related-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1.5rem, 4vw + 0.5rem, 2.5rem);
font-weight: 700;
line-height: var(--line-height-tight);
text-align: center;
margin-bottom: 1rem;
}

.related-cards-bnm-foreign-reserves-explained {
display: flex;
flex-wrap: wrap;
gap: clamp(1.5rem, 3vw, 2.5rem);
justify-content: center;
}

.related-card-bnm-foreign-reserves-explained {
flex: 1 1 300px;
max-width: 380px;
background: var(--color-bg-secondary);
border-radius: var(--radius-lg);
overflow: hidden;
text-decoration: none;
transition: all var(--transition-base);
display: flex;
flex-direction: column;
}

.related-card-bnm-foreign-reserves-explained:hover {
transform: translateY(-4px);
box-shadow: var(--shadow-lg);
}

.related-card-image-bnm-foreign-reserves-explained {
width: 100%;
height: 200px;
overflow: hidden;
}

.related-card-img-bnm-foreign-reserves-explained {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}

.related-card-body-bnm-foreign-reserves-explained {
padding: clamp(1.5rem, 2vw, 2rem);
display: flex;
flex-direction: column;
gap: 0.75rem;
flex-grow: 1;
}

.related-card-title-bnm-foreign-reserves-explained {
color: var(--color-text-primary);
font-size: clamp(1rem, 2vw, 1.25rem);
font-weight: 600;
line-height: var(--line-height-tight);
}

.related-card-text-bnm-foreign-reserves-explained {
color: var(--color-text-secondary);
font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
line-height: var(--line-height-relaxed);
flex-grow: 1;
}

@media (max-width: 768px) {
.hero-content-bnm-foreign-reserves-explained {
flex-direction: column;
}

.signals-cards-bnm-foreign-reserves-explained {
flex-direction: column;
align-items: stretch;
}

.signal-card-bnm-foreign-reserves-explained {
flex: 1 1 100%;
max-width: 100%;
}
}

@media (min-width: 1024px) {
.hero-section-bnm-foreign-reserves-explained {
padding: clamp(3rem, 10vw, 6rem) 0;
}

.intro-section-bnm-foreign-reserves-explained,
.reserves-mechanics-section-bnm-foreign-reserves-explained,
.stability-section-bnm-foreign-reserves-explained,
.current-account-section-bnm-foreign-reserves-explained,
.forward-section-bnm-foreign-reserves-explained {
padding: clamp(4rem, 10vw, 6rem) 0;
}

.disclaimer-section-bnm-foreign-reserves-explained,
.related-section-bnm-foreign-reserves-explained {
padding: clamp(3rem, 10vw, 6rem) 0;
}
}

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

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

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

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

.main-trade-weighted-index-interpretation {
  width: 100%;
  overflow-x: hidden;
}

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

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

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

.hero-text-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-image-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.hero-img-trade-weighted-index-interpretation {
  width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.breadcrumbs-trade-weighted-index-interpretation {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  flex-wrap: wrap;
}

.breadcrumbs-trade-weighted-index-interpretation a {
  color: var(--color-accent);
  text-decoration: none;
  font-size: clamp(0.75rem, 1vw, 0.95rem);
  transition: color var(--transition-base);
}

.breadcrumbs-trade-weighted-index-interpretation a:hover {
  color: var(--color-accent-hover);
  text-decoration: underline;
}

.breadcrumbs-trade-weighted-index-interpretation span {
  color: var(--color-text-secondary);
  font-size: clamp(0.75rem, 1vw, 0.95rem);
}

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

.hero-subtitle-trade-weighted-index-interpretation {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  line-height: var(--line-height-relaxed);
}

.hero-meta-trade-weighted-index-interpretation {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.meta-item-trade-weighted-index-interpretation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
}

.meta-separator-trade-weighted-index-interpretation {
  color: var(--color-text-secondary);
  opacity: 0.5;
}

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

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

.intro-text-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-image-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.intro-title-trade-weighted-index-interpretation {
  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);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.intro-paragraph-trade-weighted-index-interpretation {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.intro-img-trade-weighted-index-interpretation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.concept-text-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-image-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.concept-title-trade-weighted-index-interpretation {
  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);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.concept-paragraph-trade-weighted-index-interpretation {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.concept-img-trade-weighted-index-interpretation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.comparison-content-trade-weighted-index-interpretation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.comparison-header-trade-weighted-index-interpretation {
  text-align: center;
}

.comparison-title-trade-weighted-index-interpretation {
  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);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.comparison-intro-trade-weighted-index-interpretation {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

.comparison-split-trade-weighted-index-interpretation {
  display: flex;
  flex-direction: row;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: stretch;
}

.comparison-item-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.comparison-item-title-trade-weighted-index-interpretation {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.comparison-item-text-trade-weighted-index-interpretation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.reading-text-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.reading-image-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.reading-title-trade-weighted-index-interpretation {
  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);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.reading-paragraph-trade-weighted-index-interpretation {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.reading-img-trade-weighted-index-interpretation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

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

.implications-text-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.implications-image-trade-weighted-index-interpretation {
  flex: 1 1 50%;
  max-width: 50%;
}

.implications-title-trade-weighted-index-interpretation {
  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);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.implications-paragraph-trade-weighted-index-interpretation {
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.125rem);
  color: var(--color-text-secondary);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: var(--line-height-relaxed);
}

.implications-img-trade-weighted-index-interpretation {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

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

.takeaway-content-trade-weighted-index-interpretation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.takeaway-title-trade-weighted-index-interpretation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.takeaway-items-trade-weighted-index-interpretation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.takeaway-item-trade-weighted-index-interpretation {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.takeaway-item-title-trade-weighted-index-interpretation {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.takeaway-item-text-trade-weighted-index-interpretation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.disclaimer-content-trade-weighted-index-interpretation {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.disclaimer-box-trade-weighted-index-interpretation {
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
}

.disclaimer-title-trade-weighted-index-interpretation {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.disclaimer-text-trade-weighted-index-interpretation {
  font-size: clamp(0.875rem, 1vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.related-content-trade-weighted-index-interpretation {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 3vw, 3rem);
}

.related-title-trade-weighted-index-interpretation {
  font-size: clamp(1.5rem, 4vw + 0.5rem, 2.75rem);
  font-weight: 700;
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: clamp(1rem, 2vw, 2rem);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.related-cards-trade-weighted-index-interpretation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  justify-items: center;
}

.related-card-trade-weighted-index-interpretation {
  width: 100%;
  max-width: 380px;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  display: flex;
  flex-direction: column;
}

.related-card-trade-weighted-index-interpretation:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.related-image-trade-weighted-index-interpretation {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-card);
}

.related-card-img-trade-weighted-index-interpretation {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card-text-trade-weighted-index-interpretation {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.related-card-title-trade-weighted-index-interpretation {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: var(--line-height-snug);
}

.related-card-description-trade-weighted-index-interpretation {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.related-card-link-trade-weighted-index-interpretation {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-accent);
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  font-weight: 600;
  transition: background var(--transition-base), opacity var(--transition-base);
  width: fit-content;
}

.related-card-link-trade-weighted-index-interpretation:hover {
  background: var(--color-accent-hover);
  opacity: 0.9;
}

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

  .hero-text-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .hero-image-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-content-trade-weighted-index-interpretation {
    flex-direction: column;
  }

  .intro-text-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .intro-image-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .concept-content-trade-weighted-index-interpretation {
    flex-direction: column;
  }

  .concept-text-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .concept-image-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .comparison-split-trade-weighted-index-interpretation {
    flex-direction: column;
  }

  .comparison-item-trade-weighted-index-interpretation {
    flex: 1 1 100%;
  }

  .reading-content-trade-weighted-index-interpretation {
    flex-direction: column;
  }

  .reading-text-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .reading-image-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implications-content-trade-weighted-index-interpretation {
    flex-direction: column;
  }

  .implications-text-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .implications-image-trade-weighted-index-interpretation {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .takeaway-items-trade-weighted-index-interpretation {
    grid-template-columns: 1fr;
  }

  .related-cards-trade-weighted-index-interpretation {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .related-card-trade-weighted-index-interpretation {
    max-width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .comparison-split-trade-weighted-index-interpretation {
    flex-direction: column;
  }

  .comparison-item-trade-weighted-index-interpretation {
    flex: 1 1 100%;
  }

  .takeaway-items-trade-weighted-index-interpretation {
    grid-template-columns: repeat(2, 1fr);
  }
}

* {
  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);
}

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

p, span, li {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

.ringgit-insights-about {
  background: var(--color-bg-primary);
  overflow: hidden;
}

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

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

.hero-text-about {
  text-align: center;
  max-width: 800px;
}

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

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

.hero-image-about {
  width: 100%;
  max-width: 900px;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

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

.foundation-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.section-tag-about {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(var(--color-primary), 0.1);
  color: var(--color-primary);
  border-radius: 20px;
  font-size: clamp(0.75rem, 1vw, 0.875rem);
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 800;
  line-height: var(--line-height-tight);
  margin-bottom: 1rem;
}

.section-description-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.foundation-card-about {
  flex: 1 1 280px;
  max-width: 380px;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: var(--color-bg-primary);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.foundation-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.card-icon-about {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.card-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

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

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

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

.expertise-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

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

.expertise-block-about {
  padding: clamp(2rem, 3vw, 2.5rem);
  background: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.expertise-block-title-about {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.expertise-block-text-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

.approach-header-about {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.approach-steps-about {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 3vw, 2rem);
  justify-content: center;
}

.step-item-about {
  flex: 1 1 260px;
  max-width: 360px;
  text-align: center;
}

.step-number-about {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 1rem;
}

.step-title-about {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.step-description-about {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

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

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

.commitment-title-about {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 800;
  line-height: var(--line-height-tight);
  margin-bottom: 1.5rem;
}

.commitment-text-about {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

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

.value-item-about {
  flex: 1 1 240px;
  max-width: 320px;
  padding: clamp(1.5rem, 2vw, 2rem);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  text-align: center;
}

.value-icon-about {
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.value-name-about {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--color-text-primary);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.value-description-about {
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-snug);
}

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

.quote-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 800px;
  margin: 0 auto;
}

.featured-quote-about {
  padding: clamp(2rem, 4vw, 3rem);
  border-left: 5px solid var(--color-primary);
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
}

.quote-text-about {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  color: var(--color-text-primary);
  font-style: italic;
  line-height: var(--line-height-relaxed);
  margin-bottom: 1rem;
  font-weight: 500;
}

.quote-author-about {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--color-text-secondary);
  font-weight: 600;
  font-style: normal;
}

.disclaimer-section-about {
  padding: clamp(2.5rem, 6vw, 5rem) 0;
  background: var(--color-bg-primary);
  border-top: 1px solid var(--color-border-light);
  overflow: hidden;
}

.disclaimer-content-about {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 850px;
  margin: 0 auto;
}

.disclaimer-header-about {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.disclaimer-icon-about {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.disclaimer-title-about {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: var(--color-text-primary);
  font-weight: 700;
}

.disclaimer-text-about {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 768px) {
  .hero-content-about {
    padding: 0 clamp(1rem, 3vw, 1.5rem);
  }

  .foundation-cards-about,
  .approach-steps-about,
  .values-grid-about {
    flex-direction: column;
    align-items: stretch;
  }

  .foundation-card-about,
  .step-item-about,
  .value-item-about {
    flex: 1 1 100%;
    max-width: none;
  }

  .step-item-about {
    text-align: left;
  }

  .step-number-about {
    text-align: left;
  }

  .value-item-about {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero-title-about,
  .section-title-about,
  .commitment-title-about {
    word-spacing: -0.1em;
  }

  .featured-quote-about {
    border-left-width: 3px;
  }
}

.portfolio-page {
  width: 100%;
  background-color: var(--color-bg-primary);
}

.portfolio-hero {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

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

.portfolio-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.875rem, 5vw + 0.5rem, 3rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  line-height: var(--line-height-tight);
}

.portfolio-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 2vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .portfolio-hero {
    padding: var(--space-3xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .portfolio-hero {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.portfolio-projects {
  background-color: var(--color-bg-primary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-projects-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.portfolio-card {
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
}

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

.portfolio-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.portfolio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card-content {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-card-tag {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--color-primary);
  background-color: var(--color-primary-light);
  padding: 0.375rem var(--space-sm);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  width: fit-content;
}

.portfolio-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw + 0.25rem, 1.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
  line-height: var(--line-height-snug);
}

.portfolio-card-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.portfolio-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-light);
}

.portfolio-card-detail {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

@media (min-width: 768px) {
  .portfolio-projects {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card-image {
    height: 260px;
  }
}

@media (min-width: 1024px) {
  .portfolio-projects {
    padding: var(--space-4xl) var(--space-xl);
  }

  .portfolio-projects-container {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
  }

  .portfolio-card {
    flex-direction: row;
  }

  .portfolio-card:nth-child(odd) {
    flex-direction: row;
  }

  .portfolio-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .portfolio-card-image {
    width: 45%;
    height: auto;
    min-height: 300px;
  }

  .portfolio-card-content {
    width: 55%;
    padding: var(--space-xl);
    justify-content: center;
  }
}

.portfolio-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.portfolio-cta-container {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw + 0.25rem, 2.25rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-tight);
}

.portfolio-cta-description {
  font-family: var(--font-primary);
  font-size: clamp(0.875rem, 1.5vw + 0.25rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-xl);
}

.portfolio-cta-button {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-light);
  background-color: var(--color-accent);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color var(--transition-base), transform var(--transition-base);
  border: none;
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
}

.portfolio-cta-button:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-2px);
}

.portfolio-cta-button:active {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-cta {
    padding: var(--space-3xl) var(--space-lg);
  }

  .portfolio-cta-title {
    margin-bottom: var(--space-lg);
  }

  .portfolio-cta-description {
    margin-bottom: var(--space-2xl);
  }
}

@media (min-width: 1024px) {
  .portfolio-cta {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.faq-page {
  background-color: var(--color-bg-primary);
  width: 100%;
}

.faq-hero {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.faq-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw + 0.5rem, 3.5rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.faq-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(1rem, 2vw + 0.5rem, 1.25rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-normal);
  margin: 0;
  font-weight: 400;
}

@media (min-width: 768px) {
  .faq-hero {
    padding: var(--space-4xl) var(--space-lg);
  }

  .faq-hero-title {
    margin-bottom: var(--space-lg);
  }
}

.faq-content {
  background-color: var(--color-bg-primary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.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: all var(--transition-base);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
}

.faq-question {
  width: 100%;
  background-color: var(--color-bg-card);
  border: none;
  padding: var(--space-lg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: all var(--transition-base);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  font-weight: 600;
  color: var(--color-text-primary);
  text-align: left;
}

.faq-question:hover {
  background-color: var(--color-bg-tertiary);
  color: var(--color-primary);
}

.faq-question-text {
  flex: 1;
  line-height: var(--line-height-snug);
}

.faq-toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  font-size: 1.5rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.faq-item[data-expanded="true"] .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-answer {
  background-color: var(--color-bg-tertiary);
  padding: 0 var(--space-lg) var(--space-lg) var(--space-lg);
  border-top: 1px solid var(--color-border-light);
  animation: slideDown var(--transition-base) ease-out forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

.faq-answer p {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.4rem, 1.0625rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-weight: 400;
}

@media (min-width: 768px) {
  .faq-content {
    padding: var(--space-4xl) var(--space-lg);
  }

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

  .faq-question {
    padding: var(--space-xl);
  }

  .faq-answer {
    padding: 0 var(--space-xl) var(--space-xl) var(--space-xl);
  }
}

.faq-cta {
  background-color: var(--color-bg-secondary);
  padding: var(--space-3xl) var(--space-md);
  overflow: hidden;
}

.faq-cta-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  align-items: center;
}

.faq-cta-content {
  text-align: center;
}

.faq-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  color: var(--color-text-primary);
  font-weight: 700;
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.faq-cta-text {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg) 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta-button {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-2xl);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.0625rem);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition-base);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  letter-spacing: var(--letter-spacing-normal);
}

.faq-cta-button:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.faq-cta-image {
  width: 100%;
  max-width: 500px;
  border-radius: var(--radius-lg);
  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-cta {
    padding: var(--space-4xl) var(--space-lg);
  }

  .faq-cta-container {
    flex-direction: row;
    gap: var(--space-3xl);
    align-items: flex-start;
  }

  .faq-cta-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .faq-cta-text {
    margin-left: 0;
    margin-right: 0;
  }

  .faq-cta-image {
    flex: 1;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .faq-cta {
    padding: var(--space-4xl) var(--space-xl);
  }

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

.currency-legal {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

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

.currency-legal .content {
  max-width: 800px;
  margin: 0 auto;
}

.currency-legal h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  line-height: var(--line-height-snug);
}

.currency-legal .update-date {
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3xl);
  font-style: italic;
}

.currency-legal section {
  margin-bottom: var(--space-3xl);
  padding: var(--space-2xl) 0;
  border-bottom: 1px solid var(--color-border-light);
}

.currency-legal section:last-child {
  border-bottom: none;
}

.currency-legal h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  line-height: var(--line-height-snug);
}

.currency-legal 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);
}

.currency-legal ul {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
}

.currency-legal 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);
  padding-left: var(--space-lg);
  position: relative;
}

.currency-legal li:before {
  content: "";
  color: var(--color-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.currency-legal .contact-section {
  background-color: var(--color-bg-secondary);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  margin-top: var(--space-3xl);
}

.currency-legal .contact-section h2 {
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.currency-legal .contact-section p {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
}

.currency-legal .contact-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

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

  .currency-legal section {
    padding: var(--space-3xl) 0;
  }
}

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

  .currency-legal section {
    padding: var(--space-4xl) 0;
  }
}

.thank-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-section {
  width: 100%;
  padding: var(--space-lg) var(--space-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .thank-section {
    padding: var(--space-2xl) var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .thank-section {
    padding: var(--space-3xl) var(--space-xl);
  }
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  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);
  }
}

.content {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.thank-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .thank-wrapper {
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .thank-wrapper {
    gap: var(--space-2xl);
  }
}

.thank-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-success);
  border-radius: var(--radius-full);
  color: var(--color-text-light);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .thank-icon {
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .thank-icon {
    width: 120px;
    height: 120px;
  }
}

.thank-icon svg {
  width: 50%;
  height: 50%;
  stroke-width: 1.5;
}

@media (min-width: 768px) {
  .thank-icon svg {
    width: 55%;
    height: 55%;
  }
}

h1 {
  color: var(--color-text-primary);
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-normal);
  line-height: var(--line-height-tight);
  margin: 0;
}

.lead-text {
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: var(--line-height-relaxed);
  margin: 0;
  letter-spacing: var(--letter-spacing-normal);
}

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

@media (min-width: 768px) {
  .message-content {
    gap: var(--space-lg);
  }
}

.message-content p {
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw + 0.5rem, 1.1rem);
  line-height: var(--line-height-relaxed);
  margin: 0;
  letter-spacing: var(--letter-spacing-normal);
}

.btn-return {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-text-light);
  padding: var(--space-md) var(--space-xl);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: var(--letter-spacing-normal);
  border: 2px solid var(--color-primary);
  transition: all var(--transition-base);
  cursor: pointer;
  outline: none;
}

@media (min-width: 768px) {
  .btn-return {
    padding: var(--space-lg) var(--space-2xl);
  }
}

.btn-return:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

@media (max-width: 480px) {
  .thank-section {
    padding: var(--space-lg) var(--space-sm);
  }

  .container {
    padding: 0 var(--space-sm);
  }

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

  .thank-icon {
    width: 70px;
    height: 70px;
  }

  .btn-return {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
  }
}

@media (min-width: 1440px) {
  .thank-section {
    padding: var(--space-4xl) var(--space-xl);
  }
}

.error-page {
  background-color: var(--color-bg-primary);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.error-section {
  width: 100%;
  padding: var(--space-3xl) 0;
  overflow: hidden;
}

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

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

.error-visual {
  margin-bottom: var(--space-3xl);
  position: relative;
}

.error-code-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-2xl);
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--color-primary);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.error-currency-symbol {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-secondary);
  opacity: 0.3;
  font-weight: 700;
}

.error-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--color-text-primary);
  margin: var(--space-lg) 0 var(--space-md) 0;
  font-weight: 700;
  letter-spacing: var(--letter-spacing-normal);
}

.error-message {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.15rem);
  color: var(--color-text-primary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-2xl) 0;
  font-weight: 400;
}

.error-context {
  background-color: var(--color-bg-secondary);
  border-left: 4px solid var(--color-primary);
  padding: var(--space-lg) var(--space-xl);
  border-radius: var(--radius-md);
  margin: var(--space-2xl) 0;
}

.error-hint {
  font-family: var(--font-primary);
  font-size: clamp(0.9rem, 0.95vw + 0.4rem, 1.05rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
  font-weight: 400;
}

.btn {
  display: inline-block;
  padding: var(--space-md) var(--space-2xl);
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1vw + 0.4rem, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  transition: var(--transition-base);
  cursor: pointer;
  border: none;
  letter-spacing: var(--letter-spacing-normal);
  margin-top: var(--space-xl);
}

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

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

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

.error-footer-note {
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid var(--color-border-light);
}

.footer-text {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 0.9vw + 0.3rem, 0.95rem);
  color: var(--color-text-muted);
  margin: 0;
  font-weight: 400;
  letter-spacing: var(--letter-spacing-wide);
}

@media (max-width: 480px) {
  .error-page {
    padding: var(--space-md);
  }

  .error-section {
    padding: var(--space-2xl) 0;
  }

  .error-currency-symbol {
    position: relative;
    right: 0;
    transform: none;
    display: block;
    margin-top: var(--space-md);
    opacity: 0.2;
  }

  .error-code-wrapper {
    margin-bottom: var(--space-2xl);
  }

  .error-context {
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-xl) 0;
  }

  .btn {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    margin-top: var(--space-lg);
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .error-page {
    padding: var(--space-lg);
  }

  .error-section {
    padding: var(--space-2xl) 0;
  }

  .error-currency-symbol {
    right: -40px;
  }

  .container {
    padding: 0 var(--space-lg);
  }
}

@media (min-width: 769px) {
  .error-page {
    padding: var(--space-xl);
  }

  .error-section {
    padding: var(--space-3xl) 0;
  }

  .container {
    padding: 0 var(--space-xl);
  }

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

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

  .container {
    padding: 0 var(--space-2xl);
  }

  .error-visual {
    margin-bottom: var(--space-3xl);
  }

  .error-currency-symbol {
    right: -80px;
  }
}

.contact-inquiries {
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.contact-inquiries-hero {
  background-color: var(--color-bg-primary);
  padding: 3rem 2rem;
  overflow: hidden;
}

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

.contact-inquiries-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: var(--letter-spacing-tight);
}

.contact-inquiries-hero-subtitle {
  font-family: var(--font-primary);
  font-size: clamp(0.95rem, 1.5vw, 1.125rem);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

@media (min-width: 768px) {
  .contact-inquiries-hero {
    padding: 5rem 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-hero {
    padding: 6rem 3rem;
  }
}

.contact-inquiries-main {
  background-color: var(--color-bg-primary);
  padding: 2rem 2rem 4rem 2rem;
  overflow: hidden;
}

.contact-inquiries-main-content {
  width: 100%;
}

.contact-inquiries-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (min-width: 968px) {
  .contact-inquiries-grid {
    flex-direction: row;
    gap: 4rem;
  }
}

.contact-inquiries-form-wrapper {
  flex: 1 1 400px;
  width: 100%;
}

.contact-inquiries-form-header {
  margin-bottom: 2rem;
}

.contact-inquiries-form-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-inquiries-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);
  margin: 0;
}

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

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

.contact-inquiries-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: var(--letter-spacing-normal);
}

.contact-inquiries-input,
.contact-inquiries-textarea {
  font-family: var(--font-primary);
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-md);
  color: var(--color-text-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  transition: var(--transition-base);
}

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

.contact-inquiries-input:focus,
.contact-inquiries-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--color-bg-card);
  box-shadow: 0 0 0 3px var(--color-bg-overlay);
}

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

.contact-inquiries-submit {
  font-family: var(--font-primary);
  width: 100%;
  padding: 1rem 2rem;
  background-color: var(--color-primary);
  color: var(--color-bg-primary);
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: 700;
  letter-spacing: var(--letter-spacing-normal);
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
}

.contact-inquiries-submit:hover {
  background-color: var(--color-primary-hover);
  transform: translateY(-2px);
}

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

.contact-inquiries-privacy-notice {
  font-family: var(--font-primary);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  text-align: center;
}

.contact-inquiries-privacy-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-base);
}

.contact-inquiries-privacy-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.contact-inquiries-info-wrapper {
  flex: 1 1 400px;
  width: 100%;
}

.contact-inquiries-info-header {
  margin-bottom: 2.5rem;
}

.contact-inquiries-info-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-sm) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-inquiries-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);
  margin: 0;
}

.contact-inquiries-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-inquiries-info-item {
  display: flex;
  gap: 1.5rem;
}

.contact-inquiries-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.contact-inquiries-info-icon i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.contact-inquiries-info-text {
  flex: 1;
}

.contact-inquiries-info-label {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 0.25rem 0;
}

.contact-inquiries-info-value {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  margin: 0;
  font-weight: 600;
}

.contact-inquiries-info-detail {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0.25rem 0 0 0;
}

.contact-inquiries-info-expertise {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-inquiries-expertise-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0 0 1.25rem 0;
}

.contact-inquiries-expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-inquiries-expertise-item {
  font-family: var(--font-primary);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  padding-left: 1.5rem;
  position: relative;
}

.contact-inquiries-expertise-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.375rem;
  height: 0.375rem;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.contact-inquiries-cta {
  background-color: var(--color-bg-secondary);
  padding: 3rem 2rem;
  overflow: hidden;
}

.contact-inquiries-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-inquiries-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 var(--space-lg) 0;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-inquiries-cta-description {
  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-inquiries-main {
    padding: 3rem 3rem 5rem 3rem;
  }

  .contact-inquiries-cta {
    padding: 4rem 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-inquiries-main {
    padding: 4rem 3rem 6rem 3rem;
  }

  .contact-inquiries-cta {
    padding: 5rem 3rem;
  }
}