/* Reachee.ai — shared styles for inner pages and footer */

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

:root {
  --green: #087443;
  --green-dark: #005f36;
  --green-light: #eaf8ef;
  --mint: #a5efd0;
  --aqua: #69dfe0;
  --black: #081018;
  --text: #48505c;
  --muted: #747c88;
  --line: #e7ebe9;
  --white: #ffffff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 80% 30%, rgba(110, 226, 186, .09), transparent 28%),
    #fff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1420px, calc(100% - 80px));
  margin: auto;
}

/* ---------------- NAV ---------------- */

nav {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 34px;
  font-weight: 750;
  letter-spacing: -1.5px;
}

.logo-mark {
  width: 39px;
  height: 39px;
  position: relative;
}

.logo-mark span {
  position: absolute;
  width: 27px;
  height: 13px;
  border-radius: 20px 4px 20px 4px;
  transform: rotate(-32deg);
}

.logo-mark span:nth-child(1) {
  background: #078145;
  left: 0;
  top: 12px;
}

.logo-mark span:nth-child(2) {
  background: #6bdd69;
  left: 9px;
  top: 18px;
}

.logo-mark span:nth-child(3) {
  background: #65dfe4;
  left: 14px;
  top: 7px;
  opacity: .8;
}

.logo-ai {
  color: var(--green);
}

.nav-links {
  display: flex;
  gap: 48px;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a {
  transition: color .2s ease;
}

.nav-links a:hover,
.nav-links a.current {
  color: var(--green);
}

.nav-cta,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 9px;
  background: linear-gradient(135deg, #087443, #006136);
  color: white;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
}

.nav-cta {
  padding: 16px 29px;
}

.nav-cta:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 105, 60, .16);
}

.primary-btn {
  padding: 19px 37px;
  font-size: 16px;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 34px;
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  border-radius: 9px;
  font-weight: 600;
  background: white;
  transition: .2s ease;
}

.secondary-btn:hover {
  background: #f5fcf8;
}

/* ---------------- TYPE ---------------- */

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.3px;
  color: #677080;
  margin-bottom: 22px;
}

.green {
  color: var(--green);
}

h1 {
  font-size: clamp(48px, 4.6vw, 72px);
  line-height: .98;
  letter-spacing: -3.6px;
  font-weight: 760;
  max-width: 820px;
}

h2 {
  font-size: 40px;
  letter-spacing: -2px;
  line-height: 1.1;
}

h3 {
  font-size: 20px;
  letter-spacing: -.4px;
}

.lead {
  margin-top: 27px;
  font-size: 20px;
  line-height: 1.55;
  color: var(--text);
  max-width: 640px;
}

.check {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  background: var(--green-light);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
}

/* ---------------- PAGE HERO ---------------- */

.page-hero {
  padding: 55px 0 60px;
}

.page-hero .hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 34px;
}

/* ---------------- SECTIONS ---------------- */

.section {
  border-top: 1px solid var(--line);
  padding: 70px 0;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.section-heading .eyebrow {
  margin-bottom: 10px;
}

.section-side {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  max-width: 420px;
}

/* ---------------- CARDS ---------------- */

.card {
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(220, 229, 224, .9);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(33, 67, 50, .06);
}

.icon-circle {
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  display: grid;
  place-items: center;
}

.icon-circle svg {
  width: 25px;
  height: 25px;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--text);
}

.check-list .check {
  width: 24px;
  height: 24px;
  font-size: 12px;
  margin-top: 1px;
}

/* ---------------- CTA BAND ---------------- */

.cta-band {
  margin: 0 0 80px;
  padding: 60px;
  border-radius: 22px;
  background: linear-gradient(135deg, #087443, #005f36);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-band h2 {
  color: white;
  max-width: 560px;
}

.cta-band p {
  margin-top: 14px;
  font-size: 17px;
  color: rgba(255, 255, 255, .8);
  max-width: 520px;
}

.cta-band .primary-btn {
  background: white;
  color: var(--green-dark);
  flex: 0 0 auto;
}

/* ---------------- FOOTER ---------------- */

footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  font-size: 26px;
}

.footer-brand .logo-mark {
  transform: scale(.8);
  transform-origin: left center;
  width: 30px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 320px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #677080;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 12px;
  transition: color .2s ease;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
}

/* ---------------- MOBILE ---------------- */

@media (max-width: 1050px) {
  .container {
    width: min(100% - 40px, 900px);
  }

  .nav-links {
    display: none;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 44px;
  }
}

@media (max-width: 650px) {
  .container {
    width: calc(100% - 30px);
  }

  nav {
    height: 75px;
  }

  .logo {
    font-size: 26px;
  }

  .logo-mark {
    width: 30px;
    transform: scale(.8);
    transform-origin: left center;
  }

  .nav-cta {
    padding: 12px 16px;
    font-size: 13px;
  }

  .page-hero {
    padding: 35px 0 40px;
  }

  h1 {
    font-size: 42px;
    letter-spacing: -2.4px;
  }

  h2 {
    font-size: 31px;
  }

  .lead {
    font-size: 17px;
  }

  .page-hero .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .section {
    padding: 48px 0;
  }

  .cta-band {
    padding: 32px 24px;
    margin-bottom: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }
}
