:root {
  --blue: #0a4d8c;
  --blue-dark: #073867;
  --blue-light: #e8f0f9;
  --black: #111111;
  --gray-900: #1f2937;
  --gray-700: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --font: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  color: var(--gray-900);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Spam honeypot field for Netlify - hidden from users */
.hidden-honeypot { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* TOP BAR */
.topbar { background: var(--black); color: var(--white); font-size: 13px; padding: 8px 0; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: var(--white); text-decoration: none; margin-left: 20px; }
.topbar a:hover { color: #9bd1ff; }
@media (max-width: 640px) { .topbar-inner > span:first-child { display: none; } }

/* NAV */
.nav { background: var(--white); border-bottom: 1px solid var(--gray-300); padding: 18px 0; position: sticky; top: 0; z-index: 50; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--black); }
.logo-mark { width: 44px; height: 44px; background: var(--blue); color: var(--white); display: grid; place-items: center; font-weight: 700; font-size: 16px; border-radius: 4px; }
.logo-text { line-height: 1.1; }
.logo-text strong { display: block; font-size: 18px; font-weight: 700; color: var(--black); }
.logo-text small { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { color: var(--gray-900); text-decoration: none; font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { background: var(--blue); color: var(--white) !important; padding: 10px 20px; border-radius: 4px; transition: background 0.2s; }
.nav-cta:hover { background: var(--blue-dark); }
@media (max-width: 768px) {
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* HERO */
.hero { background: var(--blue); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: center; position: relative; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.1; font-weight: 700; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero h1 .accent { color: #9bd1ff; }
.hero p.lede { font-size: 19px; line-height: 1.5; color: rgba(255,255,255,0.9); margin-bottom: 32px; max-width: 560px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { padding: 14px 24px; font-size: 15px; font-weight: 600; text-decoration: none; border-radius: 4px; display: inline-block; transition: all 0.2s; border: 2px solid transparent; cursor: pointer; font-family: var(--font); }
.btn-primary { background: var(--white); color: var(--blue); }
.btn-primary:hover { background: var(--gray-100); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.hero-card { background: var(--white); color: var(--gray-900); padding: 32px; border-radius: 6px; box-shadow: 0 20px 50px rgba(0,0,0,0.25); }
.hero-card h3 { font-size: 18px; margin-bottom: 16px; color: var(--black); font-weight: 700; }
.hero-card ul { list-style: none; }
.hero-card li { padding: 10px 0; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; gap: 12px; font-size: 15px; }
.hero-card li:last-child { border-bottom: none; }
.hero-card .check { width: 20px; height: 20px; background: var(--blue); color: white; border-radius: 50%; display: grid; place-items: center; font-size: 12px; font-weight: 700; flex-shrink: 0; }
@media (max-width: 900px) {
  .hero { padding: 50px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* TRUST */
.trust { background: var(--gray-50); padding: 24px 0; border-bottom: 1px solid var(--gray-300); }
.trust-inner { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--gray-700); }
.trust-item svg { color: var(--blue); flex-shrink: 0; }
@media (max-width: 640px) { .trust-item { font-size: 14px; } }

/* SECTIONS */
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 50px; }
.section-tag { color: var(--blue); font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; color: var(--black); margin-bottom: 16px; letter-spacing: -0.01em; line-height: 1.15; }
.section-head p { font-size: 17px; color: var(--gray-700); }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service { background: var(--white); border: 1px solid var(--gray-300); border-radius: 6px; padding: 32px; transition: all 0.2s; position: relative; }
.service:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(10, 77, 140, 0.08); transform: translateY(-2px); }
.service-icon { width: 56px; height: 56px; background: var(--blue-light); color: var(--blue); border-radius: 6px; display: grid; place-items: center; margin-bottom: 20px; }
.service h3 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 12px; }
.service p { color: var(--gray-700); margin-bottom: 18px; font-size: 15px; }
.service ul { list-style: none; padding-top: 16px; border-top: 1px solid var(--gray-100); }
.service li { font-size: 14px; padding: 6px 0; color: var(--gray-700); display: flex; align-items: center; gap: 10px; }
.service li::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* HOW */
.how { background: var(--gray-50); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { background: var(--white); border: 1px solid var(--gray-300); padding: 28px; border-radius: 6px; }
.step-num { width: 36px; height: 36px; background: var(--blue); color: var(--white); border-radius: 50%; display: grid; place-items: center; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.step h4 { font-size: 17px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--gray-700); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-points li { list-style: none; padding: 18px 0; border-bottom: 1px solid var(--gray-100); display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start; }
.why-points li:last-child { border-bottom: none; }
.why-points .why-icon { width: 36px; height: 36px; background: var(--blue); color: var(--white); border-radius: 4px; display: grid; place-items: center; flex-shrink: 0; }
.why-points strong { display: block; color: var(--black); font-size: 17px; margin-bottom: 4px; font-weight: 700; }
.why-points span { color: var(--gray-700); font-size: 15px; }
.why-stats { background: var(--blue); color: var(--white); padding: 40px; border-radius: 6px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-stat { padding: 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; }
.why-stat .num { font-size: 38px; font-weight: 700; line-height: 1; margin-bottom: 6px; }
.why-stat .label { font-size: 13px; color: rgba(255,255,255,0.85); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

/* CTA BAND */
.cta-band { background: var(--black); color: var(--white); padding: 60px 0; text-align: center; }
.cta-band h2 { font-size: clamp(26px, 3.5vw, 36px); font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 28px; font-size: 17px; }
.cta-band .btn-primary { background: var(--blue); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--blue-dark); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info h3 { font-size: 22px; font-weight: 700; color: var(--black); margin-bottom: 8px; }
.contact-info > p { color: var(--gray-700); margin-bottom: 32px; }
.contact-item { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--gray-100); text-decoration: none; color: var(--gray-900); }
.contact-item:last-child { border-bottom: none; }
.contact-item:hover .contact-icon { background: var(--blue-dark); }
.contact-icon { width: 40px; height: 40px; background: var(--blue); color: var(--white); border-radius: 4px; display: grid; place-items: center; transition: background 0.2s; }
.contact-label { font-size: 12px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }
.contact-value { font-size: 16px; color: var(--black); font-weight: 600; }
.form { background: var(--gray-50); border: 1px solid var(--gray-300); padding: 32px; border-radius: 6px; }
.form h3 { color: var(--black); margin-bottom: 6px; font-size: 20px; font-weight: 700; }
.form > p { color: var(--gray-700); margin-bottom: 24px; font-size: 14px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-900); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 11px 14px; border: 1px solid var(--gray-300); background: var(--white);
  border-radius: 4px; font-size: 15px; font-family: var(--font); color: var(--gray-900);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(10, 77, 140, 0.12);
}
.field textarea { min-height: 90px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.submit-btn { width: 100%; background: var(--blue); color: var(--white); padding: 14px; border: none; border-radius: 4px; font-size: 15px; font-weight: 600; cursor: pointer; font-family: var(--font); transition: background 0.2s; }
.submit-btn:hover { background: var(--blue-dark); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form { padding: 24px; }
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }

/* FOOTER */
footer { background: var(--black); color: var(--white); padding: 48px 0 24px; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.15); }
.footer-brand p { color: rgba(255,255,255,0.7); margin-top: 14px; font-size: 14px; max-width: 320px; }
.footer-col h5 { font-size: 14px; margin-bottom: 14px; color: var(--white); font-weight: 700; }
.footer-col a { display: block; color: rgba(255,255,255,0.7); text-decoration: none; padding: 4px 0; font-size: 14px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 24px; display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }
@media (max-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* THANKS PAGE */
.thanks-wrap {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
}
.thanks-card {
  max-width: 560px;
}
.thanks-icon {
  width: 80px; height: 80px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
}
.thanks-card h1 {
  font-size: clamp(32px, 5vw, 44px);
  color: var(--black);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.thanks-card p {
  font-size: 17px;
  color: var(--gray-700);
  margin-bottom: 28px;
}
