/* ================================
   FinHelp Luxury Design System
   ================================ */

/* CSS Custom Properties (Design Tokens) */
:root {
  /* Executive Premium Color Palette - Light Theme */
  --bg: #F8F9FA;
  --bg-gradient: linear-gradient(135deg, #F8F9FA 0%, #F1F3F4 100%);
  --surface: #FFFFFF;
  --surface-elevated: #FDFDFD;
  --surface-glass: rgba(255, 255, 255, 0.90);
  --text: #1A1B1F;
  --text-muted: #5F6368;
  --text-accent: #202124;
  --border: #DADCE0;
  --border-light: #E8EAED;
  --border-accent: rgba(26, 115, 232, 0.12);
  
  /* Executive Navy-Blue System */
  --primary: #1A73E8;
  --primary-light: #4285F4;
  --primary-lighter: #8AB4F8;
  --primary-dark: #1557B0;
  --primary-darker: #0D47A1;
  --primary-gradient: linear-gradient(135deg, #1A73E8 0%, #4285F4 50%, #1A73E8 100%);
  --primary-gradient-dark: linear-gradient(135deg, #1557B0 0%, #1A73E8 100%);
  
  /* Executive Accent Colors */
  --platinum: #E8EAED;
  --slate: #5F6368;
  --slate-light: #80868B;
  --slate-dark: #3C4043;
  
  /* Executive Secondary Colors */
  --secondary: #34A853;
  --secondary-light: #5BB974;
  --secondary-dark: #137333;
  --accent: #EA4335;
  --accent-light: #F28B82;
  --accent-dark: #D33B2C;
  
  /* State Colors */
  --success: #10B981;
  --success-light: #34D399;
  --error: #F43F5E;
  --error-light: #FB7185;
  --warning: #F59E0B;
  --warning-light: #FBBF24;
  --info: #3B82F6;
  --info-light: #60A5FA;
  
  /* Spacing Scale */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  
  /* Typography Scale */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1rem;      /* 16px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 2rem;       /* 32px */
  --text-4xl: 2.5rem;     /* 40px */
  
  /* Line Heights */
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  
  /* Letter Spacing */
  --tracking-tight: -0.025em;
  --tracking-normal: 0em;
  --tracking-wide: 0.025em;
  
  /* Border Radius */
  --radius-sm: 0.375rem;   /* 6px */
  --radius: 0.5rem;        /* 8px */
  --radius-md: 0.75rem;    /* 12px */
  --radius-lg: 1rem;       /* 16px */
  --radius-xl: 1.5rem;     /* 24px */
  --radius-full: 9999px;
  
  /* Luxury Shadow System */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-md: 0 6px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.15);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.18);
  --shadow-2xl: 0 32px 64px rgba(0,0,0,0.22);
  --shadow-card: 0 8px 25px rgba(0,0,0,0.08);
  --shadow-card-hover: 0 20px 50px rgba(0,0,0,0.12);
  --shadow-primary: 0 8px 32px rgba(26, 115, 232, 0.15);
  --shadow-primary-hover: 0 16px 48px rgba(26, 115, 232, 0.25);
  --shadow-inner: inset 0 2px 6px rgba(0,0,0,0.08);
  
  /* Premium Glass Effects */
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-bg-strong: rgba(255, 255, 255, 0.85);
  --glass-blur: blur(16px);
  --glass-border: 1px solid rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  
  /* Executive Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-surface: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
  --gradient-hero: linear-gradient(135deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  
  /* Advanced Animations */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
  --ease-luxury: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-reveal: 700ms;
  --duration-luxury: 800ms;
  
  /* Container */
  --container-max: 1240px;
  --container-padding: 1.5rem;
  
}

/* Dark Theme - Premium Luxury */
[data-theme="dark"] {
  --bg: #0F0F11;
  --bg-gradient: linear-gradient(135deg, #0F0F11 0%, #1A1A1C 100%);
  --surface: #1A1A1C;
  --surface-elevated: #232326;
  --surface-glass: rgba(26, 26, 28, 0.90);
  --text: #E8EAED;
  --text-muted: #9AA0A6;
  --text-accent: #BDC1C6;
  --border: #3C4043;
  --border-light: #2D2E30;
  --border-accent: rgba(138, 180, 248, 0.3);
  
  /* Dark Executive Blue System */
  --primary: #8AB4F8;
  --primary-light: #AECBFA;
  --primary-lighter: #C8D9FF;
  --primary-dark: #669DF6;
  --primary-darker: #4285F4;
  --primary-gradient: linear-gradient(135deg, #8AB4F8 0%, #AECBFA 50%, #8AB4F8 100%);
  --primary-gradient-dark: linear-gradient(135deg, #669DF6 0%, #8AB4F8 100%);
  
  /* Dark Premium Effects */
  --glass-bg: rgba(17, 17, 17, 0.25);
  --glass-bg-strong: rgba(17, 17, 17, 0.85);
  --glass-border: 1px solid rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  
  /* Dark Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  --gradient-surface: linear-gradient(135deg, #1A1A1C 0%, #232326 100%);
  --gradient-hero: linear-gradient(135deg, var(--bg) 0%, var(--surface) 50%, var(--bg) 100%);
  
  /* Dark shadows with blue accents */
  --shadow-card: 0 8px 25px rgba(0,0,0,0.4);
  --shadow-card-hover: 0 20px 50px rgba(0,0,0,0.5);
  --shadow-primary: 0 8px 32px rgba(138, 180, 248, 0.15);
  --shadow-primary-hover: 0 16px 48px rgba(138, 180, 248, 0.25);
}

/* System Theme Detection */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --bg: #0B0F19;
    --surface: #0F1522;
    --surface-elevated: #151B2A;
    --text: #EAE7E1;
    --text-muted: #A7A9B2;
    --border: #1D2535;
    --border-light: #252D40;
    --glass-bg: rgba(15, 21, 34, 0.7);
    --glass-border: rgba(138, 180, 248, 0.3);
    --shadow-card: 0 8px 24px rgba(0,0,0,0.2);
    --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.3);
  }
}

/* Font Loading with fallbacks */
@font-face {
  font-family: 'Inter Variable';
  src: url('../fonts/Inter-Variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playfair Display Variable';
  src: url('../fonts/PlayfairDisplay-Variable.woff2') format('woff2-variations');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* Font fallbacks */
:root {
  --font-display: 'Playfair Display Variable', 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-text: 'Inter Variable', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Base Styles */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-text);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text);
  background-color: var(--bg);
  margin: 0;
  padding: 0;
  transition: background-color var(--duration-normal) var(--ease),
              color var(--duration-normal) var(--ease);
}

/* Typography Utilities */
.text-display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}

