/* ---------- Tokens ---------- */
:root {
  --navy: #05102B;
  --navy-deep: #0B1D3D;
  --navy-line: rgba(246, 243, 236, 0.14);
  --gold: #CEA22F;
  --gold-soft: #E9CA7C;
  --gold-deep: #92701E;
  --paper: #F6F3EC;
  --slate: #97A3BE;
  --ink: #101A33;
  --ink-muted: #4E5771;
  --paper-line: rgba(5, 16, 43, 0.12);

  --font-display: "Fraunces", serif;
  --font-body: "Manrope", sans-serif;

  --container: 1240px;
}

/* ---------- Reset ---------- */
* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--navy);
  color: var(--paper);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

/* ---------- Hero shell ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-inline: clamp(20px, 5vw, 64px);
}

.hero__decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero__decor line {
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0.16;
}

/* ---------- Nav ---------- */
.hero__nav {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-block: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand__mark {
  height: 32px;
  width: auto;
}

.brand__word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.brand__word--accent {
  color: var(--gold);
}

.hero__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9375rem;
  color: var(--slate);
}

.hero__links a {
  transition: color 0.15s ease;
}

.hero__links a:hover {
  color: var(--paper);
}

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-soft);
}

.btn--ghost {
  border: 1.5px solid var(--navy-line);
  color: var(--paper);
  padding: 10px 20px;
}

.hero__nav .btn--ghost {
  margin-left: auto;
  flex-shrink: 0;
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.link-inline {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--paper);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.link-inline:hover {
  color: var(--gold-soft);
  border-color: var(--gold-soft);
}

.link-inline--dark {
  color: var(--ink);
  border-color: var(--gold-deep);
}

.link-inline--dark:hover {
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* ---------- Hero body ---------- */
.hero__body {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-block: clamp(24px, 5vw, 56px) clamp(48px, 6vw, 80px);
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 24px;
  padding: 7px 16px;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  font-size: 0.8125rem;
  font-weight: 600;
}

.hero__headline {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.4vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 16ch;
}

.hero__subhead {
  margin: 0 0 36px;
  max-width: 46ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* ---------- Hero media ---------- */
.hero__media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 440px;
}

.hero__media::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 1.5px solid var(--gold);
  z-index: 0;
}

.hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 50% 30%;
}

.hero__badge {
  position: absolute;
  z-index: 2;
  left: 28px;
  bottom: -18px;
  margin: 0;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 18px;
  max-width: 220px;
  line-height: 1.3;
}

/* ---------- Stat strip ---------- */
.hero__stats {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding-block: 40px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--navy-line);
}

.hero__stat {
  padding: 32px 24px 0;
  border-left: 1px solid var(--navy-line);
}

.hero__stat:first-child {
  padding-left: 0;
  border-left: none;
}

.hero__stat dt {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 2.6vw, 2.25rem);
  color: var(--gold);
}

.hero__stat dd {
  margin: 6px 0 0;
  font-size: 0.9375rem;
  color: var(--slate);
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  .hero__content,
  .hero__media {
    animation: rise 0.7s ease both;
  }

  .hero__media {
    animation-delay: 0.12s;
  }

  .hero__stats {
    animation: rise 0.7s ease both;
    animation-delay: 0.2s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Why RemoteRevo (vetting) ---------- */
.vet {
  background: var(--paper);
  color: var(--ink);
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 96px);
}

.eyebrow--light {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.vet__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  padding-bottom: clamp(40px, 6vw, 64px);
}

.vet__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 16ch;
}

.vet__lede {
  margin: 0;
  max-width: 48ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.vet__statcard {
  background: var(--navy);
  padding: 28px 26px;
  border-top: 3px solid var(--gold);
  justify-self: start;
  width: 100%;
}

.vet__statnum {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3vw, 2.5rem);
  color: var(--gold);
}

.vet__statlabel {
  margin: 8px 0 0;
  font-size: 0.9375rem;
  color: var(--paper);
  max-width: 22ch;
}

.vet__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: var(--container);
  margin-inline: auto;
  border-top: 1px solid var(--paper-line);
}

.vet__step {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  padding-block: clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--paper-line);
}

.vet__num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
}

.vet__step-body h3 {
  margin: 4px 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--ink);
}

.vet__step-body p {
  margin: 0;
  max-width: 62ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.vet__step-body p + .vet__roles {
  margin-top: 18px;
}

.vet__roles {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vet__roles li {
  border-left: 2px solid var(--gold);
  background: rgba(5, 16, 43, 0.03);
  padding: 14px 16px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.vet__roles li span {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--ink);
}

.vet__quote {
  max-width: 56ch;
  margin: clamp(40px, 6vw, 64px) auto 0;
  padding-top: clamp(32px, 5vw, 48px);
  border-top: 1px solid var(--paper-line);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.4vw, 1.75rem);
  line-height: 1.45;
  color: var(--ink);
}

/* ---------- Roles we hire ---------- */
.roles {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 96px);
}

