
/* ============================================================
   Glasswing Financieel Consultancy — modern site styles
   ============================================================ */

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

:root {
  --ink-900: #0a2540;
  --ink-700: #1e3a5f;
  --ink-500: #3a4f6b;
  --muted-500: #64748b;
  --muted-400: #94a3b8;
  --muted-200: #e2e8f0;
  --muted-100: #f1f5f9;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-mid: #eef2f7;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --accent-soft: #fef3c7;
  --primary: #0a2540;
  --primary-600: #103256;
  --success: #10b981;
  --danger: #ef4444;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,0.06);
  --shadow: 0 4px 12px rgba(10,37,64,0.08);
  --shadow-lg: 0 20px 40px -12px rgba(10,37,64,0.15);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink-900); background: var(--bg); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* =========== Typography =========== */
h1, h2, h3, h4 { font-family: 'Fraunces', 'Inter', serif; font-weight: 700; color: var(--ink-900); letter-spacing: -0.01em; line-height: 1.15; }
h1 { font-size: clamp(34px, 5vw, 58px); margin: 0 0 18px; }
h2 { font-size: clamp(26px, 3vw, 40px); margin: 0 0 16px; letter-spacing: -0.015em; }
h3 { font-size: 22px; margin: 0 0 10px; }
h4 { font-size: 17px; margin: 0 0 8px; }
p  { margin: 0 0 14px; color: var(--ink-700); }
.eyebrow { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; color: var(--accent-hover); text-transform: uppercase; margin-bottom: 14px; display: inline-block; }

a { color: var(--primary); transition: color .15s var(--ease); }
a:hover { color: var(--accent-hover); }

