:root {
  /* Enhanced color system with proper depth */
  --bg: #fafbfc;
  --bg-secondary: #f5f7fa;
  --card: #ffffff;
  --card-elevated: #ffffff;
  --text: #0d1117;
  --text-secondary: #24292f;
  --muted: #656d76;
  --muted-light: #8c959f;
  
  /* Sophisticated green palette */
  --olive: #1b4332; /* Deeper, richer primary */
  --olive-600: #14302a; /* Darker for depth */
  --olive-500: #2d5a47; /* Mid-tone */
  --olive-400: #40916c; /* Lighter active state */
  --olive-300: #52b788; /* Success states */
  --olive-100: #b7e4c7; /* Subtle highlights */
  --olive-50: #f1f8f4; /* Backgrounds */
  
  --mint-accent: #52b788; /* Refined accent */
  --forest: #081c15; /* Deep rich dark */
  --accent: #e8f5e8;
  --ring: rgba(27, 67, 50, 0.15);
  
  /* Enhanced shadows for depth */
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow-subtle: 
    0 1px 3px rgba(0,0,0,0.02),
    0 4px 12px rgba(0,0,0,0.03);
  --shadow: 
    0 2px 8px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06);
  --shadow-hover:
    0 4px 16px rgba(0,0,0,0.08),
    0 12px 32px rgba(27, 67, 50, 0.12);
  --shadow-elevated:
    0 8px 32px rgba(0,0,0,0.12),
    0 24px 64px rgba(27, 67, 50, 0.18);
  --maxw: 1200px;
  
  /* Refined spacing scale */
  --s-1: 4px; --s-2: 8px; --s-3: 12px; --s-4: 16px; --s-5: 20px; 
  --s-6: 24px; --s-8: 32px; --s-10: 40px; --s-12: 48px; --s-16: 64px; --s-20: 80px;
  --section-desktop: 96px; --section-mobile: 56px;
  
  /* Premium typography scale */
  --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'SF Mono', ui-monospace, 'Cascadia Code', 'Roboto Mono', Consolas, monospace;
  
  --title-hero: clamp(56px, 8vw, 96px);
  --title-xl: clamp(40px, 6vw, 64px);
  --title-lg: clamp(32px, 5vw, 48px);
  --title-md: clamp(24px, 3.5vw, 32px);
  --title-sm: 20px;
  --body-xl: 20px;
  --body-lg: 18px;
  --body-md: 16px;
  --body-sm: 14px;
  --caption: 12px;
  
  /* Enhanced animations */
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.15s;
  --duration-normal: 0.25s;
  --duration-slow: 0.4s;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: var(--body-md);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.container { 
  width: 100%; 
  max-width: var(--maxw); 
  margin: 0 auto; 
  padding: 0 var(--s-6); 
}

