:root {
  /* New Color System - Modern Financial Tech */
  --color-primary: #0F172A;
  --color-primary-light: #1E293B;
  --color-primary-dark: #020617;
  --color-accent: #06B6D4;
  --color-accent-dark: #0891B2;
  --color-accent-light: #67E8F9;
  --color-secondary: #F59E0B;
  --color-secondary-dark: #D97706;
  --color-secondary-light: #FCD34D;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  
  /* Neutral Palette */
  --color-neutral-900: #111827;
  --color-neutral-800: #1F2937;
  --color-neutral-700: #374151;
  --color-neutral-600: #4B5563;
  --color-neutral-500: #6B7280;
  --color-neutral-400: #9CA3AF;
  --color-neutral-300: #D1D5DB;
  --color-neutral-200: #E5E7EB;
  --color-neutral-100: #F3F4F6;
  --color-neutral-50: #F9FAFB;
  --color-white: #FFFFFF;
  
  /* Background Colors */
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F8FAFC;
  --color-bg-tertiary: #F1F5F9;
  --color-bg-dark: #0F172A;
  --color-bg-card: #FFFFFF;
  --color-bg-overlay: rgba(15, 23, 42, 0.95);

  /* Typography */
  --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-family-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Spacing System */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Border Radius */
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;
  --radius-2xl: 16px;
  --radius-3xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

  /* Container */
  --container-max: 1280px;
  --container-padding: var(--space-6);
}

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

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-regular);
  color: var(--color-neutral-800);
  background-color: var(--color-bg-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Button System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-lg);
  font-family: var(--font-family-primary);
  font-weight: var(--font-weight-medium);
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-neutral-300);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--color-neutral-50);
  border-color: var(--color-neutral-400);
  box-shadow: var(--shadow-md);
}

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

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

.btn-ghost {
  background-color: transparent;
  color: var(--color-neutral-600);
  border-color: transparent;
}

.btn-ghost:hover {
  background-color: var(--color-neutral-100);
  color: var(--color-neutral-800);
}

.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: 16px;
  border-radius: var(--radius-xl);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: 12px;
  border-radius: var(--radius-md);
}

/* Typography */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background-color: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-full);
}

.section-title {
  font-family: var(--font-family-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--color-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.section-title.light {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-neutral-600);
  line-height: 1.7;
  max-width: 640px;
}

.section-subtitle.light {
  color: rgba(255, 255, 255, 0.8);
}

.section-header {
  margin-bottom: var(--space-16);
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* Photo Placeholder */
.photo-placeholder {
  background: linear-gradient(135deg, var(--color-neutral-100) 0%, var(--color-neutral-200) 100%);
  border: 2px dashed var(--color-neutral-300);
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-3);
  color: var(--color-neutral-500);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.photo-placeholder:hover {
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.photo-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.6;
}

/* Header */
.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-neutral-200);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  transition: all 0.2s ease;
}

.brand:hover {
  transform: scale(1.02);
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-family-display);
  font-size: 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}

.brand-name strong {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, var(--color-accent-dark) 100%);
  padding: var(--space-24) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2306B6D4' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  animation: float 20s ease-in-out infinite;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text .section-label {
  background-color: rgba(6, 182, 212, 0.2);
  color: var(--color-accent-light);
}

.hero-text h1 {
  font-family: var(--font-family-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: var(--space-8);
  max-width: 560px;
}

.hero-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.hero-image .photo-placeholder {
  height: 400px;
}

.hero-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-2xl);
  transition: transform 0.3s ease;
}

.hero-photo:hover {
  transform: scale(1.02);
}

.security-photo {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.security-photo:hover {
  transform: scale(1.02);
}

.compliance-photo {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  transition: transform 0.3s ease;
}

.compliance-photo:hover {
  transform: scale(1.02);
}

/* Features Section */
.features {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-secondary);
}

.features.centered,
.how-it-works.centered,
.security.centered,
.assets.centered,
.market-rates.centered,
.compliance.centered {
  text-align: center;
}

.features.centered .section-header,
.how-it-works.centered .section-header,
.security.centered .section-header,
.assets.centered .section-header,
.market-rates.centered .section-header,
.compliance.centered .section-header {
  text-align: center;
}

.features.centered .section-header .section-subtitle,
.how-it-works.centered .section-header .section-subtitle,
.security.centered .section-header .section-subtitle,
.assets.centered .section-header .section-subtitle,
.market-rates.centered .section-header .section-subtitle,
.compliance.centered .section-header .section-subtitle {
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-accent);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: var(--shadow-md);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.feature-card h3 {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.feature-card p {
  font-size: 15px;
  color: var(--color-neutral-600);
  line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-primary);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-10);
}

.step-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  margin: 0 auto var(--space-6);
  box-shadow: var(--shadow-md);
}

.step-card h3 {
  font-size: 20px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}

.step-card p {
  font-size: 15px;
  color: var(--color-neutral-600);
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-tertiary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
}

.product-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card.featured {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  border-color: var(--color-accent);
  color: var(--color-white);
}

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

.product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  align-self: flex-start;
}

.product-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-neutral-100);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  transition: all 0.3s ease;
}

.product-card.featured .product-icon {
  background-color: rgba(255, 255, 255, 0.15);
}

.product-card:hover .product-icon {
  transform: scale(1.1);
}

.product-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-accent);
}

.product-card.featured .product-icon svg {
  color: var(--color-white);
}

