/* ============================================================
   STRIKER FINANCE – style.css
   Einheitliches Design für alle Seiten
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=DM+Sans:wght@300;400;500&display=swap');

/* --- VARIABLEN --- */
:root {
  --navy:        #0A1628;
  --navy-mid:    #142240;
  --navy-light:  #1E3057;
  --gold:        #C9A84C;
  --gold-light:  #E8C96A;
  --gold-pale:   #F5E9C6;
  --white:       #FFFFFF;
  --off-white:   #F8F6F1;
  --text-dark:   #0A1628;
  --text-mid:    #4A5568;
  --text-muted:  #8A96A8;
  --border:      rgba(201,168,76,0.2);
  --border-light:rgba(10,22,40,0.08);
  --shadow:      0 4px 24px rgba(10,22,40,0.10);
  --shadow-lg:   0 12px 48px rgba(10,22,40,0.16);
  --nav-height:  72px;
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   20px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

/* --- LAYOUT HELPERS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 60px 0; }

/* --- TYPOGRAPHY --- */
.eyebrow {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
}
.eyebrow::before { content: ''; width: 24px; height: 1.5px; background: var(--gold); }
.eyebrow--light { color: var(--gold-light); }
.eyebrow--light::before { background: var(--gold-light); }

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-dark); line-height: 1.2; margin-bottom: 1.25rem;
}
.section-title--light { color: var(--white); }

.section-sub {
  font-size: 17px; color: var(--text-mid);
  max-width: 560px; line-height: 1.75; font-weight: 300;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  border-radius: var(--radius-sm); transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 10px 22px; font-size: 14px; font-weight: 600;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: var(--gold-light); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}
.btn-primary--lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn-primary--lg:hover { box-shadow: 0 8px 32px rgba(201,168,76,0.4); transform: translateY(-2px); }

.btn-ghost {
  background: transparent; border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold); padding: 9px 20px; font-size: 14px;
}
.btn-ghost:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.btn-ghost--red { border-color: rgba(231,76,60,0.4); color: #e74c3c; }
.btn-ghost--red:hover { background: rgba(231,76,60,0.1); border-color: #e74c3c; }

.btn-dark {
  background: var(--navy); color: var(--white);
  padding: 14px 28px; font-size: 15px; border-radius: var(--radius-md);
}
.btn-dark:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-dark--full { width: 100%; font-size: 16px; padding: 15px; }

.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  padding: 15px 32px; font-size: 16px; border-radius: var(--radius-md);
}
.btn-outline-light:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }

/* --- NAVIGATION --- */
.sf-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: var(--nav-height);
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  transition: box-shadow 0.3s;
}
.sf-nav.scrolled { box-shadow: 0 4px 24px rgba(10,22,40,0.3); }

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-fallback { display: flex; align-items: center; gap: 12px; }
.nav-logo-img { height: 42px; width: auto; object-fit: contain; }
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 700; color: var(--navy);
  flex-shrink: 0;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child {
  font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700;
  color: var(--white); letter-spacing: 0.02em;
}
.nav-logo-text span:last-child {
  font-size: 10px; color: var(--gold);
  letter-spacing: 0.12em; text-transform: uppercase;
}

/* Nav links */
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255,255,255,0.7); font-size: 14px; font-weight: 500;
  letter-spacing: 0.03em; transition: color 0.2s; padding: 4px 0;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); border-bottom-color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.nav-badge {
  position: absolute; top: -6px; right: -6px;
  background: #e74c3c; color: #fff;
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }

/* --- PAGE OFFSET for fixed nav --- */
.page-content { padding-top: var(--nav-height); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0; width: 50%;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 100px 2rem 80px;
  width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.25);
  padding: 6px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 500; color: var(--gold);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white); margin-bottom: 1.25rem; line-height: 1.15;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-sub {
  font-size: 17px; color: rgba(255,255,255,0.65);
  max-width: 480px; margin-bottom: 2.5rem; line-height: 1.75; font-weight: 300;
}
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-trust {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.trust-text strong { color: var(--white); font-size: 14px; font-weight: 600; display: block; }
.trust-text span { color: var(--text-muted); font-size: 11px; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-xl); padding: 2.5rem; position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.advisor-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.advisor-photo-placeholder {
  width: 100%;
  height: 320px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg); margin-bottom: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 8px;
}
.advisor-initials {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; color: var(--navy);
}
.advisor-info { text-align: center; }
.advisor-info h3 { color: var(--white); font-size: 22px; margin-bottom: 4px; }
.advisor-info p { color: var(--gold); font-size: 13px; letter-spacing: 0.05em; }
.rating-bar { display: flex; align-items: center; justify-content: center; gap: 4px; margin-top: 12px; }
.star { color: var(--gold); font-size: 14px; }
.rating-text { color: rgba(255,255,255,0.5); font-size: 12px; margin-left: 6px; }

