﻿/* EFT Capture — marketing site styles (matches the EFTCapture blue logo) */
:root {
  --bg: #0d1420; --panel: #16202e; --panel-2: #111a26;
  --text: #e8ecf1; --muted: #8b97a7;
  --accent: #2f81e0; --accent-h: #4a95e8; --accent-soft: rgba(47,129,224,0.14);
  --border: #263447; --radius: 12px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: 'Segoe UI', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  background-image: radial-gradient(1200px 600px at 80% -10%, var(--accent-soft), transparent 60%);
  color: var(--text); line-height: 1.6;
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-h); }

.nav {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1080px; margin: 0 auto; padding: 22px 24px;
}
.nav .brand { font-size: 1.25rem; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 10px; }
.nav .brand img { height: 34px; width: 34px; }
.hero .hero-logo { width: 300px; max-width: 70%; margin-bottom: 26px; }
.nav .brand span { color: var(--accent); }
.nav .links { display: flex; gap: 26px; align-items: center; }
.nav .links a { color: var(--muted); font-weight: 500; }
.nav .links a:hover { color: var(--text); }
.nav .links a.cta {
  background: var(--accent); color: #fff; padding: 9px 18px;
  border-radius: 8px; font-weight: 600;
}
.nav .links a.cta:hover { background: var(--accent-h); }

.hero { max-width: 880px; margin: 0 auto; padding: 90px 24px 60px; text-align: center; }
.hero h1 { font-size: 2.9rem; line-height: 1.15; margin: 0 0 18px; letter-spacing: -0.02em; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 auto 34px; }
.hero .actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 10px;
  font-weight: 600; font-size: 1rem;
}
.btn.primary { background: var(--accent); color: #fff; }
.btn.primary:hover { background: var(--accent-h); color: #fff; }
.btn.ghost { border: 1px solid var(--border); color: var(--text); }
.btn.ghost:hover { border-color: var(--accent); }

.section { max-width: 1080px; margin: 0 auto; padding: 60px 24px; }
.section h2 { font-size: 1.8rem; text-align: center; margin: 0 0 10px; }
.section .sub { text-align: center; color: var(--muted); margin: 0 auto 44px; max-width: 560px; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.card {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px;
}
.card .icon { font-size: 1.8rem; margin-bottom: 12px; }
.card h3 { margin: 0 0 8px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; counter-reset: step; }
.step { background: var(--panel-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 700;
  align-items: center; justify-content: center; margin-bottom: 14px;
}
.step h3 { margin: 0 0 8px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.security { background: var(--panel-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.security .inner { max-width: 880px; margin: 0 auto; padding: 60px 24px; }
.security h2 { text-align: center; }
.security ul { list-style: none; padding: 0; max-width: 640px; margin: 30px auto 0; }
.security li { padding: 12px 0 12px 36px; position: relative; color: var(--muted); }
.security li::before { content: '🔒'; position: absolute; left: 0; }
.security li strong { color: var(--text); }

.footer {
  max-width: 1080px; margin: 0 auto; padding: 40px 24px; text-align: center;
  color: var(--muted); font-size: 0.85rem; border-top: 1px solid var(--border);
}
.footer .links { margin-bottom: 10px; }
.footer .links a { margin: 0 12px; color: var(--muted); }
.footer .links a:hover { color: var(--text); }

/* Content pages (info, privacy) */
.content { max-width: 780px; margin: 0 auto; padding: 40px 24px 80px; }
.content h1 { font-size: 2rem; }
.content h2 { font-size: 1.3rem; margin-top: 2.2em; }
.content p, .content li { color: var(--muted); }
.content strong { color: var(--text); }
.content .card { margin: 20px 0; }

@media (max-width: 640px) {
  .hero h1 { font-size: 2.1rem; }
  .nav .links { gap: 14px; }
  .nav .links a:not(.cta) { display: none; }
}