.site-header { 
  position: sticky; 
  top: 0; 
  z-index: 50; 
  background: rgba(255,255,255,0.92); 
  backdrop-filter: blur(20px) saturate(180%); 
  border-bottom: 1px solid rgba(229, 231, 235, 0.6); 
  box-shadow: var(--shadow-subtle);
  transition: all var(--duration-fast) var(--ease-out-quart);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
.brand { color: var(--olive); text-decoration: none; font-weight: 700; letter-spacing: 0.2px; display: inline-flex; align-items: center; gap: 10px; }
.brand-logo { height: 32px; }
.nav a { color: var(--text); text-decoration: none; margin-left: 24px; font-weight: 500; font-size: 15px; transition: color 0.15s ease; }
.nav a:hover { color: var(--olive); }
.nav .cta { padding: 12px 24px; border-radius: 999px; background: linear-gradient(135deg, var(--olive) 0%, var(--olive-600) 100%); color: #fff; box-shadow: 0 2px 12px rgba(27, 67, 50, 0.25); transition: all 0.2s ease; font-size: 15px; }
.nav .cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(27, 67, 50, 0.35); color: #fff; }

.hero { 
  padding: var(--s-12) 0; 
  background: 
    radial-gradient(1400px 600px at -5% 0%, var(--olive-50) 0%, var(--olive-100) 35%, transparent 36%),
    linear-gradient(135deg, #ffffff 0%, var(--bg-secondary) 100%);
  min-height: 100svh; 
  display: flex; 
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--olive-50) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.hero-classic {
  padding: clamp(80px, 10vh, var(--s-20)) 0 clamp(56px, 8vh, var(--s-16));
  background:
    radial-gradient(520px 520px at 15% 20%, rgba(54, 130, 88, 0.14), transparent 65%),
    radial-gradient(640px 640px at 85% 30%, rgba(54, 130, 88, 0.18), transparent 70%),
    radial-gradient(520px 520px at 25% 90%, rgba(54, 130, 88, 0.12), transparent 70%),
    linear-gradient(180deg, #f9fbf8 0%, #f3f6f2 100%);
  min-height: 100svh;
}

.hero-classic::before {
  display: none;
}

.hero-classic::after {
  content: '';
  position: absolute;
  inset: -20% 0 0;
  background:
    radial-gradient(480px 480px at 70% 75%, rgba(54, 130, 88, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-classic-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  padding: 12px 24px;
  border-radius: 999px;
  background: #eef6ef;
  color: #1b5e3a;
  font-weight: 600;
  font-size: 26px;
  border: 1px solid #cfe5d6;
  margin-bottom: var(--s-10);
}

.hero-badge .badge-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #2f9e64;
  box-shadow: 0 0 0 8px rgba(47, 158, 100, 0.15);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1.05;
  margin: 0 0 var(--s-6);
  color: #111;
  font-weight: 700;
}

.hero-title-accent {
  display: inline-block;
  color: #2e6f4e;
  margin-left: 10px;
}

.hero-flag {
  margin-left: 10px;
  font-size: 0.9em;
}

.hero-subtitle {
  max-width: 720px;
  margin: 0 auto var(--s-10);
  color: #2d2d2d;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--s-5);
  flex-wrap: wrap;
  margin-bottom: var(--s-10);
}

.btn-hero-primary {
  background: #2f6f4c;
  color: #fff;
  border: 1px solid #2f6f4c;
  padding: 14px 28px;
  border-radius: 10px;
  box-shadow: none;
}

.btn-hero-primary:hover {
  background: #2a6243;
  transform: translateY(-1px);
}

.btn-hero-secondary {
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid #e0e0e0;
  padding: 14px 28px;
  border-radius: 10px;
}

.btn-hero-secondary:hover {
  border-color: #cfcfcf;
  background: #fafafa;
}

.hero-divider {
  height: 1px;
  background: #e6e6e6;
  margin: var(--s-10) auto var(--s-8);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: var(--s-10);
  flex-wrap: wrap;
  color: #6a6a6a;
  font-size: 14px;
}

.hero-trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 720px) {
  .hero-classic { padding: var(--s-16) 0 var(--s-12); }
  .hero-title { font-size: clamp(38px, 9vw, 54px); }
  .hero-title-accent { display: block; margin-left: 0; }
  .hero-flag { display: inline-block; margin-left: 6px; }
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}
.hero-inner { display: grid; grid-template-columns: 1fr; gap: var(--s-10); align-items: center; }
.hero-copy h1 { 
  font-family: var(--font-display);
  font-size: var(--title-hero); 
  line-height: 0.95; 
  margin: 0 0 var(--s-4); 
  letter-spacing: -0.025em; 
  font-weight: 800; 
  text-align: left; 
  color: var(--forest);
  animation: fadeInUp 0.8s var(--ease-out-expo);
}
.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-400) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-copy { max-width: 760px; margin: 0; text-align: left; }
.eyebrow { 
  display: inline-block; 
  background: var(--olive-50); 
  color: var(--olive-600); 
  padding: var(--s-2) var(--s-3); 
  border-radius: 999px; 
  font-weight: 600; 
  font-size: var(--caption); 
  letter-spacing: 0.02em; 
  text-transform: uppercase; 
  border: 1px solid var(--olive-100);
  margin-bottom: var(--s-4);
  animation: slideIn 0.6s var(--ease-out-expo);
}
.checks { display:flex; gap: var(--s-6); flex-wrap:wrap; color: var(--muted); margin-top: var(--s-6); justify-content:flex-start; }
.checks li { list-style:none; position:relative; padding-left:20px; }
.checks li:before { content:""; position:absolute; left:0; top:7px; width:10px; height:10px; border-radius:50%; background: var(--mint-accent); box-shadow:0 0 0 3px rgba(103, 211, 145, 0.2); }
.lead { 
  color: var(--text-secondary); 
  margin: 0 auto var(--s-8); 
  font-size: var(--body-xl); 
  line-height: 1.6; 
  font-weight: 400; 
  max-width: 640px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s both;
}
.hero-ctas { display: flex; gap: 12px; margin: 14px 0 14px; justify-content: flex-start; flex-wrap: wrap; }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
}

@media (max-width: 900px) {
  .hero-panel { order: -1; }
  .hero-card-grid { grid-template-columns: 1fr; }
}

.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  padding: var(--s-3) var(--s-6); 
  min-height: 52px; 
  border-radius: 999px; 
  text-decoration: none; 
  border: 1px solid transparent; 
  font-weight: 600; 
  font-size: var(--body-md); 
  letter-spacing: 0.005em;
  transition: all var(--duration-normal) var(--ease-out-quart); 
  position: relative; 
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  /* Windows-specific optimizations */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  /* Improved focus for Windows accessibility */
  outline-offset: 2px;
}
.btn-primary { 
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-600) 100%); 
  color: #fff; 
  box-shadow: 
    var(--shadow),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  border: 1px solid var(--olive-600);
}
.btn-primary::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 0.5s; }
.btn-primary:hover::before { left: 100%; }
.btn-secondary { background: #fff; color: var(--olive); border-color: #d7e3dd; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.btn-secondary:hover { background: var(--olive-50); border-color: var(--olive); }
.btn-block { width: 100%; }
.btn:hover { 
  transform: translateY(-2px) scale(1.02); 
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--olive-400) 0%, var(--olive) 100%); 
  box-shadow: var(--shadow-hover);
}
.btn:active { 
  transform: translateY(0) scale(0.98); 
  transition-duration: 0.05s;
}