/* --- STATS --- */
.stats {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  text-align: center; padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(201,168,76,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; }

/* --- CARDS (Problem, Service) --- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 3.5rem; }
.card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-lg); padding: 2rem; transition: all 0.3s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--gold-pale); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 1.25rem;
}
.card h3 { font-size: 17px; margin-bottom: 0.75rem; color: var(--text-dark); }
.card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.card--clickable { cursor: pointer; }
.card--clickable:hover { border-color: var(--gold); box-shadow: 0 8px 32px rgba(201,168,76,0.15); }

/* --- ABOUT --- */
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  border-radius: var(--radius-xl);
}
.about-photo-placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-xl);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.about-initials {
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700; color: var(--navy);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 20px; border-radius: var(--radius-lg);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-badge strong { font-size: 32px; font-family: 'Playfair Display', serif; display: block; }
.about-badge span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.about-credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 2rem; }
.cred-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; background: var(--off-white); border-radius: var(--radius-md);
}
.cred-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.cred-text strong { font-size: 13px; display: block; color: var(--text-dark); }
.cred-text span { font-size: 12px; color: var(--text-muted); }

/* --- PROCESS STEPS --- */
.steps-list { margin-top: 3.5rem; display: flex; flex-direction: column; }
.step-item { display: grid; grid-template-columns: 80px 1fr; position: relative; }
.step-line {
  position: absolute; left: 39px; top: 56px; bottom: -1px; width: 2px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.4), rgba(201,168,76,0.05));
}
.step-number { display: flex; align-items: flex-start; justify-content: center; padding-top: 4px; }
.step-num-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(201,168,76,0.12); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--gold);
}
.step-content { padding: 4px 0 3rem 2rem; }
.step-content:last-of-type { padding-bottom: 0; }
.step-content h3 { font-size: 19px; color: var(--white); margin-bottom: 0.5rem; }
.step-content p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.7; max-width: 520px; }

/* --- CONTACT --- */
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-features { display: flex; flex-direction: column; gap: 16px; }
.contact-feat {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--white);
  border-radius: var(--radius-md); border: 1px solid var(--border-light);
}
.feat-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  background: var(--gold-pale); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.feat-text strong { font-size: 14px; display: block; color: var(--text-dark); margin-bottom: 2px; }
.feat-text span { font-size: 13px; color: var(--text-muted); }

/* --- FORM --- */
.form-card {
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius-xl); padding: 2.5rem; box-shadow: var(--shadow);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--text-dark); margin-bottom: 6px; letter-spacing: 0.02em;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select, textarea {
  width: 100%; padding: 12px 16px;
  background: var(--off-white); border: 1.5px solid rgba(10,22,40,0.1);
  border-radius: var(--radius-sm); font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text-dark); transition: all 0.2s; outline: none;
  appearance: none; -webkit-appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238A96A8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer;
}
textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 1rem; }
.form-note a { color: var(--navy); text-decoration: underline; }

/* Alerts */
.alert {
  padding: 14px 18px; border-radius: var(--radius-md);
  margin-bottom: 1.5rem; font-size: 14px; display: flex; align-items: center; gap: 10px;
}
.alert-success { background: #ECFDF5; border: 1.5px solid #6EE7B7; color: #065F46; }
.alert-error   { background: #FEF2F2; border: 1.5px solid #FCA5A5; color: #991B1B; }
.alert-info    { background: #EFF6FF; border: 1.5px solid #93C5FD; color: #1E40AF; }

/* --- FOOTER --- */
.sf-footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  color: rgba(255,255,255,0.45); font-size: 14px;
  line-height: 1.75; margin-top: 1rem; max-width: 280px;
}
.footer-col h4 {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold); margin-bottom: 1rem;
  font-family: 'DM Sans', sans-serif; font-weight: 600;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.5); font-size: 14px; transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding-top: 24px;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-disclaimer {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.2); font-size: 11px; line-height: 1.6;
}

/* --- STATIC PAGES (Impressum, Datenschutz) --- */
.static-page { padding: 40px 0 80px; min-height: calc(100vh - var(--nav-height)); }
.static-page-inner { max-width: 760px; }
.static-page h1 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 2rem; }
.static-page h2 { font-size: 1.4rem; color: var(--text-dark); margin: 2.5rem 0 0.75rem; }
.static-page p { color: var(--text-mid); font-size: 15px; margin-bottom: 1rem; line-height: 1.8; }
.static-page a { color: var(--navy); text-decoration: underline; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 14px; margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--text-dark); }

/* --- LOGIN PAGE --- */
.login-page {
  min-height: 100vh; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.login-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 3rem; width: 100%; max-width: 420px;
  box-shadow: var(--shadow-lg); position: relative;
}
.login-logo { margin-bottom: 2rem; }
.login-title { font-size: 26px; color: var(--text-dark); margin-bottom: 0.5rem; }
.login-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
.login-tabs {
  display: flex; background: var(--off-white);
  border-radius: var(--radius-sm); padding: 4px; margin-bottom: 1.5rem; gap: 4px;
}
.login-tab {
  flex: 1; padding: 9px; border: none; border-radius: 5px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.2s; background: transparent; color: var(--text-muted);
}
.login-tab.active { background: var(--white); color: var(--text-dark); box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
.login-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 1.25rem 0; color: var(--text-muted); font-size: 13px;
}
.login-divider::before, .login-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(10,22,40,0.08);
}
.forgot-link {
  text-align: right; font-size: 13px; margin-top: -8px; margin-bottom: 1.25rem;
}
.forgot-link a { color: var(--navy); font-size: 13px; }

