@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');:root {  --radius: 0.625rem;  --background: #f1f5f9;  --foreground: #1e293b;  --card: #ffffff;  --card-foreground: #1e293b;  --primary: #0a2540;  --primary-foreground: #f8fafc;  --secondary: #1e3a8a;  --secondary-foreground: #f8fafc;  --muted: #f1f5f9;  --muted-foreground: #64748b;  --accent: #f59e0b;  --accent-foreground: #1e293b;  --border: #e2e8f0;  --input: #e2e8f0;  --ring: #0a2540;  --destructive: #ef4444;  --shadow-elegant: 0 20px 60px -20px rgba(10,37,64,0.25);  --shadow-card: 0 4px 24px -8px rgba(10,37,64,0.1);  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {  background: var(--background);  color: var(--foreground);  font-family: 'Inter', system-ui, sans-serif;  line-height: 1.5;  min-height: 100vh;}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 {  font-family: 'Playfair Display', Georgia, serif;  letter-spacing: -0.02em;}
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

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

/* Flex/Grid */.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.grid { display: grid; }
.inline-flex { display: inline-flex; }

/* Width / Height */.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-xl { max-width: 36rem; }
.max-w-md { max-width: 28rem; }
/* Spacing */.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-1 { padding-top: 0.25rem; }
.pl-5 { padding-left: 1.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
/* Typography */.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.15; }
.text-center { text-align: center; }
.whitespace-pre-line { white-space: pre-line; }
.text-primary { color: var(--primary); }
.text-primary-foreground { color: var(--primary-foreground); }
.text-secondary-foreground { color: var(--secondary-foreground); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-accent { color: var(--accent); }
.text-foreground { color: var(--foreground); }
.text-accent-foreground { color: var(--accent-foreground); }
/* Backgrounds */.bg-background { background: var(--background); }
.bg-card { background: var(--card); }
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.bg-muted { background: var(--muted); }
.bg-accent { background: var(--accent); }
/* Borders / Radius */.border { border: 1px solid var(--border); }
.border-b { border-bottom: 1px solid var(--border); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.border-t { border-top: 1px solid var(--border); }
.border-l-4 { border-left: 4px solid var(--accent); }
.border-border { border-color: var(--border); }
.border-input { border-color: var(--input); }
.border-accent { border-color: var(--accent); }
.border-primary-foreground { border-color: var(--primary-foreground); }
.rounded-sm { border-radius: calc(var(--radius) - 4px); }
.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: calc(var(--radius) + 4px); }
.rounded-2xl { border-radius: calc(var(--radius) + 8px); }
.rounded-full { border-radius: 9999px; }
/* Effects */.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[16\/10\] { aspect-ratio: 16/10; }
.aspect-square { aspect-ratio: 1; }
.opacity-30 { opacity: 0.3; }
.opacity-90 { opacity: 0.9; }
/* Position */.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.z-50 { z-index: 50; }
.ring-1 { box-shadow: 0 0 0 1px; }
.ring-inset { box-shadow: inset 0 0 0 1px; }
.ring-accent { box-shadow: 0 0 0 1px var(--accent); }
.ring-accent\/20 { box-shadow: 0 0 0 1px rgba(245,158,11,0.2); }
.ring-secondary-foreground\/10 { box-shadow: 0 0 0 1px rgba(248,250,252,0.1); }
/* Transitions */.transition-colors { transition: color 0.2s var(--transition-smooth), background-color 0.2s var(--transition-smooth), border-color 0.2s var(--transition-smooth); }
.transition-all { transition: all 0.2s var(--transition-smooth); }
.transition-shadow { transition: box-shadow 0.2s var(--transition-smooth); }
/* Shrink */.shrink-0 { flex-shrink: 0; }
/* Grid columns helpers */.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
/* Buttons */.btn {  display: inline-flex;  align-items: center;  justify-content: center;  gap: 0.5rem;  border-radius: calc(var(--radius) - 2px);  font-size: 0.875rem;  font-weight: 600;  line-height: 1.25rem;  transition: all 0.2s var(--transition-smooth);  cursor: pointer;  border: none;  text-decoration: none;}
.btn-primary {  background: var(--primary);  color: var(--primary-foreground);  padding: 0.75rem 1.5rem;  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);}
.btn-primary:hover { background: color-mix(in srgb, var(--primary) 90%, transparent); }
.btn-accent {  background: var(--accent);  color: var(--accent-foreground);  padding: 0.75rem 1.5rem;  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);}
.btn-accent:hover { filter: brightness(0.9); }
.btn-outline {  background: transparent;  color: var(--primary-foreground);  border: 1px solid rgba(248,250,252,0.3);  padding: 0.75rem 1.5rem;}
.btn-outline:hover { background: rgba(248,250,252,0.1); }
.btn-ghost {  background: transparent;  border: 1px solid var(--input);  color: var(--foreground);  padding: 0.75rem 1.5rem;}
.btn-ghost:hover { background: var(--muted); }
.btn-cta {  background: var(--primary);  color: var(--primary-foreground);  padding: 1rem 2rem;  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);  font-size: 0.875rem;  font-weight: 600;}
.btn-cta:hover { background: color-mix(in srgb, var(--primary) 90%, transparent); }
.btn-sm { padding: 0.5rem 1rem; }
/* Header */.header {  position: sticky;  top: 0;  z-index: 50;  border-bottom: 1px solid rgba(226,232,240,0.6);  background: rgba(255,255,255,0.8);  backdrop-filter: blur(12px);}
.logo { display: flex; align-items: center; }
.logo img { height: 40px; width: auto; display: block; }