.btn-primary:active {
  box-shadow: var(--shadow-subtle);
}
.btn:focus { outline: none; box-shadow: 0 0 0 4px var(--ring); }

.trust-bullets { list-style: none; padding: 0; margin: 8px 0 0; color: var(--muted); }
.trust-bullets li { margin: 6px 0; }

.balance-card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 18px; width: 100%; max-width: 360px; border: 1px solid #eef0f2; }
.balance-label { color: var(--muted); font-size: 14px; }
.balance-value { font-size: 20px; font-weight: 700; margin: 6px 0; }
.balance-sub { color: var(--muted); font-size: 13px; margin-bottom: 10px; }
.rate-line { display: flex; justify-content: space-between; padding: 8px 0; border-top: 1px dashed #e5e7eb; font-size: 14px; }

.section { padding: var(--section-desktop) 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card { 
  background: var(--card); 
  border-radius: var(--radius); 
  box-shadow: var(--shadow); 
  padding: var(--s-6); 
  border: 1px solid rgba(27, 67, 50, 0.08); 
  transition: all var(--duration-normal) var(--ease-out-quart);
  position: relative;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(255,255,255,0.4));
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out-quart);
  pointer-events: none;
}
.card:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-elevated);
  border-color: rgba(27, 67, 50, 0.12);
}

.card:hover::before {
  opacity: 1;
}
.steps { margin: 0; padding-left: 20px; }

/* Feature grid & FAQ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.feature h4 { margin: 6px 0 8px; }
.faq dt { font-weight: 600; margin: 8px 0 6px; }
.faq dd { margin: 0 0 14px 0; color: var(--muted); }

/* Announcement, steps, rates, CTA band */
.announcement { 
  background: linear-gradient(135deg, var(--forest) 0%, var(--olive-600) 100%); 
  color: #fff; 
  padding: var(--s-3) 0; 
  font-size: var(--body-sm); 
  text-align: center; 
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

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

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}
.announcement a { color: var(--mint-accent); text-decoration: none; font-weight: 600; transition: opacity 0.2s ease; }
.announcement a:hover { opacity: 0.8; }
.steps-num { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.steps-num .card { text-align: left; }
.steps-num .num { width: 28px; height: 28px; border-radius: 999px; background: #eef4f2; color: var(--olive); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; margin-bottom: 8px; }
.rates { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
.rate { padding: 18px; border: 1px solid #e5e7eb; border-radius: 14px; background: #fff; }
.cta-band { background: linear-gradient(180deg,#f3f7f5, #eaf2ee); padding: 32px 0; border-top: 1px solid #e5e7eb; border-bottom: 1px solid #e5e7eb; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s-6); }
.footer-col a { display: block; color: var(--muted); text-decoration: none; margin: 6px 0; }

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: 24px;
  height: 2px;
  background: var(--olive);
  border-radius: 2px;
  transition: all var(--duration-normal) var(--ease-out-quart);
  display: block;
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -8px;
}

.hamburger::after {
  top: 8px;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 73px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.8);
  box-shadow: var(--shadow);
  z-index: 90;
  flex-direction: column;
  padding: var(--s-4) 0;
  transform: translateX(-100%);
  transition: transform var(--duration-normal) var(--ease-out-quart);
  max-height: calc(100vh - 73px);
  overflow-y: auto;
}

.mobile-nav.active {
  transform: translateX(0);
}

.mobile-nav a {
  padding: var(--s-4) var(--s-6);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: var(--body-lg);
  border-bottom: 1px solid rgba(229, 231, 235, 0.5);
  transition: all var(--duration-fast) var(--ease-out-quart);
}

.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--olive-50);
  color: var(--olive);
}

.mobile-nav .mobile-cta {
  margin: var(--s-4) var(--s-6) 0;
  padding: var(--s-4);
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-600) 100%);
  color: #fff;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  border: none;
}