.roles__decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.roles__decor line {
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0.12;
}

.roles__intro {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-bottom: clamp(40px, 6vw, 64px);
}

.roles__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 18ch;
}

.roles__lede {
  margin: 0;
  max-width: 56ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
}

.roles__grid {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-areas:
    "deptSales deptSales deptSupport deptLead"
    "sales1 sales2 support lead";
  border-top: 1px solid var(--navy-line);
}

.roles__dept {
  margin: 0;
  padding: 32px clamp(20px, 3vw, 32px) 14px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gold-soft);
  border-bottom: 1px solid var(--navy-line);
}

.roles__dept--sales {
  grid-area: deptSales;
  padding-left: 0;
}

.roles__dept--support {
  grid-area: deptSupport;
  border-left: 1px solid var(--navy-line);
}

.roles__dept--lead {
  grid-area: deptLead;
  border-left: 1px solid var(--navy-line);
}

.roles__role {
  display: flex;
  flex-direction: column;
  padding: 24px clamp(20px, 3vw, 32px) 32px;
}

.roles__role--sales1 {
  grid-area: sales1;
  padding-left: 0;
}

.roles__role--sales2 {
  grid-area: sales2;
  border-left: 1px solid var(--navy-line);
}

.roles__role--support {
  grid-area: support;
  border-left: 1px solid var(--navy-line);
}

.roles__role--lead {
  grid-area: lead;
  border-left: 1px solid var(--navy-line);
}

.roles__role h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--paper);
}

.roles__desc {
  margin: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 34ch;
}

.roles__stat {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--navy-line);
}

.roles__statnum {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 2.4vw, 2.125rem);
  color: var(--gold);
}

.roles__statnum span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--slate);
  margin-left: 8px;
}

.roles__statlabel {
  margin: 8px 0 6px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--paper);
  max-width: 30ch;
}

.roles__source {
  margin: 0;
  font-size: 0.75rem;
  color: var(--slate);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--paper);
  color: var(--ink);
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 96px);
}

.faq__intro {
  max-width: var(--container);
  margin-inline: auto;
  padding-bottom: clamp(32px, 5vw, 48px);
}

.faq__heading {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 18ch;
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  border-top: 1px solid var(--paper-line);
}

.faq__item {
  border-bottom: 1px solid var(--paper-line);
  padding-block: 22px;
}

.faq__item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding-right: 40px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--ink);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: -2px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--gold-deep);
  transition: transform 0.15s ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin: 16px 0 0;
  max-width: 62ch;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

/* ---------- Book a call CTA ---------- */
.cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--paper);
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(72px, 11vw, 128px);
  text-align: center;
}

.cta__decor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.cta__decor line {
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0.14;
}

.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
}

.cta__inner .eyebrow {
  margin-inline: auto;
}

.cta__heading {
  margin: 24px 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.cta__sub {
  margin: 0 auto 36px;
  max-width: 42ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
}

.cta__actions {
  display: flex;
  justify-content: center;
}

.cta__guarantee {
  margin: 24px 0 0;
  font-size: 0.875rem;
  color: var(--slate);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--slate);
  padding-inline: clamp(20px, 5vw, 64px);
}

.site-footer__top {
  max-width: var(--container);
  margin-inline: auto;
  padding-block: clamp(48px, 7vw, 72px);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}

.site-footer__brand .brand {
  margin-right: 0;
}

.site-footer__tagline {
  margin: 16px 0 0;
  max-width: 32ch;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
}

.site-footer__social {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}

.site-footer__social a {
  display: flex;
  color: var(--slate);
  transition: color 0.15s ease;
}

.site-footer__social a:hover {
  color: var(--gold);
}

.site-footer__social svg {
  width: 20px;
  height: 20px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.site-footer__heading {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--paper);
}

.site-footer__col a {
  font-size: 0.9375rem;
  color: var(--slate);
  transition: color 0.15s ease;
}

.site-footer__col a:hover {
  color: var(--gold);
}

.site-footer__bottom {
  max-width: var(--container);
  margin-inline: auto;
  padding-block: 24px;
  border-top: 1px solid var(--navy-line);
  font-size: 0.8125rem;
  color: var(--slate);
}

.site-footer__bottom p {
  margin: 0;
}

/* ---------- Legal pages ---------- */
.legal-top {
  background: var(--navy);
  padding-inline: clamp(20px, 5vw, 64px);
}

.legal {
  background: var(--paper);
  color: var(--ink);
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(48px, 7vw, 80px);
}

.legal__intro {
  max-width: 760px;
  margin-inline: auto;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--paper-line);
}

