/* ===== Tokens ===== */
:root {
  --green: #2FA365;
  --green-dark: #1E7A4C;
  --blue: #2E9FD6;
  --blue-dark: #1C6FA0;
  --ink: #262A2E;
  --muted: #5B6167;
  --bg: #FBFCFB;
  --surface: #FFFFFF;
  --border: #E4E8E7;
  --font-head: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: var(--font-head);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--muted); max-width: 62ch; }

a { color: inherit; }

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

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.75em 1.5em;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:focus-visible {
  outline: 2px solid var(--blue-dark);
  outline-offset: 3px;
}
.btn-primary {
  background: linear-gradient(90deg, var(--green) 0%, var(--blue) 100%);
  color: #fff;
}
.btn-primary:hover { box-shadow: 0 6px 18px rgba(46, 159, 214, 0.35); }
.btn-outline {
  border-color: var(--border);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover { border-color: var(--blue-dark); color: var(--blue-dark); }
.btn-login {
  border: 1.5px solid var(--border);
  color: var(--ink);
  padding: 0.55em 1.3em;
  font-size: 0.9rem;
}
.btn-login:hover { border-color: var(--blue-dark); color: var(--blue-dark); }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 252, 251, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand { display: flex; align-items: center; }
.brand-mark { height: 44px; width: auto; display: block; }
.site-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 500;
  font-size: 0.95rem;
}
.site-nav a { text-decoration: none; color: var(--ink); }
.site-nav a:hover { color: var(--blue-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 64px 0 40px;
  text-align: center;
  overflow: hidden;
}
.hero-logo {
  width: min(340px, 70vw);
  height: auto;
  margin-bottom: 8px;
}
.hero-sub {
  max-width: 52ch;
  margin: 0 auto 1.6em;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cable {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 24px;
}

/* ===== Services / Lanes ===== */
.services { padding: 72px 0; }
.section-lede { max-width: 56ch; margin-bottom: 2.4em; font-size: 1.05rem; }

.lanes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.lane {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  position: relative;
}
.lane-credit { border-top: 4px solid var(--green); }
.lane-cash { border-top: 4px solid var(--blue); margin-top: 24px; }
.lane-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.lane-credit h3 { color: var(--green-dark); }
.lane-cash h3 { color: var(--blue-dark); }
.lane-steps {
  margin: 1.2em 0 0;
  padding-left: 1.2em;
  color: var(--ink);
}
.lane-steps li { margin-bottom: 0.5em; }

/* ===== About ===== */
.about { padding: 72px 0; background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.about-facts ul {
  list-style: none;
  margin: 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg);
}
.about-facts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.about-facts li:last-child { border-bottom: none; }
.about-facts span {
  font-size: 0.78rem;
  text-transform: none;
  color: var(--muted);
  font-weight: 400;
}

/* ===== Testimonials ===== */
.testimonials { padding: 72px 0; }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
blockquote {
  margin: 0;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}
blockquote p {
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 1.2em;
}
blockquote cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--muted);
}

/* ===== Contact ===== */
.contact { padding: 72px 0 88px; }
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}
.contact-list { list-style: none; margin: 1.5em 0 0; padding: 0; }
.contact-list li {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-label {
  min-width: 110px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}
.contact-list a { text-decoration: none; color: var(--blue-dark); font-weight: 500; }
.contact-list a:hover { text-decoration: underline; }

.contact-cta {
  background: linear-gradient(160deg, var(--green) 0%, var(--blue) 100%);
  border-radius: 20px;
  padding: 36px;
  color: #fff;
}
.contact-cta h3 { color: #fff; }
.contact-cta p { color: rgba(255,255,255,0.9); }
.contact-cta .btn-primary { background: #fff; color: var(--blue-dark); }
.contact-cta .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; margin-left: 10px; }
.contact-cta .btn-outline:hover { border-color: #fff; color: #fff; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-mark { height: 30px; width: auto; }
.footer-nav { display: flex; gap: 20px; margin-left: auto; font-size: 0.9rem; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; color: var(--muted); }
.footer-nav a:hover { color: var(--blue-dark); }
.footer-copy { width: 100%; margin: 12px 0 0; font-size: 0.82rem; color: var(--muted); }

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .lanes, .about-inner, .contact-inner, .quote-grid { grid-template-columns: 1fr; }
  .lane-cash { margin-top: 0; }
  .site-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
    display: none;
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-login { display: none; }
  .contact-cta .btn-outline { margin-left: 0; display: block; margin-top: 10px; width: fit-content; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .header-inner { padding-top: 10px; padding-bottom: 10px; }
}