@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .mobile-nav {
    display: flex;
  }
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}

h1 { font-size: var(--title-hero); font-weight: 800; }
h2 { font-size: var(--title-xl); }
h3 { font-size: var(--title-lg); }
h4 { font-size: var(--title-md); }
h5 { font-size: var(--title-sm); }
h6 { font-size: var(--body-lg); }

/* Content page typography (privacy, terms, legal, quote) */
.card h1 {
  font-size: clamp(28px, 4vw, 36px) !important;
  font-weight: 700 !important;
  margin-bottom: var(--s-6);
  line-height: 1.3;
  color: #0d1117 !important;
}

.card h2 {
  font-size: clamp(22px, 3vw, 26px) !important;
  font-weight: 700 !important;
  margin-top: var(--s-8);
  margin-bottom: var(--s-4);
  color: #1b4332 !important;
}

.card h3 {
  font-size: clamp(18px, 2.5vw, 20px) !important;
  font-weight: 600 !important;
  margin-top: var(--s-6);
  margin-bottom: var(--s-3);
  color: #2d5a47 !important;
}

.card h4 {
  font-size: clamp(16px, 2vw, 18px) !important;
  font-weight: 600 !important;
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
  color: #0d1117 !important;
}

.card p {
  font-size: var(--body-md);
  line-height: 1.7;
  color: #0d1117 !important;
  margin-bottom: var(--s-4);
}

.card li {
  font-size: var(--body-md);
  line-height: 1.7;
  color: #0d1117 !important;
  margin-bottom: var(--s-2);
}

.card ul, .card ol {
  margin: var(--s-4) 0;
  padding-left: var(--s-6);
}

.card strong {
  color: #0d1117 !important;
  font-weight: 600 !important;
}

.card a {
  color: #1b4332 !important;
  text-decoration: underline;
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.card a:hover {
  color: #40916c !important;
}

.form-header h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: var(--s-4);
}

/* Legal page specific styling */
.legal h1 {
  font-size: clamp(28px, 4vw, 36px) !important;
  font-weight: 700 !important;
  margin-bottom: var(--s-4);
  color: #0d1117 !important;
}

.legal h2 {
  font-size: clamp(20px, 3vw, 24px) !important;
  font-weight: 700 !important;
  margin-top: var(--s-8);
  margin-bottom: var(--s-4);
  color: #1b4332 !important;
}

.legal h3 {
  font-size: clamp(17px, 2.5vw, 19px) !important;
  font-weight: 600 !important;
  margin-top: var(--s-5);
  margin-bottom: var(--s-3);
  color: #2d5a47 !important;
}

.legal p {
  color: #0d1117 !important;
  line-height: 1.7;
}

.legal li {
  color: #0d1117 !important;
  line-height: 1.7;
}

.legal strong {
  color: #0d1117 !important;
  font-weight: 600 !important;
}