.legal__intro h1 {
  margin: 20px 0 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.legal__updated {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.legal__intro p {
  margin: 0 0 14px;
  max-width: 68ch;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.legal__intro p:last-child {
  margin-bottom: 0;
}

.legal__body {
  max-width: 760px;
  margin-inline: auto;
}

.legal__body h2 {
  margin: 44px 0 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--ink);
}

.legal__body h2:first-child {
  margin-top: 0;
}

.legal__body h3 {
  margin: 28px 0 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
}

.legal__body p {
  margin: 0 0 16px;
  max-width: 68ch;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-muted);
}

.legal__body ul {
  margin: 0 0 16px;
  padding-left: 22px;
  max-width: 64ch;
}

.legal__body li {
  margin-bottom: 8px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.legal__body mark {
  background: none;
  color: var(--gold-deep);
  font-weight: 700;
}

/* ---------- Pricing page ---------- */
.hero__links a.is-current {
  color: var(--gold-soft);
}

.pricing-hero__body {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-block: clamp(24px, 6vw, 56px) clamp(64px, 9vw, 104px);
}

.pricing-hero__heading {
  margin: 24px 0 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.6vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 18ch;
}

.pricing-hero__sub {
  margin: 0;
  max-width: 56ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--slate);
}

.tiers {
  background: var(--paper);
  color: var(--ink);
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 96px);
}

.tiers__intro {
  max-width: var(--container);
  margin-inline: auto;
  padding-bottom: clamp(32px, 5vw, 48px);
}

.tiers__heading {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 18ch;
}

.tiers__lede {
  margin: 0;
  max-width: 56ch;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-muted);
}

.tiers__grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--paper-line);
}

.tiers__card {
  padding: 32px clamp(16px, 3vw, 32px) 0;
  border-left: 1px solid var(--paper-line);
}

.tiers__card:first-child {
  padding-left: 0;
  border-left: none;
}

.tiers__count {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.tiers__price {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.25rem, 3.4vw, 2.75rem);
  color: var(--ink);
}

.tiers__unit {
  margin: 8px 0 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
}

.tiers__note {
  max-width: var(--container);
  margin: clamp(32px, 5vw, 48px) auto 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.included {
  background: var(--navy);
  color: var(--paper);
  padding-inline: clamp(20px, 5vw, 64px);
  padding-block: clamp(56px, 8vw, 96px);
}

.included__intro {
  max-width: var(--container);
  margin-inline: auto;
  padding-bottom: clamp(32px, 5vw, 48px);
}

.included__heading {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--paper);
  max-width: 18ch;
}

.included__grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid var(--navy-line);
  padding-top: 32px;
}

.included__item h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1875rem;
  color: var(--paper);
}

.included__item p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--slate);
  max-width: 32ch;
}

.included__disclaimer {
  max-width: var(--container);
  margin: clamp(32px, 5vw, 48px) auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--navy-line);
  font-size: 0.875rem;
  color: var(--slate);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero__links {
    display: none;
  }

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

  .pricing-hero__heading {
    max-width: none;
  }

  .tiers__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .tiers__card:nth-child(2) {
    padding-left: clamp(16px, 3vw, 32px);
    border-left: 1px solid var(--paper-line);
  }

  .tiers__card:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }

  .included__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__headline {
    max-width: none;
  }

  .hero__media {
    max-width: 380px;
    margin-top: 24px;
  }

  .hero__stats {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
  }

  .hero__stat:nth-child(2) {
    padding-left: 24px;
    border-left: 1px solid var(--navy-line);
  }

  .hero__stat:nth-child(3) {
    padding-left: 0;
    border-left: none;
  }

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

  .vet__heading {
    max-width: none;
  }

  .vet__statcard {
    max-width: 320px;
  }

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

  .roles__grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "deptSales"
      "sales1"
      "sales2"
      "deptSupport"
      "support"
      "deptLead"
      "lead";
    border-top: none;
  }

  .roles__dept,
  .roles__role {
    border-left: none;
    padding-left: 0;
  }

  .roles__dept {
    padding-top: 32px;
  }

  .roles__dept--sales {
    padding-top: 0;
  }

  .roles__desc {
    max-width: none;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero__nav {
    flex-wrap: wrap;
    row-gap: 10px;
    gap: 16px;
  }

  .brand {
    flex-shrink: 0;
  }

  .brand__word {
    font-size: 1.0625rem;
  }

  .btn--ghost {
    padding: 9px 14px;
    font-size: 0.8125rem;
  }

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

  .tiers__card,
  .tiers__card:nth-child(2),
  .tiers__card:nth-child(3) {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--paper-line);
    padding-top: 24px;
  }

  .tiers__card:first-child {
    border-top: none;
    padding-top: 0;
  }

  .included__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .included__item p {
    max-width: none;
  }
}

@media (max-width: 360px) {
  .hero__nav .btn--ghost {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }

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

  .hero__badge {
    left: 16px;
    max-width: 180px;
    font-size: 0.8125rem;
    padding: 10px 14px;
  }

  .vet__step {
    flex-direction: column;
    gap: 14px;
  }
}