/* =========== Header =========== */
header.site-header {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(10,37,64,0.06);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; text-decoration: none; font-family: 'Fraunces', serif; font-weight: 700; color: var(--ink-900); font-size: 22px; letter-spacing: -0.01em; gap: 10px; }
.brand-mark { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #0a2540 0%, #2563eb 100%); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-family: 'Fraunces', serif; font-weight: 700; font-size: 18px; }
.brand span { font-family: 'Inter', sans-serif; font-weight: 500; color: var(--muted-500); font-size: 13px; margin-left: 6px; letter-spacing: 0.3px; }
nav.main-nav a { margin-left: 28px; text-decoration: none; color: var(--ink-700); font-weight: 500; font-size: 15px; position: relative; transition: color .15s var(--ease); }
nav.main-nav a:hover { color: var(--ink-900); }
nav.main-nav a.btn { margin-left: 28px; }

/* =========== Buttons =========== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px; text-decoration: none; border: 0; cursor: pointer; transition: all .2s var(--ease); font-family: inherit; }
.btn-primary { background: var(--ink-900); color: #fff; }
.btn-primary:hover { background: var(--primary-600); transform: translateY(-1px); box-shadow: var(--shadow); color: #fff; }
.btn-accent  { background: var(--accent); color: var(--ink-900); }
.btn-accent:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-ghost   { background: transparent; color: var(--ink-900); border: 1.5px solid rgba(10,37,64,0.15); }
.btn-ghost:hover { border-color: var(--ink-900); background: var(--bg-soft); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-arrow::after { content: '→'; transition: transform .2s var(--ease); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* =========== Hero =========== */
.hero { position: relative; padding: 80px 0 90px; overflow: hidden; background: radial-gradient(ellipse at top left, rgba(37,99,235,0.08), transparent 55%), radial-gradient(ellipse at bottom right, rgba(245,158,11,0.08), transparent 55%), var(--bg); }
.hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(10,37,64,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(10,37,64,0.04) 1px, transparent 1px); background-size: 44px 44px; mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse at center, #000 40%, transparent 75%); z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; }
.hero-copy .lede { font-size: 19px; color: var(--ink-500); max-width: 560px; margin-bottom: 28px; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-illust { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); background: linear-gradient(135deg, #0a2540 0%, #0e3365 45%, #2b6cb0 100%); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-illust::after { content:''; position: absolute; inset:0; background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.06) 0, transparent 40%), radial-gradient(circle at 80% 70%, rgba(245,158,11,0.15) 0, transparent 40%); }
.hero-illust .stat-card { position: absolute; background: #fff; border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-lg); font-size: 13px; }
.hero-illust .stat-card.tl { top: 24px; left: 24px; }
.hero-illust .stat-card.br { bottom: 24px; right: 24px; }
.hero-illust .stat-card strong { display: block; font-family: 'Fraunces', serif; font-size: 28px; color: var(--ink-900); margin-bottom: 2px; }
.hero-illust .stat-card span { color: var(--muted-500); font-size: 12px; font-weight: 500; }
.hero-illust .chart-lines { position: absolute; left: 40px; right: 40px; top: 42%; bottom: 22%; display: flex; align-items: flex-end; justify-content: space-between; gap: 6px; }
.hero-illust .bar { flex: 1; background: linear-gradient(180deg, rgba(245,158,11,0.9), rgba(245,158,11,0.5)); border-radius: 3px 3px 0 0; }
.hero-illust .bar:nth-child(1) { height: 45%; }
.hero-illust .bar:nth-child(2) { height: 62%; }
.hero-illust .bar:nth-child(3) { height: 38%; }
.hero-illust .bar:nth-child(4) { height: 71%; }
.hero-illust .bar:nth-child(5) { height: 58%; }
.hero-illust .bar:nth-child(6) { height: 84%; background: linear-gradient(180deg, #fff, rgba(255,255,255,0.6)); }
.hero-illust .bar:nth-child(7) { height: 95%; background: linear-gradient(180deg, #fff, rgba(255,255,255,0.8)); }

/* =========== Trust Bar (fake client logos) =========== */
.trust { padding: 34px 0; background: var(--bg-soft); border-top: 1px solid var(--muted-200); border-bottom: 1px solid var(--muted-200); }
.trust .label { font-size: 12px; letter-spacing: 2px; color: var(--muted-500); text-align: center; margin-bottom: 18px; text-transform: uppercase; font-weight: 600; }
.trust-logos { display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; align-items: center; }
.trust-logo { display: flex; align-items: center; justify-content: center; opacity: 0.5; transition: opacity .2s var(--ease); font-family: 'Fraunces', serif; font-weight: 700; font-size: 20px; letter-spacing: -0.02em; color: var(--ink-700); }
.trust-logo:hover { opacity: 1; }
.trust-logo svg { height: 34px; width: auto; }

/* =========== Stats band =========== */
.stats-band { padding: 80px 0; background: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num { font-family: 'Fraunces', serif; font-size: 64px; font-weight: 700; color: var(--primary); line-height: 1; letter-spacing: -0.02em; margin-bottom: 10px; background: linear-gradient(135deg, #0a2540 0%, #2563eb 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 14px; color: var(--muted-500); font-weight: 500; }

/* =========== Section scaffolding =========== */
section.block { padding: 100px 0; }
section.block.soft { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head p { font-size: 17px; color: var(--ink-500); }

/* =========== Service cards =========== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card { background: #fff; padding: 36px 30px; border-radius: var(--radius); border: 1px solid var(--muted-200); transition: all .2s var(--ease); position: relative; overflow: hidden; }
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-card .icon-wrap { width: 56px; height: 56px; border-radius: 12px; background: linear-gradient(135deg, rgba(37,99,235,0.08) 0%, rgba(245,158,11,0.1) 100%); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: var(--primary); }
.svc-card .icon-wrap svg { width: 28px; height: 28px; stroke-width: 1.8; }
.svc-card ul { list-style: none; padding: 0; margin: 14px 0 0; font-size: 14px; color: var(--ink-500); }
.svc-card ul li { padding: 5px 0 5px 22px; position: relative; }
.svc-card ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); position: absolute; left: 4px; top: 14px; }

/* =========== Why us / features grid =========== */
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 48px; max-width: 900px; margin: 0 auto; }
.feature { display: flex; gap: 18px; }
.feature .icon-wrap { flex-shrink: 0; width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); color: var(--accent-hover); display: flex; align-items: center; justify-content: center; }
.feature .icon-wrap svg { width: 22px; height: 22px; stroke-width: 2; }
.feature h4 { margin-bottom: 4px; }
.feature p { font-size: 15px; margin: 0; color: var(--ink-500); }

/* =========== Process steps =========== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.steps::before { content: ''; position: absolute; top: 32px; left: 16%; right: 16%; height: 2px; background: linear-gradient(90deg, var(--accent) 0%, transparent 100%); background-size: 16px 2px; background-repeat: repeat-x; opacity: 0.4; }
.step { text-align: center; position: relative; z-index: 1; }
.step-num { width: 64px; height: 64px; margin: 0 auto 18px; background: #fff; border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 26px; font-weight: 700; color: var(--ink-900); box-shadow: var(--shadow); }
.step h4 { font-size: 18px; }
.step p { font-size: 14px; color: var(--ink-500); max-width: 280px; margin: 0 auto; }

/* =========== Testimonials =========== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote-card { background: #fff; padding: 30px; border-radius: var(--radius); border: 1px solid var(--muted-200); position: relative; }
.quote-card::before { content: '\201C'; position: absolute; top: 14px; left: 22px; font-family: 'Fraunces', serif; font-size: 56px; color: var(--accent); line-height: 1; opacity: 0.7; }
.quote-card blockquote { margin: 0 0 20px; padding: 28px 0 0; font-size: 15px; color: var(--ink-700); font-style: italic; line-height: 1.6; }
.quote-meta { display: flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.quote-meta strong { display: block; font-size: 14px; color: var(--ink-900); font-weight: 600; }
.quote-meta span { font-size: 12px; color: var(--muted-500); }

/* =========== CTA band =========== */
.cta-band { padding: 80px 0; background: linear-gradient(135deg, #0a2540 0%, #103256 60%, #1e3a5f 100%); color: #fff; position: relative; overflow: hidden; }
.cta-band::after { content: ''; position: absolute; right: -100px; top: -100px; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(245,158,11,0.2), transparent 70%); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 8px; max-width: 640px; }
.cta-band p { color: rgba(255,255,255,0.75); margin: 0; max-width: 640px; }

/* =========== Footer =========== */
footer.site-footer { background: #0a2540; color: #9fb4d4; padding: 70px 0 30px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 50px; }
.footer-grid h5 { color: #fff; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 18px; }
.footer-grid a { display: block; color: #9fb4d4; text-decoration: none; padding: 4px 0; }
.footer-grid a:hover { color: #fff; }
.footer-brand .brand { color: #fff; font-size: 24px; }
.footer-brand .brand-mark { background: linear-gradient(135deg, #f59e0b 0%, #2563eb 100%); }
.footer-brand p { color: #9fb4d4; font-size: 14px; margin-top: 16px; max-width: 300px; line-height: 1.6; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; padding: 0; transition: background .15s var(--ease); }
.footer-socials a:hover { background: var(--accent); color: var(--ink-900); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; color: #6b85a8; flex-wrap: wrap; gap: 14px; }
.footer-bottom a { color: #6b85a8; margin-left: 18px; text-decoration: none; }

/* =========== Forms =========== */
.form-card { background: #fff; padding: 36px; border-radius: var(--radius); border: 1px solid var(--muted-200); box-shadow: var(--shadow-sm); }
form label { display: block; margin-bottom: 16px; font-size: 13px; font-weight: 600; color: var(--ink-700); }
form input, form select, form textarea { display: block; width: 100%; margin-top: 6px; padding: 12px 14px; border: 1px solid var(--muted-200); border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; background: #fff; color: var(--ink-900); transition: border-color .15s var(--ease), box-shadow .15s var(--ease); }
form input:focus, form select:focus, form textarea:focus { outline: 0; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(10,37,64,0.1); }
form textarea { resize: vertical; min-height: 120px; }

/* =========== Tables / pricing =========== */
.pricing-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--muted-200); }
.pricing-table th, .pricing-table td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--muted-200); }
.pricing-table th { background: var(--bg-soft); font-size: 13px; font-weight: 600; color: var(--ink-700); text-transform: uppercase; letter-spacing: 1px; }
.pricing-table tr:last-child td { border-bottom: 0; }
.pricing-table .price { font-family: 'Fraunces', serif; font-weight: 700; color: var(--ink-900); white-space: nowrap; }

/* =========== FAQ =========== */
.faq-list { max-width: 820px; margin: 0 auto; }
details.faq { background: #fff; border: 1px solid var(--muted-200); border-radius: var(--radius-sm); margin-bottom: 10px; padding: 0; }
details.faq summary { padding: 18px 22px; font-weight: 600; color: var(--ink-900); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 15px; }
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after { content: '+'; font-size: 22px; color: var(--accent); transition: transform .15s var(--ease); }
details.faq[open] summary::after { content: '−'; }
details.faq > div { padding: 0 22px 20px; color: var(--ink-500); font-size: 15px; }

/* =========== Timeline =========== */
.timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 36px; }
.timeline::before { content: ''; position: absolute; left: 12px; top: 12px; bottom: 12px; width: 2px; background: linear-gradient(180deg, var(--accent) 0%, transparent 100%); }
.timeline-item { position: relative; padding: 0 0 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ''; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); position: absolute; left: -30px; top: 6px; box-shadow: 0 0 0 4px var(--bg); }
.timeline-item .year { font-family: 'Fraunces', serif; font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.timeline-item h4 { margin-bottom: 6px; }
.timeline-item p { font-size: 15px; color: var(--ink-500); margin: 0; }

/* =========== Team =========== */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--muted-200); padding: 28px 22px; text-align: center; transition: all .2s var(--ease); }
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .team-avatar { width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700; position: relative; }
.team-card:nth-child(2) .team-avatar { background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%); }
.team-card:nth-child(3) .team-avatar { background: linear-gradient(135deg, var(--accent) 0%, #ef4444 100%); }
.team-card:nth-child(4) .team-avatar { background: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%); }
.team-card strong { display: block; color: var(--ink-900); font-size: 16px; margin-bottom: 2px; }
.team-card .role { color: var(--muted-500); font-size: 13px; }
.team-card .specialty { margin-top: 10px; font-size: 12px; color: var(--accent-hover); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* =========== Cert badges =========== */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.cert { background: #fff; padding: 22px; border-radius: var(--radius); border: 1px solid var(--muted-200); text-align: center; }
.cert-name { font-family: 'Fraunces', serif; font-weight: 700; color: var(--ink-900); margin-top: 10px; font-size: 15px; }
.cert-sub { color: var(--muted-500); font-size: 12px; margin-top: 2px; }
.cert svg { width: 44px; height: 44px; color: var(--primary); }

/* =========== Helpers =========== */
.text-center { text-align: center; }
.mb-xl { margin-bottom: 56px; }
.lead { font-size: 18px; color: var(--ink-500); max-width: 720px; line-height: 1.6; }

/* =========== Responsive =========== */
@media (max-width: 900px) {
  .hero-grid, .features-grid, .services-grid, .testimonials-grid, .team-grid, .cert-grid, .footer-grid, .stats-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  nav.main-nav a:not(.btn) { display: none; }
  .trust-logos { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .hero-illust { aspect-ratio: 16/10; }
}

/* ============================================================
   Portal (honeytrap) styles — preserved from original
   ============================================================ */
.portal { background: linear-gradient(135deg, #14213d, #0b5394); min-height: 100vh; margin: 0; display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; }
.portal-box { background: #fff; padding: 40px; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.35); width: 380px; max-width: 92vw; }
.portal-box h1 { font-family: 'Inter', sans-serif; font-size: 24px; margin-top: 0; color: #0b5394; }
.portal-box .sub { color: #6b7280; font-size: 13px; margin-bottom: 24px; }
.portal-box .remember { font-weight: 400; font-size: 13px; }
.portal-box .btn { width: 100%; padding: 12px; text-align: center; justify-content: center; }
.portal-box .btn-primary { background: #0b5394; }
.portal-links { margin-top: 18px; font-size: 13px; display: flex; justify-content: space-between; }
.portal-links a { color: #0b5394; text-decoration: none; }
.portal-footer { text-align: center; margin-top: 20px; font-size: 11px; color: #6b7280; }
.error { background: #fee2e2; border: 1px solid #fecaca; color: #991b1b; padding: 10px; border-radius: 4px; }

/* Nav button overrides - override nav.main-nav a specificity */
nav.main-nav a.btn { text-decoration: none; }
nav.main-nav a.btn-primary { color: #fff !important; background: var(--ink-900); }
nav.main-nav a.btn-primary:hover { color: #fff !important; background: var(--primary-600); }
nav.main-nav a.btn-accent  { color: var(--ink-900) !important; background: var(--accent); }
nav.main-nav a.btn-accent:hover  { color: var(--ink-900) !important; background: var(--accent-hover); }
nav.main-nav a.btn-ghost   { color: var(--ink-900) !important; }