.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }

.font-display { font-family: var(--font-display); }
.font-text { font-family: var(--font-text); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.leading-tight { line-height: var(--leading-tight); }
.leading-snug { line-height: var(--leading-snug); }
.leading-normal { line-height: var(--leading-normal); }
.leading-relaxed { line-height: var(--leading-relaxed); }
.leading-loose { line-height: var(--leading-loose); }

.tracking-tight { letter-spacing: var(--tracking-tight); }
.tracking-normal { letter-spacing: var(--tracking-normal); }
.tracking-wide { letter-spacing: var(--tracking-wide); }

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

.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }
.text-warning { color: var(--warning); }
.text-info { color: var(--info); }

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.grid {
  display: grid;
}

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }
.gap-12 { gap: var(--space-12); }

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

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

.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }

.flex-1 { flex: 1 1 0%; }
.flex-auto { flex: 1 1 auto; }
.flex-none { flex: none; }

/* Spacing Utilities */
.m-0 { margin: 0; }
.m-auto { margin: auto; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }
.mt-24 { margin-top: var(--space-24); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }
.mb-24 { margin-bottom: var(--space-24); }

.ml-0 { margin-left: 0; }
.ml-2 { margin-left: var(--space-2); }
.ml-4 { margin-left: var(--space-4); }
.ml-auto { margin-left: auto; }

.mr-0 { margin-right: 0; }
.mr-2 { margin-right: var(--space-2); }
.mr-4 { margin-right: var(--space-4); }
.mr-auto { margin-right: auto; }

.mx-auto { margin-left: auto; margin-right: auto; }

.p-0 { padding: 0; }
.p-2 { padding: var(--space-2); }
.p-4 { padding: var(--space-4); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }

.px-0 { padding-left: 0; padding-right: 0; }
.px-2 { padding-left: var(--space-2); padding-right: var(--space-2); }
.px-4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.px-6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: var(--space-1); padding-bottom: var(--space-1); }
.py-2 { padding-top: var(--space-2); padding-bottom: var(--space-2); }
.py-3 { padding-top: var(--space-3); padding-bottom: var(--space-3); }
.py-4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.py-6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }
.py-12 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
.py-16 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
.py-24 { padding-top: var(--space-24); padding-bottom: var(--space-24); }

