:root {
  --blue: #1e88e5;
  --green: #43a047;
  --ink: #0b132b;
  --muted: #64748b;
  --card: #ffffff;
  --bg: #ffffff;
}
* { box-sizing: border-box; }
html, body {
  margin:0; padding:0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
nav {
  position: sticky;
  top:0;
  width:100%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-bottom:1px solid #e5e7eb;
  z-index: 100;
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img {
  width:36px; height:36px;
  border-radius:8px;
}
.menu {
  display:flex;
  gap:16px;
  align-items:center;
}
.menu a { padding: 8px 12px; color: var(--ink); }
.menu a:hover { color: var(--blue); }
.hero {
  background: linear-gradient(180deg, rgba(30,136,229,0.08), rgba(67,160,71,0.08));
  padding: 80px 0;
}
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items:center;
  justify-content: space-between;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height:1.2;
  margin: 0 0 16px;
}
.hero p {
  font-size:1.125rem;
  color: var(--muted);
  max-width: 55ch;
  margin:0;
}
.hero-cta {
  margin-top: 24px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.cta {
  background: var(--blue);
  color:#fff;
  padding: 14px 20px;
  border-radius:8px;
  border:none;
  font-weight:600;
}
.cta.green { background: var(--green); }
.badges {
  margin-top: 20px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.badge {
  background: #edf7ff;
  border: 1px solid #cfe1f6;
  border-radius: 8px;
  padding: 6px 12px;
  font-size:0.9rem;
  color: var(--ink);
}
.section {
  padding: 60px 24px;
}
.section-inner {
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}
.card {
  background: var(--card);
  border:1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.card h3 {
  margin-top:0;
  margin-bottom:8px;
  font-size:1.2rem;
}
.card p {
  margin:0;
  color: var(--muted);
  line-height:1.4;
}
.footer {
  background:#f9fafb;
  border-top:1px solid #e5e7eb;
  padding: 40px 24px;
}
.footer-inner {
  max-width:1120px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  gap:32px;
}
.footer .column {
  flex: 1 1 180px;
}
.footer .column strong {
  display:block;
  margin-bottom:10px;
  font-size:1rem;
}
.footer .column a {
  display:block;
  color: var(--muted);
  margin-bottom:6px;
  font-size:0.95rem;
}
.footer .column a:hover {
  color: var(--blue);
}
.footer small {
  color: var(--muted);
  font-size:0.9rem;
}
@media (min-width:980px) {
  .hero-inner img.phone {
    display:block;
  }
}