.product-card h3 {
  font-size: 22px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.product-card.featured h3 {
  color: var(--color-white);
}

.product-price {
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.product-card.featured .product-price {
  color: var(--color-secondary-light);
}

.product-description {
  font-size: 15px;
  color: var(--color-neutral-600);
  line-height: 1.6;
  margin-bottom: var(--space-6);
  flex: 1;
}

.product-card.featured .product-description {
  color: rgba(255, 255, 255, 0.8);
}

.product-features {
  margin-bottom: var(--space-6);
}

.product-features li {
  font-size: 14px;
  color: var(--color-neutral-700);
  padding: var(--space-2) 0 var(--space-2) var(--space-6);
  position: relative;
  line-height: 1.5;
}

.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-success);
  border-radius: var(--radius-full);
}

.product-card.featured .product-features li {
  color: rgba(255, 255, 255, 0.9);
}

.product-card.featured .product-features li::before {
  background-color: var(--color-secondary);
}

/* Security Section */
.security {
  padding: var(--space-24) 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.security::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2306B6D4' fill-opacity='0.03'%3E%3Cpath d='M20 20c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm10 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.security-image .photo-placeholder {
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.security-feature {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.security-feature:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(8px);
}

.security-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.security-feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.security-feature h4 {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-white);
  margin-bottom: var(--space-2);
}

.security-feature p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Assets Section */
.assets {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-secondary);
}

.assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-6);
}

.asset-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  text-align: center;
  transition: all 0.3s ease;
}

.asset-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.asset-symbol {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-md);
}

.asset-card h4 {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.asset-card span {
  font-size: 13px;
  color: var(--color-neutral-500);
  font-weight: var(--font-weight-medium);
}

.asset-more {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: var(--space-2);
}

.asset-more span {
  font-size: 14px;
  color: var(--color-white);
  font-weight: var(--font-weight-semibold);
}

/* Market Rates Section */
.market-rates {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-primary);
}

.rates-table-wrap {
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.rates-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.rates-table thead {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
}

.rates-table thead th {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  font-weight: var(--font-weight-semibold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rates-table tbody tr {
  border-bottom: 1px solid var(--color-neutral-100);
  transition: all 0.2s ease;
}

.rates-table tbody tr:hover {
  background-color: var(--color-neutral-50);
}

.rates-table tbody tr:last-child {
  border-bottom: none;
}

.rates-table td {
  padding: var(--space-4) var(--space-6);
  color: var(--color-neutral-800);
  font-weight: var(--font-weight-medium);
}

.rate-up {
  color: var(--color-success);
  font-weight: var(--font-weight-semibold);
}

.rate-down {
  color: var(--color-error);
  font-weight: var(--font-weight-semibold);
}

.asset-name-cell {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.asset-dot {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.rates-disclaimer {
  margin-top: var(--space-4);
  font-size: 13px;
  color: var(--color-neutral-500);
  text-align: center;
  font-style: italic;
}

/* Compliance Section */
.compliance {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-tertiary);
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.compliance-image .photo-placeholder {
  height: 360px;
}

.compliance-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.compliance-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4);
  background-color: var(--color-bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-neutral-200);
  transition: all 0.3s ease;
}

.compliance-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

.compliance-item-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.compliance-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-white);
}

.compliance-item h4 {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.compliance-item p {
  font-size: 15px;
  color: var(--color-neutral-600);
  line-height: 1.6;
}

/* Contacts Section */
.contacts {
  padding: var(--space-24) 0;
  background-color: var(--color-bg-primary);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-8);
}

.contact-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-neutral-200);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-white);
}

.contact-info h4 {
  font-size: 12px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-neutral-500);
  margin-bottom: var(--space-2);
}

.contact-info p,
.contact-info a {
  font-size: 16px;
  color: var(--color-primary);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  display: block;
}

.contact-info a:hover {
  color: var(--color-accent);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: var(--color-neutral-400);
  padding: var(--space-20) 0 var(--space-8);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-8);
}

.footer-links-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-brand-wrap .brand-name {
  font-family: var(--font-family-display);
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  letter-spacing: -0.01em;
  display: block;
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
}

.footer-brand-wrap .brand-name strong {
  background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-secondary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand-wrap p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.footer-col h5 {
  font-size: 14px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.footer-col ul li {
  margin-bottom: var(--space-3);
}

.footer-col ul li a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.2s ease;
}

.footer-col ul li a:hover {
  color: var(--color-accent-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  margin-bottom: var(--space-4);
  padding: var(--space-3);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  transition: all 0.2s ease;
}

.footer-contact-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: var(--color-accent-light);
}

.footer-contact-item span,
.footer-contact-item a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-weight: var(--font-weight-medium);
}

.footer-contact-item a:hover {
  color: var(--color-accent-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

.footer-legal-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--color-accent-light);
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  padding: var(--space-4) 0;
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.cookie-banner-text h4 {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-2);
  color: var(--color-white);
}

.cookie-banner-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .hero-image {
    order: -1;
  }

  .security-content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .compliance-grid {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-links-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }

  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }

  .cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  :root {
    --container-padding: var(--space-4);
  }

  .hero {
    padding: var(--space-16) 0;
  }

  .features,
  .how-it-works,
  .products,
  .security,
  .assets,
  .market-rates,
  .compliance,
  .contacts {
    padding: var(--space-16) 0;
  }

  .section-header {
    margin-bottom: var(--space-12);
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .features-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

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

  .rates-table thead th:nth-child(n+4),
  .rates-table td:nth-child(n+4) {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer-links-section {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
  }

  .cookie-banner-actions {
    flex-direction: column;
    width: 100%;
  }

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

@media (max-width: 480px) {
  .assets-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-text h1 {
    font-size: clamp(24px, 8vw, 40px);
  }

  .section-title {
    font-size: clamp(20px, 6vw, 32px);
  }
}