.pt-4 { padding-top: var(--space-4); }
.pt-8 { padding-top: var(--space-8); }
.pt-16 { padding-top: var(--space-16); }
.pt-24 { padding-top: var(--space-24); }

.pb-4 { padding-bottom: var(--space-4); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-16 { padding-bottom: var(--space-16); }
.pb-24 { padding-bottom: var(--space-24); }

/* Luxury Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-luxury) var(--ease-luxury);
  font-size: var(--text-base);
  line-height: 1.5;
  min-height: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  transform: translateY(0);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--duration-slow) var(--ease-luxury);
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn--primary {
  background: var(--gradient-primary);
  color: var(--surface);
  border-color: var(--primary);
  box-shadow: var(--shadow-primary);
}

.btn--primary:hover {
  background: var(--primary-gradient-dark);
  box-shadow: var(--shadow-primary-hover);
  border-color: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
}

.btn--secondary {
  background: var(--surface-glass);
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-card);
}

.btn--secondary:hover {
  background: var(--gradient-primary);
  color: var(--surface);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-primary-hover);
  transform: translateY(-3px) scale(1.02);
}

.btn--ghost {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: var(--glass-blur);
}

.btn--ghost:hover {
  background: rgba(26, 115, 232, 0.1);
  border-color: var(--primary-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

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

.btn--lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  min-height: 56px;
}

.btn--sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  min-height: 40px;
}

.card {
  background-color: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease);
}

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

.card--glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.prose {
  max-width: 70ch;
  line-height: var(--leading-relaxed);
}

.prose h1, .prose h2, .prose h3 {
  font-family: var(--font-display);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  line-height: var(--leading-tight);
}

.prose h1 { font-size: var(--text-3xl); }
.prose h2 { font-size: var(--text-2xl); }
.prose h3 { font-size: var(--text-xl); }

.prose p {
  margin-bottom: var(--space-4);
}

.prose ul, .prose ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.prose li {
  margin-bottom: var(--space-2);
}

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

.prose a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Utility Classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Additional Utility Classes */
.transition-colors { transition: color var(--duration-fast) var(--ease); }
.transition-all { transition: all var(--duration-fast) var(--ease); }

/* Visibility utilities */
.invisible { visibility: hidden; }
.visible { visibility: visible; }

/* Size utilities */
.w-auto { width: auto; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }

.h-auto { height: auto; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }

/* Margin utilities */
.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }

.mx-1 { margin-left: var(--space-1); margin-right: var(--space-1); }
.mx-2 { margin-left: var(--space-2); margin-right: var(--space-2); }
.mx-3 { margin-left: var(--space-3); margin-right: var(--space-3); }

/* Padding utilities */
.p-1 { padding: var(--space-1); }
.p-3 { padding: var(--space-3); }
.p-5 { padding: var(--space-5); }

/* Gap utilities */
.gap-1 { gap: var(--space-1); }
.gap-5 { gap: var(--space-5); }
.gap-10 { gap: var(--space-10); }

/* Text utilities */
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }

/* Additional layout utilities */
.space-y-1 > * + * { margin-top: var(--space-1); }
.space-y-2 > * + * { margin-top: var(--space-2); }
.space-y-3 > * + * { margin-top: var(--space-3); }
.space-y-4 > * + * { margin-top: var(--space-4); }
.space-y-6 > * + * { margin-top: var(--space-6); }

/* Flexbox utilities */
.items-baseline { align-items: baseline; }
.justify-around { justify-content: space-around; }
.justify-evenly { justify-content: space-evenly; }

/* Width and height for specific cases */
.min-w-0 { min-width: 0; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

/* Cursor utilities */
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }

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

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

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

