:root {
  --ink: #0f1419;
  --ink-soft: #3a4553;
  --muted: #6b7785;
  --line: #e6e8ec;
  --bg: #ffffff;
  --bg-alt: #f7f8fa;
  --accent: #0b5fff;
  --accent-dark: #0847c4;
  --radius: 10px;
  --maxw: 1080px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo { height: 56px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.nav a:hover { color: var(--accent); text-decoration: none; }
.nav-cta {
  padding: 8px 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--ink);
  color: #fff !important;
}

/* Hero */
.hero {
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 60px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  font-weight: 700;
  max-width: 820px;
}
.lede {
  font-size: 19px;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 36px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.15s ease;
}
.btn-primary {
  background: var(--ink);
  color: #fff;
}
.btn-primary:hover {
  background: #000;
  text-decoration: none;
  color: #fff;
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-secondary:hover {
  border-color: var(--ink);
  text-decoration: none;
}

.trust-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  color: var(--muted);
  font-size: 15px;
}
.trust-row strong {
  color: var(--ink);
  font-weight: 700;
  display: block;
  font-size: 22px;
}

/* Sections */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--bg-alt);
}
.section h2 {
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
  max-width: 760px;
}
.section-lede {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 0 56px;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}
.service {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.service:hover {
  border-color: var(--ink);
}
.service h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}
.service p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.credentials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.credentials li {
  padding: 8px 14px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 500;
}

/* About */
.about p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 720px;
}
.about .owner {
  margin-top: 32px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 600;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.contact-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-card h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin: 0 0 12px;
  font-weight: 600;
}
.contact-card p {
  margin: 0 0 4px;
  font-size: 17px;
  color: var(--ink);
}
.contact-card a {
  color: var(--ink);
  font-weight: 600;
}
.contact-card a:hover { color: var(--accent); }
.muted { color: var(--muted) !important; font-size: 14px !important; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0;
  background: var(--bg-alt);
}
.footer-inner {
  text-align: center;
}
.footer-logo {
  height: 44px;
  margin: 0 auto 20px;
}
.site-footer p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
}
.disclosure {
  max-width: 760px;
  margin: 20px auto 0 !important;
  font-size: 12px !important;
  line-height: 1.6;
  color: var(--muted);
}

/* Mobile */
@media (max-width: 680px) {
  .nav { gap: 16px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 64px 0; }
  .trust-row { gap: 24px; }
  .trust-row strong { font-size: 18px; }
}