.legal a {
  color: #1b4332 !important;
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.legal a:hover {
  color: #40916c !important;
}

p {
  margin: 0 0 var(--s-4);
  line-height: 1.6;
}

/* Feature 4-up */
.feature4-title { 
  text-align: center; 
  font-size: var(--title-xl); 
  margin: 0 0 var(--s-12); 
  line-height: 1.15;
  background: linear-gradient(135deg, var(--olive) 0%, var(--forest) 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}
.feature4-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s-6); align-items: stretch; }
.feature4-card { background: #f8faf9; border: 1px solid rgba(47, 64, 48, 0.08); border-radius: 24px; padding: var(--s-6) var(--s-5); text-align: center; box-shadow: var(--shadow); display:flex; flex-direction:column; justify-content:space-between; min-height: 360px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.feature4-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(47, 64, 48, 0.15); }
.feature4-card h3 { 
  margin: var(--s-3) 0; 
  font-size: var(--title-sm); 
  line-height: 1.2; 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
  font-weight: 800; 
  color: var(--olive);
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.feature4-card:hover h3 {
  color: var(--olive-400);
}
.feature4-card p { color: var(--muted); font-size: 15px; line-height: 1.5; }
.feature4-icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 16px; background: linear-gradient(135deg, var(--olive-50) 0%, #ffffff 100%); border: 2px solid rgba(47, 64, 48, 0.1); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(47, 64, 48, 0.08); }
.feature4-icon svg { width: 32px; height: 32px; stroke: var(--olive); stroke-width: 2; fill: none; }

/* Networks section */
.networks { position: relative; overflow: hidden; background: var(--bg); padding: var(--section-desktop) 0; }
.networks-title { 
  text-align: center; 
  font-size: var(--title-xl); 
  margin: 0 0 var(--s-16); 
  font-weight: 700; 
  color: var(--text); 
  line-height: 1.15;
  background: linear-gradient(135deg, var(--olive) 0%, var(--forest) 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}
.netwrap { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.mint-blob { position: relative; height: 500px; width: 500px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, var(--mint) 0%, var(--mint-2) 65%, transparent 100%); display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.blob-icon-corner { position: absolute; bottom: 40px; left: 40px; width: 56px; height: 56px; background: var(--text); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,0.2); }
.blob-icon-corner svg { width: 28px; height: 28px; }
.blob-inner { text-align: center; max-width: 360px; padding: var(--s-6); }
.usdc-icon { margin: 0 auto 24px; display: flex; justify-content: center; }
.usdc-icon svg { filter: drop-shadow(0 4px 12px rgba(39, 117, 202, 0.3)); }
.blob-text { font-size: 20px; line-height: 1.5; color: var(--text); margin: 0; font-weight: 500; }
.logo-grid-wrapper { padding-left: var(--s-4); }
.logo-grid { display: flex; flex-direction: column; gap: 28px; }
.logo-tile { display: flex; align-items: center; gap: 16px; padding: 6px 0; transition: transform 0.2s ease; }
.logo-tile:hover { transform: translateX(4px); }
.logo-tile img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.logo-tile span { font-size: 17px; font-weight: 700; color: var(--text); letter-spacing: 0.01em; line-height: 1.2; }

/* Waitlist form */
.waitlist-section { 
  padding: var(--s-20) 0; 
  margin-top: var(--s-20); 
  background: #2f6f4a; 
}
.waitlist-card { 
  max-width: 820px; 
  margin: 0 auto; 
  background: #ffffff; 
  border-radius: 14px; 
  padding: var(--s-12); 
  box-shadow: 0 18px 50px rgba(10, 40, 24, 0.25); 
}
.waitlist-header h2 { 
  margin: 0 0 var(--s-3); 
  font-size: 30px; 
  color: #1f2933; 
  font-weight: 700; 
}
.waitlist-header p { 
  margin: 0 0 var(--s-8); 
  color: #6b7280; 
  font-size: 15px; 
}
.waitlist-form { display: grid; gap: var(--s-6); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-6); }
.form-field { display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: #111827; }
.form-field span { font-weight: 600; }
.form-field input,
.form-field select { 
  border: 1px solid #e5e7eb; 
  border-radius: 8px; 
  padding: 12px 14px; 
  font-size: 14px; 
  background: #f7f7f7; 
  outline: none; 
}
.form-field input:focus,
.form-field select:focus { 
  border-color: #2f6f4a; 
  box-shadow: 0 0 0 3px rgba(47, 111, 74, 0.15); 
  background: #fff; 
}
.form-field.full-row { grid-column: 1 / -1; }
.form-field-inline { border: none; padding: 0; margin: 0; }
.form-field-inline legend { font-weight: 600; font-size: 14px; color: #111827; margin-bottom: 10px; }
.form-field-inline { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.radio-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: #111827; }
.radio-pill input { accent-color: #2f6f4a; width: 16px; height: 16px; }
.waitlist-submit { 
  margin-top: var(--s-2); 
  border: none; 
  background: #54b37a; 
  color: #ffffff; 
  font-weight: 700; 
  padding: 14px 18px; 
  border-radius: 8px; 
  cursor: pointer; 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}
.waitlist-submit:hover { 
  transform: translateY(-1px); 
  box-shadow: 0 10px 20px rgba(20, 60, 40, 0.2); 
}
@media (max-width: 720px) {
  .waitlist-card { padding: var(--s-8); }
  .form-grid { grid-template-columns: 1fr; }
}

.site-footer { 
  border-top: 1px solid rgba(229, 231, 235, 0.6); 
  padding: var(--s-5) 0; 
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-secondary) 100%); 
  margin-top: var(--s-5);
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--olive-100), transparent);
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-inner a { color: var(--olive); text-decoration: none; }

/* Dark sections with refined colors */
.dark { 
  background: linear-gradient(135deg, #0f1623 0%, #1a202c 100%); 
  color: #e2e8f0; 
}
.dark .muted { color: #a0aec0; }
.how { 
  background: linear-gradient(180deg, #0f1623 0%, #1a202c 100%); 
  color: #f7fafc; 
  text-align: center; 
  padding: var(--section-desktop) 0;
  position: relative;
  overflow: hidden;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(27, 67, 50, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.how .muted { color: #9fb2c7; }
.how h2 { 
  font-size: var(--title-lg); 
  margin: 0 0 var(--s-4); 
  background: linear-gradient(135deg, #e9eef9 0%, #ffffff 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}
.how .steps3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; margin-top: var(--s-10); }
.how .step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 20px 16px; transition: all 0.2s ease; min-height: 190px; }
.how .step:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.how .step h3 { font-size: 19px; margin: 12px 0 10px; line-height: 1.25; font-weight: 700; }
.how .step p { font-size: 14px; margin: 0; line-height: 1.6; }
.how .dot { width: 52px; height: 52px; border-radius: 999px; margin: 0 auto 12px; background: linear-gradient(135deg, var(--olive), var(--olive-600)); display:flex; align-items:center; justify-content:center; color:#fff; font-weight:800; font-size: 22px; box-shadow: 0 6px 18px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.06); }
.brand a, .brand h2, .brand h3 { color: #e7f7ef; }
.brand .dot { background: linear-gradient(135deg, #3f513a, #2f4030); }
.why { 
  padding: var(--section-desktop) 0; 
  background: linear-gradient(135deg, #0f1623 0%, #1a202c 100%);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 70% 80%, rgba(27, 67, 50, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.why h2 { 
  text-align: center; 
  margin: 0 0 var(--s-8); 
  font-size: var(--title-lg); 
  line-height: 1.15;
  background: linear-gradient(135deg, #e9eef9 0%, #ffffff 100%); 
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent; 
  background-clip: text;
}
.why .grid-3 { grid-template-columns: repeat(3, 1fr); }
.why .card { background: rgba(255,255,255,0.05); border: 1px solid rgba(231,247,239,0.06); box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.why .card h3 { margin-top: 0; font-size: 19px; }
.why .card:hover { background: rgba(255,255,255,0.08); border-color: rgba(231,247,239,0.12); }

/* Enhanced Form Styling */
.form-grid { 
  display: grid; 
  grid-template-columns: repeat(2, minmax(0, 1fr)); 
  gap: var(--s-4); 
}

.form-grid label { 
  display: grid; 
  gap: var(--s-2); 
  font-size: var(--body-sm); 
  font-weight: 500;
  color: var(--text-secondary);
}

.form-grid input, .form-grid select, .form-grid textarea {
  appearance: none; 
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 1.5px solid #e1e7ef; 
  border-radius: var(--radius-sm); 
  padding: var(--s-3) var(--s-4); 
  font-size: var(--body-md); 
  font-family: inherit;
  background: var(--card); 
  outline: none; 
  box-shadow: var(--shadow-subtle);
  transition: all var(--duration-normal) var(--ease-out-quart);
  position: relative;
  /* Windows-specific optimizations */
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  /* Improved Windows font rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  /* Better Windows high-DPI support */
  min-height: 48px;
}

.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { 
  border-color: var(--olive); 
  box-shadow: 
    var(--shadow),
    0 0 0 4px var(--ring);
  transform: translateY(-1px);
}

.form-grid input:hover, .form-grid select:hover, .form-grid textarea:hover {
  border-color: var(--olive-300);
  box-shadow: var(--shadow);
}

.form-grid .full { grid-column: 1 / -1; }

.actions { 
  grid-column: 1 / -1; 
  display: flex; 
  gap: var(--s-3); 
  margin-top: var(--s-2);
}

/* Enhanced Form Components */
.form-header {
  text-align: center;
  margin-bottom: var(--s-8);
}

.form-benefits {
  display: flex;
  justify-content: center;
  gap: var(--s-6);
  margin-top: var(--s-4);
  flex-wrap: wrap;
}

.benefit-item {
  font-size: var(--body-sm);
  color: var(--olive-600);
  font-weight: 500;
  background: var(--olive-50);
  padding: var(--s-2) var(--s-3);
  border-radius: 999px;
  border: 1px solid var(--olive-100);
}

.form-security {
  grid-column: 1 / -1;
  margin-top: var(--s-4);
}

.fineprint { 
  color: var(--muted); 
  font-size: var(--body-sm); 
  margin: 0 0 var(--s-3);
  line-height: 1.5;
  padding: var(--s-4);
  background: var(--olive-50);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--olive-300);
}

.processing-time {
  text-align: center;
  padding: var(--s-3);
  background: linear-gradient(135deg, var(--olive-50), var(--olive-100));
  border-radius: var(--radius-sm);
  border: 1px solid var(--olive-200);
}

.time-indicator {
  font-size: var(--body-sm);
  color: var(--olive-600);
  font-weight: 500;
}

/* Button enhancements */
.btn-loader {
  display: none;
}

.btn.loading .btn-text {
  display: none;
}

.btn.loading .btn-loader {
  display: inline;
}

/* Form validation styles */
.form-grid input.error, .form-grid select.error, .form-grid textarea.error {
  border-color: #ef4444;
  box-shadow: 
    var(--shadow-subtle),
    0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: var(--caption);
  margin-top: var(--s-1);
  display: none;
}

.error-message.show {
  display: block;
  animation: slideIn 0.3s var(--ease-out-quart);
}

/* Success state */
.form-success {
  background: linear-gradient(135deg, var(--olive-50), var(--olive-100));
  border: 2px solid var(--olive-300);
  border-radius: var(--radius);
  padding: var(--s-6);
  text-align: center;
  animation: fadeIn 0.5s var(--ease-out-quart);
}

.form-success h3 {
  color: var(--olive);
  margin-bottom: var(--s-3);
}

.form-success p {
  color: var(--olive-600);
  margin: 0;
}

.form-error {
  background: #fff5f5;
  border: 2px solid #fca5a5;
  border-radius: var(--radius);
  padding: var(--s-6);
  text-align: center;
  color: #991b1b;
  animation: fadeIn 0.5s var(--ease-out-quart);
}

.form-error h3 {
  margin: 0 0 var(--s-2);
}

.form-error p {
  margin: 0;
  color: #b91c1c;
}

/* Enhanced Windows/Desktop compatibility */
@media (min-width: 1440px) {
  .container { 
    padding: 0 32px; 
    max-width: 1400px; 
  }
  
  .hero-copy h1 { 
    font-size: clamp(72px, 8vw, 104px); 
  }
  
  .feature4-grid { 
    gap: var(--s-8); 
  }
  
  .feature4-card { 
    padding: var(--s-8) var(--s-6); 
    min-height: 400px; 
  }
  
  /* Enhanced touch targets for large screens */
  .btn {
    min-height: 56px;
    padding: var(--s-4) var(--s-8);
  }
  
  .nav a {
    padding: var(--s-2) var(--s-3);
    margin-left: var(--s-5);
  }
}

/* Large Desktop breakpoint */
@media (min-width: 1920px) {
  .container { 
    max-width: 1600px; 
    padding: 0 48px; 
  }
  
  .section { 
    padding: 120px 0; 
  }
}

/* Laptop/Tablet breakpoint - MacBook screens */
@media (max-width: 1320px) {
  .container { padding: 0 20px; }
  .feature4-grid { gap: 18px; }
  .feature4-card { padding: 20px 16px; min-height: 320px; }
  .feature4-card h3 { font-size: 19px; }
  .feature4-card p { font-size: 14px; }
  .hero-copy h1 { font-size: clamp(44px, 6vw, 68px); }
  .how .steps3 { gap: 16px; }
  .how .step { padding: 18px 14px; min-height: 185px; }
  .how .dot { width: 48px; height: 48px; font-size: 20px; margin-bottom: 10px; }
  .how .step h3 { font-size: 17px; margin: 10px 0 8px; }
  .how .step p { font-size: 13px; }
}

@media (max-width: 1180px) {
  .container { padding: 0 18px; }
  .feature4-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .feature4-card { min-height: 300px; padding: 20px; }
  .feature4-card h3 { font-size: 20px; }
  .feature4-card p { font-size: 14px; }
  .grid-3 { gap: 18px; }
  .section { padding: 52px 0; }
  .networks { padding: 52px 0; }
  .networks-title { margin-bottom: 40px; }
  .netwrap { gap: 40px; }
  .mint-blob { height: 420px; width: 420px; }
  .logo-grid { gap: 20px 32px; }
  .logo-tile img { width: 38px; height: 38px; }
  .logo-tile span { font-size: 15px; }
  .how .steps3 { gap: 14px; }
  .how .step { padding: 16px 12px; min-height: 175px; }
  .how .dot { width: 46px; height: 46px; font-size: 19px; margin-bottom: 10px; }
  .how .step h3 { font-size: 16px; margin: 8px 0 6px; }
  .how .step p { font-size: 13px; }
}

/* Smaller laptop/tablet screens */
@media (max-width: 1024px) {
  .container { padding: 0 20px; }
  .hero-copy h1 { font-size: clamp(38px, 5.5vw, 56px); }
  .netwrap { grid-template-columns: 1fr; gap: 48px; }
  .mint-blob { height: 400px; width: 400px; margin: 0 auto; }
  .blob-text { font-size: 18px; }
  .usdc-icon svg { width: 72px; height: 72px; }
  .logo-grid-wrapper { padding-left: 0; margin-top: 0; }
  .logo-grid { gap: 20px 32px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .how .steps3 { grid-template-columns: 1fr; gap: var(--s-6); max-width: 500px; }
  .how .step { min-height: auto; }
}

/* Mobile breakpoint */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 var(--section-mobile); background: linear-gradient(180deg, var(--olive-50) 0%, #fff 50%); min-height: 100svh; }
  .hero-copy h1 { font-size: clamp(36px, 10vw, 54px); line-height: 1.05; }
  .steps-num, .rates { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature4-grid { grid-template-columns: 1fr; }
  .feature4-card { min-height: 320px; }
  .hero-ctas { justify-content: center; }
  .trust-indicators { justify-content: center; }
  .partners-grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .form-benefits { flex-direction: column; align-items: center; gap: var(--s-3); }
  .nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav.active { transform: translateX(0); }
  .networks { padding: var(--section-mobile) 0; }
  .netwrap { grid-template-columns: 1fr; gap: 40px; }
  .mint-blob { height: 360px; width: 360px; }
  .blob-icon-corner { width: 48px; height: 48px; bottom: 28px; left: 28px; }
  .blob-icon-corner svg { width: 24px; height: 24px; }
  .blob-text { font-size: 17px; }
  .usdc-icon svg { width: 64px; height: 64px; }
  .logo-grid { grid-template-columns: 1fr; gap: 18px; }
  .logo-tile { padding: 10px 0; gap: 14px; }
  .logo-tile img { width: 36px; height: 36px; }
  .logo-tile span { font-size: 15px; }
  .networks-title { font-size: var(--title-lg); margin-bottom: 40px; }
  .how .steps3 { grid-template-columns: 1fr; }
  .section { padding: var(--section-mobile) 0; }
}

/* Hero widget */
.widget { background: #fff; border: 1px solid #eceff1; border-radius: 18px; box-shadow: 0 20px 50px rgba(0,0,0,0.06); overflow: hidden; }
.widget-tabs { display:flex; gap: 24px; padding: 14px 18px; background: #f6f7f8; font-weight:700; }
.widget-tabs .active { color: #000; border-bottom: 3px solid #111; }
.widget-body { padding: 18px; }
.widget-row { display:flex; align-items:center; justify-content:space-between; padding: 12px 0; border-bottom: 1px solid #eee; }
.widget-cta { margin-top: 16px; width: 100%; background: #111; color:#fff; height:56px; border-radius:12px; display:flex; align-items:center; justify-content:center; font-weight:800; }

/* Sticky mobile action bar */
.sticky-cta { position: sticky; bottom: 0; z-index: 20; background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); border-top: 1px solid rgba(229, 231, 235, 0.8); padding: 12px 16px; display: none; box-shadow: 0 -2px 8px rgba(0,0,0,0.04); }
@media (max-width: 900px) { .sticky-cta { display: block; } }

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

/* Badges */
.badges { 
  display: flex; 
  gap: var(--s-3); 
  flex-wrap: wrap; 
  margin-top: var(--s-3); 
  justify-content: center; 
}

.badge { 
  font-size: var(--caption); 
  color: var(--olive-600); 
  background: var(--olive-50); 
  border: 1px solid var(--olive-100); 
  padding: var(--s-2) var(--s-3); 
  border-radius: 999px;
  font-weight: 500;
  transition: all var(--duration-fast) var(--ease-out-quart);
}

.badge:hover {
  background: var(--olive-100);
  border-color: var(--olive-300);
  transform: translateY(-1px);
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  gap: var(--s-8);
  margin-top: var(--s-6);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.trust-value {
  font-size: var(--title-md);
  font-weight: 800;
  color: var(--olive);
  font-family: var(--font-display);
  line-height: 1;
}

.trust-label {
  font-size: var(--body-sm);
  color: var(--muted);
  font-weight: 500;
  margin-top: var(--s-1);
}

/* Partners Section */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
  margin-top: var(--s-8);
}

.partner-card {
  background: var(--card);
  border: 2px solid var(--olive-100);
  border-radius: var(--radius);
  padding: var(--s-6);
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out-quart);
  position: relative;
  overflow: hidden;
}

.partner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--olive-300), var(--olive-500));
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--olive-300);
}

.partner-logo {
  margin-bottom: var(--s-3);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}

.partner-logo img,
.partner-logo-img {
  max-height: 64px;
  max-width: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner-card h4 {
  color: var(--olive);
  margin-bottom: var(--s-2);
  font-size: var(--body-lg);
}

.partner-card p {
  color: var(--muted);
  font-size: var(--body-sm);
  margin: 0;
  line-height: 1.5;
}

/* Security badges */
.security-badge {
  display: block;
  font-size: var(--body-sm);
  color: var(--olive-600);
  margin: var(--s-1) 0;
  font-weight: 500;
}

/* Breadcrumb Navigation */
.breadcrumb {
  font-size: var(--body-sm);
  color: var(--muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.breadcrumb a {
  color: var(--olive);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-quart);
}

.breadcrumb a:hover {
  color: var(--olive-400);
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--text-secondary);
  font-weight: 600;
}

/* Enhanced header layout for breadcrumbs */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: var(--s-4);
}

@media (max-width: 768px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
  }
  
  .breadcrumb {
    font-size: var(--caption);
  }
}