.border { border: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-primary { border-color: var(--primary); }

.rounded { border-radius: var(--radius); }
.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 { box-shadow: var(--shadow); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Mobile-First Enhanced Responsive Design */

/* Base mobile styles */
.mobile-hidden { display: none; }
.mobile-block { display: block; }
.mobile-flex { display: flex; }
.mobile-grid { display: grid; }

/* Advanced Mobile Layout */
.mobile-center { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center; 
}

.mobile-full-width { width: 100vw; }
.mobile-safe-area { 
  padding-left: env(safe-area-inset-left); 
  padding-right: env(safe-area-inset-right); 
}

/* Mobile Scroll Behavior */
.mobile-scroll-smooth { scroll-behavior: smooth; }
.mobile-overflow-x-auto { 
  overflow-x: auto; 
  -webkit-overflow-scrolling: touch;
}

/* Touch-friendly sizing */
.btn, .card, input, select, textarea {
  min-height: 44px;
}

.btn {
  padding: var(--space-3) var(--space-6);
  font-size: var(--text-base);
  line-height: 1.5;
}

/* Mobile spacing adjustments */
.container {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

/* Mobile typography scaling */
.hero h1 {
  font-size: var(--text-3xl);
  line-height: 1.2;
}

.hero p {
  font-size: var(--text-lg);
  line-height: 1.6;
}

/* Improved mobile grid */
.mobile-stack > * + * {
  margin-top: var(--space-4);
}

/* Better mobile cards */
.card {
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

/* Mobile-optimized buttons */
.btn--mobile-full {
  width: 100%;
  justify-content: center;
}

.btn--mobile-stack {
  margin-bottom: var(--space-3);
}

/* Enhanced small screens (up to 480px) */
@media (max-width: 480px) {
  :root {
    --text-4xl: 2rem;     /* 32px instead of 40px */
    --text-3xl: 1.75rem;  /* 28px instead of 32px */
    --text-2xl: 1.5rem;   /* 24px instead of 24px */
    --text-xl: 1.25rem;   /* 20px instead of 20px */
    --space-4: 0.875rem;  /* Slightly smaller spacing on mobile */
    --space-6: 1.25rem;   
    --space-8: 1.75rem;   
    --space-12: 2.5rem;
    --space-16: 3.5rem;
    --space-20: 4rem;
    --space-24: 5rem;
  }

  /* Mobile Typography Optimization */
  body {
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Mobile Navigation Improvements */
  .header {
    backdrop-filter: blur(20px);
  }

  /* Enhanced Mobile Forms */
  input, textarea, select {
    font-size: 16px !important; /* Prevent zoom on iOS */
    border-radius: var(--radius-lg);
  }

  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

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

  .hero h1 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-4);
  }

  .hero p {
    font-size: var(--text-base);
    margin-bottom: var(--space-6);
  }

  .card {
    padding: var(--space-4);
    margin-bottom: var(--space-3);
  }

  .btn {
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
  }

  .btn--lg {
    padding: var(--space-4) var(--space-6);
    font-size: var(--text-base);
  }

  /* Stack mobile buttons vertically */
  .mobile-btn-stack {
    flex-direction: column;
    gap: var(--space-3);
  }

  .mobile-btn-stack .btn {
    width: 100%;
  }

  /* Mobile navigation improvements */
  .mobile-menu-content {
    width: 100%;
    max-width: 320px;
  }

  /* Reduce spacing for mobile */
  .py-24 { padding-top: var(--space-16); padding-bottom: var(--space-16); }
  .py-16 { padding-top: var(--space-12); padding-bottom: var(--space-12); }
  .mb-16 { margin-bottom: var(--space-12); }
  .mb-12 { margin-bottom: var(--space-8); }
}

/* Small screens (481px to 640px) */
@media (min-width: 481px) and (max-width: 640px) {
  .hero h1 {
    font-size: var(--text-4xl);
  }

  .sm-mobile\:grid-cols-2 { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    gap: var(--space-3);
  }
}

/* Standard responsive breakpoints with mobile improvements */
@media (min-width: 640px) {
  .container {
    --container-padding: 2rem;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  
  .mobile-hidden { display: block; }
  .mobile-only { display: none; }
  .mobile-center { 
    display: block; 
    text-align: initial;
  }
  
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:text-lg { font-size: var(--text-lg); }
  .sm\:text-xl { font-size: var(--text-xl); }
  .sm\:text-2xl { font-size: var(--text-2xl); }
  .sm\:text-3xl { font-size: var(--text-3xl); }
  .sm\:text-4xl { font-size: var(--text-4xl); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:justify-start { justify-content: flex-start; }
  .sm\:px-0 { padding-left: 0; padding-right: 0; }

  /* Restore desktop button sizing */
  .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
    width: auto;
  }

  .btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
  }

  /* Desktop card padding */
  .card {
    padding: var(--space-6);
  }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex-row { flex-direction: row; }
  .md\:text-left { text-align: left; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:justify-between { justify-content: space-between; }
  .md\:items-center { align-items: center; }
  .md\:px-8 { padding-left: var(--space-8); padding-right: var(--space-8); }
  .md\:py-8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

  /* Enhanced desktop card styling */
  .card {
    padding: var(--space-8);
  }

  .card p {
    margin-bottom: var(--space-4);
  }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:text-left { text-align: left; }
  .lg\:px-12 { padding-left: var(--space-12); padding-right: var(--space-12); }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

/* Enhanced mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease);
}

.mobile-menu--open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  max-width: 90vw;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.mobile-menu--open .mobile-menu-content {
  transform: translateX(0);
}

/* Mobile-first animations */
.animate-mobile-up {
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease);
}

.animate-mobile-up.animate-in {
  transform: translateY(0);
  opacity: 1;
}

/* Touch-friendly interactive elements */
@media (hover: none) and (pointer: coarse) {
  .btn:hover,
  .card:hover,
  a:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.96);
    transition: transform 0.1s ease;
  }

  .card:active {
    transform: translateY(2px);
    transition: transform 0.1s ease;
  }

  /* Enhanced Touch Targets */
  .btn, .card, a, input, button, select, textarea {
    min-height: 44px;
    min-width: 44px;
  }

  /* Touch-specific interactions */
  .btn {
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    touch-action: manipulation;
  }

  /* Mobile-specific hover states */
  .mobile-hover-bg:active {
    background-color: var(--surface-elevated);
  }
}

/* Improved focus states for mobile */
.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: var(--radius-lg);
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --text-muted: #333333;
  }

  [data-theme="dark"] {
    --border: #ffffff;
    --text-muted: #cccccc;
  }
}