/* --- DASHBOARD --- */
.dashboard { padding: 40px 0 60px; min-height: calc(100vh - var(--nav-height)); background: var(--off-white); }
.dashboard-header {
  background: var(--navy); padding: 2rem 2.5rem;
  border-radius: var(--radius-lg); margin-bottom: 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.dashboard-header-left h2 { color: var(--white); font-size: 22px; }
.dashboard-header-left p { color: rgba(255,255,255,0.5); font-size: 14px; margin-top: 4px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }
.dash-stat {
  background: var(--white); border-radius: var(--radius-md); padding: 1.5rem;
  border: 1px solid var(--border-light); text-align: center;
}
.dash-stat-num {
  font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 700;
  display: block; margin-bottom: 4px;
}
.dash-stat-num--gold { color: var(--gold); }
.dash-stat-num--navy { color: var(--navy); }
.dash-stat-label { font-size: 13px; color: var(--text-muted); }
.dash-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 20px; }
.dash-card { background: var(--white); border-radius: var(--radius-lg); padding: 1.5rem; border: 1px solid var(--border-light); }
.dash-card h3 { font-size: 15px; color: var(--text-dark); margin-bottom: 1rem; }
.dash-card-title { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.dash-card-title h3 { margin-bottom: 0; }

/* Contact items in dashboard */
.contact-item {
  padding: 16px; background: var(--off-white); border-radius: var(--radius-md);
  margin-bottom: 12px; border-left: 3px solid var(--gold); transition: all 0.2s;
}
.contact-item:hover { background: var(--gold-pale); }
.contact-item.unread { border-left-color: #3B82F6; background: #EFF6FF; }
.contact-item.read { border-left-color: rgba(10,22,40,0.15); opacity: 0.7; }
.ci-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 6px; }
.ci-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.ci-time { font-size: 12px; color: var(--text-muted); white-space: nowrap; margin-left: 8px; }
.ci-tag {
  display: inline-block; padding: 2px 10px; border-radius: 4px;
  background: var(--gold-pale); color: var(--navy);
  font-size: 11px; font-weight: 600; margin-bottom: 6px; letter-spacing: 0.04em;
}
.ci-tag--unread { background: #DBEAFE; color: #1E40AF; }
.ci-msg { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin-bottom: 10px; }
.ci-actions { display: flex; gap: 8px; }
.ci-btn {
  font-size: 12px; padding: 5px 12px; border-radius: 5px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-weight: 500; border: 1px solid; transition: all 0.2s;
}
.ci-btn--mark { background: transparent; border-color: rgba(10,22,40,0.15); color: var(--text-mid); }
.ci-btn--mark:hover { background: var(--white); border-color: var(--navy); color: var(--navy); }
.ci-btn--delete { background: transparent; border-color: rgba(231,76,60,0.3); color: #e74c3c; }
.ci-btn--delete:hover { background: #FEF2F2; }
.ci-email { font-size: 12px; color: var(--text-muted); }
.ci-email a { color: var(--navy); text-decoration: underline; }

.dash-task {
  padding: 14px; border-radius: var(--radius-md); margin-bottom: 10px;
}
.dash-task--gold { background: var(--gold-pale); border-left: 3px solid var(--gold); }
.dash-task--gray { background: var(--off-white); border-left: 3px solid rgba(10,22,40,0.15); }
.dash-task-title { font-size: 14px; font-weight: 500; color: var(--navy); }
.dash-task-sub { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

/* Filter bar */
.filter-bar { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.filter-btn {
  padding: 6px 14px; border-radius: 20px; font-size: 13px; cursor: pointer;
  font-family: 'DM Sans', sans-serif; border: 1px solid var(--border-light);
  background: var(--white); color: var(--text-mid); transition: all 0.2s;
}
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.filter-btn:hover:not(.active) { border-color: var(--navy); color: var(--navy); }

/* Empty state */
.empty-state {
  text-align: center; padding: 3rem 1rem; color: var(--text-muted);
}
.empty-state p { font-size: 14px; margin-top: 8px; }

/* --- SCROLL ANIMATIONS --- */
.reveal {
  opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card { display: none; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-credentials { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1 / -1; }
  .dash-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: var(--navy); padding: 1.5rem 2rem; gap: 1.25rem;
    border-bottom: 1px solid rgba(201,168,76,0.15); z-index: 490;
  }
  .nav-links.open a { border-bottom: none; padding: 6px 0; font-size: 16px; }
}

@media (max-width: 600px) {
  .container { padding: 0 1.25rem; }
  .hero-inner { padding: 80px 1.25rem 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 1.5rem 1rem; }
  .stat-number { font-size: 2rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .nav-actions .btn-primary { display: none; }
  .dash-stats { grid-template-columns: 1fr; }
}
