@font-face {
  font-family: Satoshi;
  src: url("https://www.aficar.com/wp-content/uploads/2023/02/Satoshi-Regular.woff2") format("woff2");
  font-weight: 400;
}

@font-face {
  font-family: Satoshi;
  src: url("https://www.aficar.com/wp-content/uploads/2023/02/Satoshi-Bold.woff2") format("woff2");
  font-weight: 700;
}

:root {
  --primary: #1e4a52;
  --primary-2: #275863;
  --dark: #1d4851;
  --cyan: #26a89e;
  --lime: #edff0c;
  --text: #333333;
  --muted: #6a7477;
  --soft: #f4f6f8;
  --soft-2: #f5f5f5;
  --white: #ffffff;
  --line: rgba(30, 74, 82, .16);
  --shadow: 0 22px 48px rgba(30, 74, 82, .09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Satoshi, Arial, sans-serif;
  background: var(--soft);
  color: var(--text);
  line-height: 1.45;
}

a {
  color: inherit;
}

.page-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 20px 60px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 34px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
}

.brand img {
  width: 116px;
  height: auto;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-links a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 16px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  color: var(--primary);
  background: var(--white);
}

.nav-links a:hover,
.button:hover {
  background: var(--lime);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: stretch;
  margin-bottom: 32px;
}

.hero-main {
  padding: clamp(28px, 4vw, 48px);
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.hero-main::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 250px;
  height: 250px;
  border: 34px solid rgba(237, 255, 12, .68);
  border-radius: 50%;
}

.hero-side {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.eyebrow {
  color: var(--cyan);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-main .eyebrow {
  color: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.18;
  letter-spacing: 0;
}

p {
  margin-bottom: 12px;
}

.lead {
  max-width: 760px;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

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

.small {
  color: var(--muted);
  font-size: 14px;
}

.page-anchor {
  margin: 44px 0 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.page-anchor:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
}

.hero-side .tag,
.light-tag {
  border-color: var(--line);
  color: var(--primary);
  background: var(--soft);
}

.proposal {
  margin: 22px 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proposal-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 13px 18px;
  background: var(--primary);
  color: var(--white);
  font-size: 14px;
}

.proposal-label strong {
  color: var(--lime);
}

.proposal-body {
  padding: clamp(24px, 4vw, 42px);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.split-wide {
  grid-template-columns: 1.2fr .8fr;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 14px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.tile,
.mini-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card,
.tile {
  padding: 18px;
}

.tile {
  background: var(--soft);
}

.mini-panel {
  padding: 22px;
  background: var(--soft);
}

.dark-panel {
  padding: 24px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--white);
}

.dark-panel .muted,
.dark-panel .small {
  color: rgba(255, 255, 255, .72);
}

.metric {
  display: block;
  color: var(--primary);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 9px;
}

.dark-panel .metric {
  color: var(--lime);
}

.icon-dot {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--lime);
  font-weight: 700;
}

.check-list,
.plain-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 15px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--primary);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.step {
  padding: 18px;
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.step:last-child {
  border-right: 0;
}

.step-number {
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 10px;
}

.dashboard {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.dashboard .tile {
  min-height: 140px;
}

.progress {
  height: 9px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(30, 74, 82, .12);
  overflow: hidden;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--cyan);
}

.quote {
  padding-left: 16px;
  border-left: 3px solid var(--cyan);
  color: var(--muted);
}

.expert {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.avatar {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--primary);
  color: var(--lime);
  font-weight: 700;
}

.source-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.source-row strong {
  color: var(--primary);
}

.handoff {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px dashed rgba(30, 74, 82, .34);
  border-radius: 8px;
  background: #fbfcfd;
  color: var(--muted);
  font-size: 14px;
}

.footer-note {
  margin-top: 34px;
  padding: 22px;
  background: var(--primary);
  color: var(--white);
  border-radius: 8px;
}

.footer-note a {
  color: var(--lime);
}

@media (max-width: 900px) {
  .topbar,
  .hero,
  .split,
  .split-wide,
  .grid-3,
  .grid-4,
  .timeline,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .step {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .step:last-child {
    border-bottom: 0;
  }

  .proposal-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .source-row {
    grid-template-columns: 1fr;
  }
}
