/* finance-modules.css */

/* GLOBAL: Montserrat + UPPERCASE */
html, body {
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
}

/* LEAD */
.lead-hero {
  background: radial-gradient(1200px 600px at 10% 0%, #e8f5ff 0%, transparent 60%), #f7fbff;
  border-bottom: 1px solid #e6eef6;
  padding: 56px 16px;
}
.lead-hero .lead-wrap { max-width: 1100px; margin: 0 auto; text-align: center; }
.lead-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15; margin: 0 0 12px; color: #0f172a;
}
.lead-hero p { max-width: 820px; margin: 0 auto 20px; color: #334155; font-size: 18px; }
.lead-hero .lead-cta {
  display: inline-block; background: #0ea5e9; color: #fff; font-weight: 700;
  padding: 12px 18px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(14,165,233,.25);
}
.lead-hero .lead-cta:hover { background: #0284c7; }

/* 2 KOLUMNY */
.finance-module { padding: 36px 16px 56px; }
.finance-module .fm-wrap { max-width: 1100px; margin: 0 auto; display: grid; gap: 28px; grid-template-columns: 1.1fr 1fr; }
@media (max-width: 960px) { .finance-module .fm-wrap { grid-template-columns: 1fr; } }

/* LEWA kolumna: ikony */
.fm-icons { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
@media (max-width: 640px) { .fm-icons { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.fm-icon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 18px 14px; border: 1px solid #e5e7eb; border-radius: 14px;
  background: #fff; box-shadow: 0 6px 18px rgba(2,132,199,.06);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.fm-icon svg { width: 36px; height: 36px; color: #0284c7; }
.fm-icon span { font-weight: 700; color: #0f172a; text-align: center; font-size: 14px; }
.fm-icon:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(2,132,199,.12); border-color: #bae6fd; }

/* PRAWA kolumna: tekst */
.fm-text h2 { font-size: 24px; line-height: 1.25; margin: 4px 0 14px; color: #0f172a; }
.fm-bullets { margin: 0 0 16px; padding-left: 18px; color: #334155; }
.fm-bullets li { margin: 8px 0; }
.fm-cta {
  display: inline-block; background: #fbbf24; color: #111827; font-weight: 800;
  padding: 10px 14px; border-radius: 10px; text-decoration: none;
  box-shadow: 0 6px 16px rgba(251,191,36,.25);
}
.fm-cta:hover { background: #f59e0b; }
.fm-note { font-size: 13px; color: #64748b; margin-top: 10px; }

/* Optional: turn off uppercase inside inputs/textareas to avoid shouting in forms */
input, textarea, select { text-transform: none; letter-spacing: normal; }