.header-inner {  display: flex;  align-items: center;  justify-content: space-between;}
.header-logo {  display: flex;  align-items: center;  gap: 0.5rem;  font-weight: 600;  color: var(--primary);  font-size: 1.125rem;}
.header-logo svg { color: var(--accent); }
.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a {  font-size: 0.875rem;  font-weight: 500;  color: var(--muted-foreground);  transition: color 0.2s var(--transition-smooth);}
.header-nav a:hover,.header-nav a.active { color: var(--primary); }
.header-nav a.btn { color: var(--primary-foreground); }
.header-nav a.btn:hover { color: var(--primary-foreground); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--primary); cursor: pointer; padding: 0.25rem; }
.mobile-menu { display: none; border-top: 1px solid rgba(226,232,240,0.6); background: var(--background); }
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem 1.5rem; }
.mobile-menu a {  font-size: 0.875rem;  font-weight: 500;  color: var(--muted-foreground);  transition: color 0.2s var(--transition-smooth);}
.mobile-menu a:hover,.mobile-menu a.active { color: var(--primary); }
/* Footer */.footer {  border-top: 1px solid rgba(226,232,240,0.6);  background: var(--primary);  color: var(--primary-foreground);}
.footer-grid { display: grid; gap: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.footer-brand svg { color: var(--accent); }
.footer p { font-size: 0.875rem; line-height: 1.625; color: rgba(248,250,252,0.7); }
.footer h4 { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.75rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer ul a { color: rgba(248,250,252,0.7); transition: color 0.2s var(--transition-smooth); }
.footer ul a:hover { color: var(--accent); }
.footer ul li { color: rgba(248,250,252,0.7); }
.footer-bottom { border-top: 1px solid rgba(248,250,252,0.1); padding: 1rem 0; text-align: center; font-size: 0.75rem; color: rgba(248,250,252,0.6); }
/* Hero */.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,37,64,0.95), rgba(10,37,64,0.85), rgba(10,37,64,0.4)); }
.hero { min-height: 600px; }
@media (max-width: 767px) { .hero { min-height: 500px; }
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-slide .hero-overlay { position: absolute; inset: 0; }
.hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.75rem; z-index: 10; }
.hero-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; border: 2px solid rgba(255,255,255,0.6); background: transparent; cursor: pointer; transition: all 0.3s; padding: 0; }
.hero-dot.active { background: var(--accent); border-color: var(--accent); }
.hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); width: 3rem; height: 3rem; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.3s; padding: 0; backdrop-filter: blur(4px); }
.hero-arrow:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.9); }
.hero-arrow-prev { left: 1.5rem; }
.hero-arrow-next { right: 1.5rem; }
@media (max-width: 767px) {  .hero-arrow { width: 2.5rem; height: 2.5rem; }
.hero-arrow-prev { left: 0.75rem; }
.hero-arrow-next { right: 0.75rem; }
}
.hero-image-bg { position: absolute; inset: 0; }
.hero-image-bg img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-image-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,37,64,1) 0%, rgba(10,37,64,0.85) 50%, rgba(10,37,64,0.6) 100%); }
.hero-content { position: relative; max-width: 42rem; }
.hero-badge {  display: inline-block;  border-radius: 9999px;  background: rgba(245,158,11,0.15);  padding: 0.375rem 1rem;  font-size: 0.75rem;  font-weight: 600;  text-transform: uppercase;  letter-spacing: 0.05em;  color: var(--accent);  box-shadow: 0 0 0 1px rgba(245,158,11,0.3);}
.hero h1 {  margin-top: 1.5rem;  font-size: 3rem;  line-height: 1.05;  font-weight: 700;  color: var(--primary-foreground);}
.hero h1 span { color: var(--accent); }
.hero p {  margin-top: 1.5rem;  font-size: 1.125rem;  line-height: 1.625;  color: rgba(248,250,252,0.85);  max-width: 36rem;}
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
/* Section Styles */.section-hero-title { background: var(--primary); color: var(--primary-foreground); }
.section-title-small { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.section-hero-title h1 { margin-top: 0.75rem; font-size: 3rem; font-weight: 700; max-width: 48rem; line-height: 1.15; }
.section-hero-title p { margin-top: 1.25rem; font-size: 1.125rem; color: rgba(248,250,252,0.8); max-width: 42rem; }
/* Stats */.stats { border-bottom: 1px solid var(--border); background: var(--card); }
.stats-grid { display: grid; gap: 2rem; }
.stat-value { font-size: 1.875rem; font-weight: 700; color: var(--primary); }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }
/* Service card */.service-card {  border-radius: calc(var(--radius) + 4px);  border: 1px solid var(--border);  background: var(--card);  padding: 2rem;  transition: all 0.2s var(--transition-smooth);}
.service-card:hover { border-color: rgba(245,158,11,0.5); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.service-icon {  display: flex;  width: 3rem;  height: 3rem;  align-items: center;  justify-content: center;  border-radius: 0.5rem;  background: rgba(10,37,64,0.05);  color: var(--primary);  transition: all 0.2s var(--transition-smooth);}
.service-card:hover .service-icon { background: var(--accent); color: var(--accent-foreground); }
.service-card h3 { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 600; color: var(--primary); }
.service-card p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
.service-card ul { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-card ul li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--foreground); }
.service-card ul li svg { color: var(--accent); margin-top: 0.125rem; flex-shrink: 0; }
/* Trust band */.trust-band {  background: var(--secondary);  color: var(--secondary-foreground);}
.trust-grid { display: grid; gap: 3rem; align-items: center; }
.trust-image { border-radius: calc(var(--radius) + 8px); overflow: hidden; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.trust-image img { width: 100%; height: 100%; object-fit: cover; }
.trust-image .ring { position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(245,158,11,0.2); border-radius: calc(var(--radius) + 8px); }
.trust-band h2 { font-size: 2.25rem; font-weight: 700; }
.trust-band p { margin-top: 1rem; color: rgba(248,250,252,0.8); line-height: 1.625; }
.trust-features { margin-top: 1.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
.trust-feature {  border-radius: 0.5rem;  background: rgba(248,250,252,0.05);  padding: 1rem;  box-shadow: 0 0 0 1px rgba(248,250,252,0.1);}
.trust-feature svg { color: var(--accent); }
.trust-feature div { margin-top: 0.5rem; font-size: 0.875rem; font-weight: 500; }
.trust-link {  margin-top: 2rem;  display: inline-flex;  align-items: center;  gap: 0.5rem;  color: var(--accent);  font-weight: 600;  transition: all 0.2s var(--transition-smooth);}
.trust-link:hover { gap: 0.75rem; }
/* Performance section */.performance { background: var(--muted); }
.performance-grid { display: grid; gap: 4rem; align-items: center; }
.performance h2 { margin-top: 0.75rem; font-size: 2.25rem; font-weight: 700; color: var(--primary); }
.performance p { margin-top: 1rem; color: var(--muted-foreground); line-height: 1.625; }
blockquote { margin-top: 2rem; border-left: 4px solid var(--accent); padding-left: 1.25rem; font-style: italic; color: var(--foreground); }
blockquote footer { margin-top: 0.75rem; font-size: 0.875rem; font-style: normal; color: var(--muted-foreground); }
.perf-chart {  position: relative;  border-radius: calc(var(--radius) + 8px);  overflow: hidden;  background: var(--primary);  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);}
.perf-chart img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.perf-caption {  position: absolute;  bottom: 0;  left: 0;  right: 0;  padding: 2rem;  background: linear-gradient(to top, var(--primary), rgba(10,37,64,0.8), transparent);}
.perf-caption .label { color: var(--accent); font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.perf-caption .value { margin-top: 0.25rem; font-size: 3rem; font-weight: 700; color: var(--primary-foreground); }
.perf-caption .note { font-size: 0.875rem; color: rgba(248,250,252,0.7); margin-top: 0.25rem; }
/* Partners */.partners { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.partners-inner { padding: 3rem 0; }
.partners-label { text-align: center; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted-foreground); }
.partners-grid { margin-top: 1.5rem; display: grid; gap: 1.5rem; align-items: center; }
.partner-item { text-align: center; font-size: 0.875rem; font-weight: 600; color: rgba(10,37,64,0.7); letter-spacing: 0.025em; border: 1px solid var(--border); border-radius: 0.5rem; padding: 1rem 0.5rem; }
/* CTA section */.cta-section { max-width: 56rem; margin: 0 auto; padding: 6rem 1.5rem; text-align: center; }
.cta-section h2 { font-size: 2.25rem; font-weight: 700; color: var(--primary); }
.cta-section p { margin-top: 1rem; color: var(--muted-foreground); }
/* Über uns */.milestone-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.milestone { display: flex; gap: 1.25rem; }
.milestone-year { font-size: 1.5rem; font-weight: 700; color: var(--primary); min-width: 4rem; }
.milestone-text { padding-top: 0.25rem; color: var(--foreground); }
/* Team card */.team-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
.team-card { border-radius: calc(var(--radius) + 4px); background: var(--card); padding: 1.5rem; border: 1px solid var(--border); }
.team-avatar {  width: 100%;  aspect-ratio: 1;  border-radius: 0.5rem;  background: linear-gradient(to bottom right, var(--primary), var(--secondary));  margin-bottom: 1rem;  display: flex;  align-items: center;  justify-content: center;  font-size: 1.875rem;  font-weight: 700;  color: var(--primary-foreground);}
.team-card h3 { font-weight: 600; color: var(--primary); }
.team-role { font-size: 0.875rem; color: var(--accent); font-weight: 500; margin-top: 0.25rem; }
.team-bio { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.625; }
/* Principles */.principles-grid { display: grid; gap: 2rem; }
.principle-card { border-radius: calc(var(--radius) + 4px); border: 1px solid var(--border); background: var(--card); padding: 2rem; }
.principle-icon { display: flex; width: 3.5rem; height: 3.5rem; align-items: center; justify-content: center; border-radius: 0.5rem; background: rgba(245,158,11,0.1); color: var(--accent); }
.principle-card h3 { margin-top: 1.25rem; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.principle-card p { margin-top: 0.75rem; color: var(--muted-foreground); line-height: 1.625; }
/* Process */.process-grid { margin-top: 3rem; display: grid; gap: 1.5rem; }
.process-step { border-radius: 0.5rem; background: var(--card); padding: 1.5rem; border: 1px solid var(--border); }
.process-num { font-size: 1.875rem; font-weight: 700; color: var(--accent); }
.process-step h3 { margin-top: 0.75rem; font-size: 1.125rem; font-weight: 600; color: var(--primary); }
.process-step p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
/* Contact info */.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; }
.contact-icon { display: flex; width: 3rem; height: 3rem; flex-shrink: 0; align-items: center; justify-content: center; border-radius: 0.5rem; background: rgba(245,158,11,0.1); color: var(--accent); }
.contact-item h3 { font-weight: 600; color: var(--primary); }
.contact-item p { margin-top: 0.25rem; color: var(--muted-foreground); font-size: 0.875rem; white-space: pre-line; }
/* Form */.form-card { border-radius: calc(var(--radius) + 4px); border: 1px solid var(--border); background: var(--card); padding: 2rem; }
.form-card h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 1.25rem; }
.form-grid { display: grid; gap: 1.25rem; }
.form-row { display: grid; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.5rem; }
.form-input {  width: 100%;  border-radius: calc(var(--radius) - 2px);  border: 1px solid var(--input);  background: var(--background);  padding: 0.625rem 1rem;  font-size: 0.875rem;  font-family: inherit;  transition: border-color 0.2s var(--transition-smooth), box-shadow 0.2s var(--transition-smooth);}
.form-input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 1px var(--accent); }
textarea.form-input { resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.form-checkbox input { margin-top: 0.125rem; }
.btn-submit {  width: 100%;  display: inline-flex;  align-items: center;  justify-content: center;  gap: 0.5rem;  border-radius: calc(var(--radius) - 2px);  background: var(--primary);  color: var(--primary-foreground);  padding: 0.75rem 1.5rem;  font-size: 0.875rem;  font-weight: 600;  border: none;  cursor: pointer;  transition: background 0.2s var(--transition-smooth);}
.btn-submit:hover { background: color-mix(in srgb, var(--primary) 90%, transparent); }
/* Success state */.success-box { padding: 4rem 0; text-align: center; }
.success-icon { margin: 0 auto; width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgba(245,158,11,0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.success-box h3 { margin-top: 1.25rem; font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.success-box p { margin-top: 0.5rem; color: var(--muted-foreground); }
/* 404 */.error-page { display: flex; min-height: 100vh; align-items: center; justify-content: center; background: var(--background); padding: 0 1rem; }
.error-content { max-width: 28rem; text-align: center; }
.error-content h1 { font-size: 4.5rem; font-weight: 700; color: var(--foreground); }
.error-content h2 { margin-top: 1rem; font-size: 1.25rem; font-weight: 600; color: var(--foreground); }
.error-content p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.error-actions { margin-top: 1.5rem; }
/* SVG icons inline sizing */.icon { width: 1.5rem; height: 1.5rem; flex-shrink: 0; }
.icon-sm { width: 1.25rem; height: 1.25rem; }
.icon-xs { width: 1rem; height: 1rem; }
/* Dark mode */.dark { --background: #0f172a; --foreground: #f8fafc; --card: #1e293b; --card-foreground: #f8fafc; --primary: #f1f5f9; --primary-foreground: #1e293b; --secondary: #1e293b; --secondary-foreground: #f8fafc; --muted: #1e293b; --muted-foreground: #94a3b8; --accent: #f59e0b; --accent-foreground: #1e293b; --border: rgba(255,255,255,0.1); --input: rgba(255,255,255,0.15); }
/* Responsive */@media (min-width: 640px) {  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {  .md\:flex { display: flex; }
.md\:hidden { display: none; }
.md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.md\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.md\:order-1 { order: 1; }
.md\:order-2 { order: 2; }
.md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.md\:text-6xl { font-size: 3.75rem; }
.md\:py-44 { padding-top: 11rem; padding-bottom: 11rem; }
}
@media (min-width: 1024px) {  .lg\:col-span-2 { grid-column: span 2; }
.lg\:col-span-3 { grid-column: span 3; }
.lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 767px) {  .header-nav { display: none; }
.mobile-menu-btn { display: block; }
.mobile-menu.is-open { display: block; }
.hero h1 { font-size: 2.25rem; }
.section-hero-title h1 { font-size: 2.25rem; }
.trust-grid, .performance-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
.partners-grid { grid-template-columns: repeat(2, 1fr); }
.team-grid { grid-template-columns: 1fr; }
.principles-grid, .process-grid { grid-template-columns: 1fr; }
.contact-layout { grid-template-columns: 1fr; }
}