/* ================================
   CORE LAYOUT COMPONENTS
   ================================ */

/* Header Component */
.header {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  transition: all var(--duration-normal) var(--ease);
  border-bottom: 1px solid transparent;
}

.header--scrolled {
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--border);
}

.header--hidden {
  transform: translateY(-100%);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease);
}

.mobile-menu--open {
  pointer-events: auto;
  opacity: 1;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 280px;
  max-width: 90vw;
  background: var(--surface);
  transform: translateX(100%);
  transition: transform var(--duration-normal) var(--ease);
  box-shadow: var(--shadow-xl);
  overflow-y: auto;
}

.mobile-menu--open .mobile-menu-content {
  transform: translateX(0);
}

/* Luxury Promo Banner */
.promo-banner {
  background: var(--gradient-primary);
  color: var(--bg);
  position: relative;
  z-index: 60;
  border-bottom: 1px solid var(--gold-dark);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  display: none;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.promo-banner--visible {
  opacity: 1;
  transform: translateY(0);
}

.promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s ease-in-out infinite;
  z-index: 1;
}

@keyframes shimmer {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

.promo-banner-content {
  position: relative;
  z-index: 2;
}

.promo-banner-text {
  font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
  50% { text-shadow: 0 0 20px rgba(255,255,255,0.5), 0 1px 3px rgba(0,0,0,0.2); }
}

/* Luxury Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(26, 115, 232, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(26, 115, 232, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(26, 115, 232, 0.1) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  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='%231A73E8' fill-opacity='0.03'%3E%3Cpath d='M30 30L15 15v30h30V15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Icon System */
.icon {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 0;
}

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

.icon--lg {
  width: 2rem;
  height: 2rem;
}

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

/* ================================
   ANIMATIONS & INTERACTIONS
   ================================ */

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-reveal) var(--ease);
}

.animate-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animations */
.animate-stagger .animate-item {
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--duration-reveal) var(--ease);
}

.animate-stagger .animate-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile animations */
.animate-mobile-up {
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease);
}

.animate-mobile-up.animate-in {
  transform: translateY(0);
  opacity: 1;
}

/* ================================
   FORMS & INPUTS
   ================================ */

/* Form elements */
input, select, textarea {
  font-family: inherit;
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-3) var(--space-4);
  transition: all var(--duration-fast) var(--ease);
  min-height: 44px;
}

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

input:hover,
select:hover,
textarea:hover {
  border-color: var(--primary);
}

/* Specific input types */
input[type="checkbox"],
input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  min-height: auto;
  padding: 0;
  border-radius: var(--radius-sm);
  accent-color: var(--primary);
}

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

/* Form field wrapper */
.field-wrapper {
  position: relative;
  margin-bottom: var(--space-4);
}

.field-label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--text);
}

