/* SynergeTech Solutions — site styles */
:root {
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --bg: #ffffff;
  --surface: #f8fafc;
  --accent: #0ea5e9;
  --accent-hover: #0284c7;
  --border: #e2e8f0;
  --radius: 14px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 720px; }
.center { text-align: center; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.brand span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; flex-wrap: wrap; }
.nav-links a { color: var(--body); font-weight: 500; font-size: 0.95rem; text-decoration: none; }
.nav-links a:hover { color: var(--ink); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.15s ease;
}
.btn:hover { background: var(--accent-hover); }
.btn-small { padding: 8px 18px; font-size: 0.9rem; }
.btn-ghost { background: transparent; border: 1px solid rgba(255, 255, 255, 0.45); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); }

/* Hero */
.hero {
  background: linear-gradient(135deg, #0f172a 0%, #0c4a6e 55%, #0369a1 100%);
  color: #fff;
  padding: 104px 0 112px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: #7dd3fc;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 760px;
}
.hero .sub { margin: 22px 0 34px; font-size: 1.15rem; color: #bae6fd; max-width: 600px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
.section { padding: 80px 0; }
.section.alt { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: 1.9rem; letter-spacing: -0.015em; margin-bottom: 10px; }
.section p { color: var(--body); }
.lead { color: var(--muted); max-width: 640px; margin-bottom: 40px; font-size: 1.05rem; }
.lead-center { color: var(--muted); max-width: 520px; margin: 0 auto 32px; font-size: 1.05rem; }

/* Cards */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.95rem; }
.dot {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--accent), #38bdf8);
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  margin-bottom: 16px;
  background: #e0f2fe;
  color: var(--accent);
  font-weight: 700;
}

/* Footer */
.site-footer { padding: 30px 0; color: var(--muted); font-size: 0.9rem; }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.site-footer a { color: var(--muted); }
.site-footer a:hover { color: var(--ink); }

/* Legal pages (privacy & terms) */
.legal { max-width: 760px; margin: 0 auto; padding: 56px 24px 88px; }
.legal h1 { font-size: 2.2rem; letter-spacing: -0.02em; margin-bottom: 6px; }
.updated { color: var(--muted); margin-bottom: 34px; }
.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--body); }
.legal p { margin-bottom: 12px; }
.legal ul { margin: 10px 0 14px; padding-left: 24px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--accent); }