.field-error {
  border-color: var(--error) !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field-error-message {
  color: var(--error);
  font-size: var(--text-sm);
  margin-top: var(--space-1);
  display: block;
}

/* ================================
   BREADCRUMBS COMPONENT
   ================================ */

.breadcrumbs {
  display: flex;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--text-muted);
  gap: var(--space-2);
}

.breadcrumbs a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
}

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

.breadcrumbs-separator {
  color: var(--border);
  font-weight: 300;
}

/* ================================
   LANGUAGE SWITCHER
   ================================ */

.lang-switch {
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius);
}

.lang-switch:hover {
  color: var(--primary);
}

.lang-switch.active {
  color: var(--primary);
  background-color: var(--primary);
  background-clip: text;
  -webkit-background-clip: text;
}

/* ================================
   LOADING & STATE INDICATORS
   ================================ */

.btn--loading {
  position: relative;
  color: transparent !important;
}

.btn--loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  color: inherit;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================================
   UTILITY ANIMATIONS
   ================================ */

/* Fade animations */
.fade-in {
  animation: fadeIn var(--duration-slow) var(--ease);
}

.fade-out {
  animation: fadeOut var(--duration-slow) var(--ease);
}

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

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

/* Slide animations */
.slide-up {
  animation: slideUp var(--duration-slow) var(--ease);
}

.slide-down {
  animation: slideDown var(--duration-slow) var(--ease);
}

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

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

/* ================================
   DETAILS/SUMMARY ELEMENTS (FAQ)
   ================================ */

details {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

summary {
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  padding: var(--space-4);
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--duration-fast) var(--ease);
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: '+';
  float: right;
  font-size: var(--text-lg);
  font-weight: 300;
  transition: transform var(--duration-fast) var(--ease);
  color: var(--primary);
}

details[open] summary::after {
  transform: rotate(45deg);
}

summary:hover {
  background: var(--surface-elevated);
  color: var(--primary);
}

details div {
  padding: var(--space-4);
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

/* ================================
   BLOG COMPONENTS
   ================================ */

.blog-card {
  background: var(--surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--duration-normal) var(--ease);
  border: 1px solid var(--border-light);
  text-decoration: none;
  display: block;
  color: inherit;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--primary);
  text-decoration: none;
}

.blog-card-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-size: var(--text-2xl);
  font-weight: 600;
}

.blog-card-content {
  padding: var(--space-6);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  line-height: var(--leading-snug);
  margin-bottom: var(--space-3);
  color: var(--text);
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.blog-card-date {
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.blog-card-readtime {
  color: var(--primary);
  font-weight: 500;
}

/* ================================
   MOBILE BODY LOCK
   ================================ */

body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* ================================
   ADVANCED MOBILE FEATURES
   ================================ */

/* iOS Specific Fixes */
@supports (-webkit-touch-callout: none) {
  /* iOS Safari specific styles */
  .btn {
    -webkit-appearance: none;
  }
  
  input, textarea, select {
    -webkit-appearance: none;
    border-radius: var(--radius-lg);
  }
  
  /* Fix iOS zoom on input focus */
  input:focus,
  textarea:focus,
  select:focus {
    font-size: 16px;
  }
}

/* Android Chrome specific styles */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .btn {
    -webkit-tap-highlight-color: transparent;
  }
}

/* Reduced motion support for mobile */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll,
  .animate-stagger .animate-item,
  .animate-mobile-up,
  .card,
  .btn {
    animation: none !important;
    transition: none !important;
  }
}

/* Dark mode improvements for mobile */
@media (prefers-color-scheme: dark) and (max-width: 768px) {
  :root:not([data-theme]) {
    --glass-bg: rgba(15, 21, 34, 0.85);
    --glass-blur: blur(20px);
  }
  
  .header {
    backdrop-filter: blur(20px);
  }
}

/* Landscape orientation optimizations */
@media (orientation: landscape) and (max-height: 500px) {
  .hero {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
  
  .py-24 { 
    padding-top: var(--space-16); 
    padding-bottom: var(--space-16); 
  }
  
  .py-20 { 
    padding-top: var(--space-12); 
    padding-bottom: var(--space-12); 
  }
}

/* ================================
   PRINT STYLES
   ================================ */

@media print {
  .header,
  .mobile-menu,
  .promo-banner,
  .btn,
  .animate-on-scroll,
  .animate-stagger {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
    color: #000;
    background: #fff;
  }
  
  .container {
    max-width: none;
    padding: 0;
  }
}
